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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
|
return describe("named varargs", function()
it("should store varargs in named table", function()
local f
f = function(...)
local t = {
n = select("#", ...),
...
}
assert.same(t.n, 3)
assert.same(t[1], 1)
assert.same(t[2], 2)
return assert.same(t[3], 3)
end
return f(1, 2, 3)
end)
it("should handle string arguments", function()
local f
f = function(...)
local args = {
n = select("#", ...),
...
}
assert.same(args.n, 3)
assert.same(args[1], "a")
assert.same(args[2], "b")
return assert.same(args[3], "c")
end
return f("a", "b", "c")
end)
it("should handle empty varargs", function()
local f
f = function(...)
local t = {
n = select("#", ...),
...
}
assert.same(t.n, 0)
return assert.same(#t, 0)
end
return f()
end)
it("should preserve nil values", function()
local f
f = function(...)
local args = {
n = select("#", ...),
...
}
assert.same(args.n, 5)
assert.same(args[1], 1)
assert.same(args[2], nil)
assert.same(args[3], 3)
assert.same(args[4], nil)
return assert.same(args[5], 5)
end
return f(1, nil, 3, nil, 5)
end)
it("should work with loop", function()
local f
f = function(...)
local t = {
n = select("#", ...),
...
}
local sum = 0
for i = 1, t.n do
if type(t[i]) == "number" then
sum = sum + t[i]
end
end
return sum
end
local result = f(1, 2, 3, 4, 5)
return assert.same(result, 15)
end)
it("should handle mixed types", function()
local f
f = function(...)
local args = {
n = select("#", ...),
...
}
local types
do
local _accum_0 = { }
local _len_0 = 1
for i = 1, args.n do
_accum_0[_len_0] = type(args[i])
_len_0 = _len_0 + 1
end
types = _accum_0
end
return types
end
local result = f("string", 123, true, nil, { })
return assert.same(result, {
"string",
"number",
"boolean",
"nil",
"table"
})
end)
it("should work with table access", function()
local f
f = function(...)
local t = {
n = select("#", ...),
...
}
local first = t[1]
local last = t[t.n]
return {
first,
last
}
end
local result = f(1, 2, 3, 4, 5)
return assert.same(result, {
1,
5
})
end)
it("should support select with named args", function()
local f
f = function(...)
local args = {
n = select("#", ...),
...
}
local second = select(2, table.unpack(args))
return second
end
local result = f("a", "b", "c")
return assert.same(result, "b")
end)
it("should work with pcall", function()
local f
f = function(...)
local t = {
n = select("#", ...),
...
}
local success = true
for i = 1, t.n do
if t[i] == nil then
success = false
end
end
return success
end
local result = f(1, nil, 3)
return assert.is_false(result)
end)
it("should handle function results", function()
local g
g = function()
return 1, 2, 3
end
local f
f = function(...)
local t = {
n = select("#", ...),
...
}
return t.n
end
local result = f(g())
return assert.same(result, 3)
end)
it("should work with unpacking", function()
local f
f = function(...)
local args = {
n = select("#", ...),
...
}
return {
table.unpack(args)
}
end
local result = f("a", "b", "c")
return assert.same(result, {
"a",
"b",
"c"
})
end)
it("should support passing named varargs to another function", function()
local outer
outer = function(...)
local t = {
n = select("#", ...),
...
}
return inner((table.unpack(t)))
end
local inner
inner = function(a, b, c)
return {
a,
b,
c
}
end
local result = outer(1, 2, 3)
return assert.same(result, {
1,
2,
3
})
end)
it("should work with default parameter", function()
local f
f = function(x, ...)
if x == nil then
x = 10
end
local t = {
n = select("#", ...),
...
}
return x + t[1] or 0
end
local result = f(5, 15)
return assert.same(result, 20)
end)
return it("should handle single argument", function()
local f
f = function(...)
local t = {
n = select("#", ...),
...
}
return {
t.n,
t[1]
}
end
local result = f(42)
return assert.same(result, {
1,
42
})
end)
end)
|