-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplotiterator_test.lua
More file actions
214 lines (167 loc) · 5.3 KB
/
Copy pathplotiterator_test.lua
File metadata and controls
214 lines (167 loc) · 5.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
local luaunit = require("luaunit")
local assertions = require("luatypechecks.assertions")
local checks = require("luatypechecks.checks")
local Vector2D = require("luamath.vector2d")
local Range = require("luamath.models.range")
local Plot = require("luaplot.plot")
local PlotIterator = require("luaplot.plotiterator")
-- luacheck: globals TestPlotIterator
TestPlotIterator = {}
function TestPlotIterator.test_new()
local function transformer()
assert(false, "it should not be called")
end
local plot = Plot:new(5, 32, Range:new(23, 42))
local iterator = PlotIterator:new(plot, transformer)
luaunit.assert_is_table(iterator)
luaunit.assert_true(checks.is_instance(iterator, PlotIterator))
luaunit.assert_is_table(iterator._plot)
luaunit.assert_true(checks.is_instance(iterator._plot, Plot))
luaunit.assert_equals(iterator._plot, plot)
luaunit.assert_is_function(iterator._transformer)
luaunit.assert_equals(iterator._transformer, transformer)
end
function TestPlotIterator.test_index_middle()
local function transformer(point)
assertions.is_instance(point, Vector2D)
return point.x * point.y
end
local plot = Plot:new(0, 0.5)
for i = 1, 5 do
plot:push(i / 10)
end
local iterator = PlotIterator:new(plot, transformer)
local point = iterator[3]
luaunit.assert_is_number(point)
luaunit.assert_almost_equals(point, 0.9, 1e-6)
end
function TestPlotIterator.test_index_start()
local function transformer(point)
assertions.is_instance(point, Vector2D)
return point.x * point.y
end
local plot = Plot:new(0, 0.5)
for i = 1, 5 do
plot:push(i / 10)
end
local iterator = PlotIterator:new(plot, transformer)
local point = iterator[1]
luaunit.assert_is_number(point)
luaunit.assert_almost_equals(point, 0.1, 1e-6)
end
function TestPlotIterator.test_index_end()
local function transformer(point)
assertions.is_instance(point, Vector2D)
return point.x * point.y
end
local plot = Plot:new(0, 0.5)
for i = 1, 5 do
plot:push(i / 10)
end
local iterator = PlotIterator:new(plot, transformer)
local point = iterator[5]
luaunit.assert_is_number(point)
luaunit.assert_almost_equals(point, 2.5, 1e-6)
end
function TestPlotIterator.test_index_after_end()
local function transformer()
assert(false, "it should not be called")
end
local plot = Plot:new(0, 0.5)
for i = 1, 5 do
plot:push(i / 10)
end
local iterator = PlotIterator:new(plot, transformer)
local result = iterator[6]
luaunit.assert_is_nil(result)
end
function TestPlotIterator.test_ipairs_function()
if _VERSION == "Lua 5.1" then
local message =
"Lua 5.1 doesn't support for customizing the `ipairs()` function"
luaunit.skip(message)
end
local function transformer(point)
assertions.is_instance(point, Vector2D)
return point.x * point.y
end
local plot = Plot:new(0, 0.5)
for i = 1, 5 do
plot:push(i / 10)
end
local iterator = PlotIterator:new(plot, transformer)
local points = {}
for index, point in ipairs(iterator) do
table.insert(points, {index = index, point = point})
end
local wanted_points = {
{index = 1, point = 0.1},
{index = 2, point = 0.4},
{index = 3, point = 0.9},
{index = 4, point = 1.6},
{index = 5, point = 2.5},
}
luaunit.assert_equals(#points, #wanted_points)
for index, point in ipairs(points) do
local wanted_point = wanted_points[index]
luaunit.assert_equals(point.index, wanted_point.index)
luaunit.assert_almost_equals(point.point, wanted_point.point, 1e-6)
end
end
function TestPlotIterator.test_ipairs_function_empty()
if _VERSION == "Lua 5.1" then
local message =
"Lua 5.1 doesn't support for customizing the `ipairs()` function"
luaunit.skip(message)
end
local function transformer()
assert(false, "it should not be called")
end
local plot = Plot:new(0, 0.5)
local iterator = PlotIterator:new(plot, transformer)
local points = {}
for index, point in ipairs(iterator) do
table.insert(points, {index = index, point = point})
end
luaunit.assert_equals(points, {})
end
function TestPlotIterator.test_ipairs_metamethod()
local function transformer(point)
assertions.is_instance(point, Vector2D)
return point.x * point.y
end
local plot = Plot:new(0, 0.5)
for i = 1, 5 do
plot:push(i / 10)
end
local iterator = PlotIterator:new(plot, transformer)
local points = {}
for index, point in iterator:__ipairs() do
table.insert(points, {index = index, point = point})
end
local wanted_points = {
{index = 1, point = 0.1},
{index = 2, point = 0.4},
{index = 3, point = 0.9},
{index = 4, point = 1.6},
{index = 5, point = 2.5},
}
luaunit.assert_equals(#points, #wanted_points)
for index, point in ipairs(points) do
local wanted_point = wanted_points[index]
luaunit.assert_equals(point.index, wanted_point.index)
luaunit.assert_almost_equals(point.point, wanted_point.point, 1e-6)
end
end
function TestPlotIterator.test_ipairs_metamethod_empty()
local function transformer()
assert(false, "it should not be called")
end
local plot = Plot:new(0, 0.5)
local iterator = PlotIterator:new(plot, transformer)
local points = {}
for index, point in iterator:__ipairs() do
table.insert(points, {index = index, point = point})
end
luaunit.assert_equals(points, {})
end