forked from Shopify/go-lua
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvm_test.go
460 lines (423 loc) · 11.3 KB
/
vm_test.go
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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
package lua
import (
"fmt"
"path/filepath"
"runtime"
"strings"
"testing"
)
func testString(t *testing.T, s string) { testStringHelper(t, s, false) }
// Commented out to avoid a warning relating to the method not being used. Left here since it's useful for debugging.
//func traceString(t *testing.T, s string) { testStringHelper(t, s, true) }
func testNoPanicString(t *testing.T, s string) {
defer func() {
if rc := recover(); rc != nil {
var buffer [8192]byte
t.Errorf("got panic %v; expected none", rc)
t.Logf("trace:\n%s", buffer[:runtime.Stack(buffer[:], false)])
}
}()
testStringHelper(t, s, false)
}
func testStringHelper(t *testing.T, s string, trace bool) {
l := NewState()
OpenLibraries(l)
LoadString(l, s)
if trace {
SetDebugHook(l, func(state *State, ar Debug) {
ci := state.callInfo
p := state.prototype(ci)
println(stack(state.stack[ci.base():state.top]))
println(ci.code[ci.savedPC].String(), p.source, p.lineInfo[ci.savedPC])
}, MaskCount, 1)
}
l.Call(0, 0)
}
func TestProtectedCall(t *testing.T) {
l := NewState()
OpenLibraries(l)
SetDebugHook(l, func(state *State, ar Debug) {
ci := state.callInfo
_ = stack(state.stack[ci.base():state.top])
_ = ci.code[ci.savedPC].String()
}, MaskCount, 1)
LoadString(l, "assert(not pcall(bit32.band, {}))")
l.Call(0, 0)
}
func TestLua(t *testing.T) {
tests := []struct {
name string
nonPort bool
}{
{name: "attrib", nonPort: true},
// {name: "big"},
{name: "bitwise"},
// {name: "calls"},
// {name: "checktable"},
{name: "closure"},
// {name: "code"},
// {name: "constructs"},
// {name: "db"},
// {name: "errors"},
{name: "events"},
// {name: "files"},
// {name: "gc"},
{name: "goto"},
// {name: "literals"},
{name: "locals"},
// {name: "main"},
{name: "math"},
// {name: "nextvar"},
// {name: "pm"},
{name: "sort", nonPort: true}, // sort.lua depends on os.clock(), which is not yet implemented on Windows.
{name: "strings"},
// {name: "vararg"},
// {name: "verybig"},
}
for _, v := range tests {
if v.nonPort && runtime.GOOS == "windows" {
t.Skipf("'%s' skipped because it's non-portable & we're running Windows", v.name)
}
t.Log(v)
l := NewState()
OpenLibraries(l)
for _, s := range []string{"_port", "_no32", "_noformatA"} {
l.PushBoolean(true)
l.SetGlobal(s)
}
if v.nonPort {
l.PushBoolean(false)
l.SetGlobal("_port")
}
// l.SetDebugHook(func(state *State, ar Debug) {
// ci := state.callInfo.(*luaCallInfo)
// p := state.prototype(ci)
// println(stack(state.stack[ci.base():state.top]))
// println(ci.code[ci.savedPC].String(), p.source, p.lineInfo[ci.savedPC])
// }, MaskCount, 1)
l.Global("debug")
l.Field(-1, "traceback")
traceback := l.Top()
// t.Logf("%#v", l.ToValue(traceback))
if err := LoadFile(l, filepath.Join("lua-tests", v.name+".lua"), "text"); err != nil {
t.Errorf("'%s' failed: %s", v.name, err.Error())
}
// l.Call(0, 0)
if err := l.ProtectedCall(0, 0, traceback); err != nil {
t.Errorf("'%s' failed: %s", v.name, err.Error())
}
}
}
func benchmarkSort(b *testing.B, program string) {
l := NewState()
OpenLibraries(l)
s := `a = {}
for i=1,%d do
a[i] = math.random()
end`
LoadString(l, fmt.Sprintf(s, b.N))
if err := l.ProtectedCall(0, 0, 0); err != nil {
b.Error(err.Error())
}
LoadString(l, program)
b.ResetTimer()
if err := l.ProtectedCall(0, 0, 0); err != nil {
b.Error(err.Error())
}
}
func BenchmarkSort(b *testing.B) { benchmarkSort(b, "table.sort(a)") }
func BenchmarkSort2(b *testing.B) {
benchmarkSort(b, "i = 0; table.sort(a, function(x,y) i=i+1; return y<x end)")
}
func BenchmarkFibonnaci(b *testing.B) {
l := NewState()
s := `return function(n)
if n == 0 then
return 0
elseif n == 1 then
return 1
end
local n0, n1 = 0, 1
for i = n, 2, -1 do
local tmp = n0 + n1
n0 = n1
n1 = tmp
end
return n1
end`
LoadString(l, s)
if err := l.ProtectedCall(0, 1, 0); err != nil {
b.Error(err.Error())
}
l.PushInteger(b.N)
b.ResetTimer()
if err := l.ProtectedCall(1, 1, 0); err != nil {
b.Error(err.Error())
}
}
// TestTailCallRecursive tests for failures where both the callee and caller are making a tailcall.
func TestTailCallRecursive(t *testing.T) {
s := `function tailcall(n, m)
if n > m then return n end
return tailcall(n + 1, m)
end
return tailcall(0, 5)`
testNoPanicString(t, s)
}
// TestTailCallRecursiveDiffFn tests for failures where only the caller is making a tailcall.
func TestTailCallRecursiveDiffFn(t *testing.T) {
s := `function tailcall(n) return n+1 end
return tailcall(5)`
testNoPanicString(t, s)
}
// TestTailCallSameFn tests for failures where only the callee is making a tailcall.
func TestTailCallSameFn(t *testing.T) {
s := `function tailcall(n, m)
if n > m then return n end
return tailcall(n + 1, m)
end
return (tailcall(0, 5))`
testNoPanicString(t, s)
}
// TestNoTailCall tests for failures when neither callee nor caller make a tailcall.
func TestNormalCall(t *testing.T) {
s := `function notailcall() return 5 end
return (notailcall())`
testNoPanicString(t, s)
}
func TestVarArgMeta(t *testing.T) {
s := `function f(t, ...) return t, {...} end
local a = setmetatable({}, {__call = f})
local x, y = a(table.unpack{"a", 1})
assert(#x == 0)
assert(#y == 2 and y[1] == "a" and y[2] == 1)`
testString(t, s)
}
func TestCanRemoveNilObjectFromStack(t *testing.T) {
defer func() {
if r := recover(); r != nil {
t.Fatalf("failed to remove `nil`, %v", r)
}
}()
l := NewState()
l.PushString("hello")
l.Remove(-1)
l.PushNil()
l.Remove(-1)
}
func TestTableUserdataEquality(t *testing.T) {
const s = `return function(x)
local b = x == {}
assert(type(b) == "boolean")
assert(b == false)
-- reverse
b = {} == x
assert(type(b) == "boolean")
assert(b == false)
end`
l := NewState()
OpenLibraries(l)
LoadString(l, s)
if err := l.ProtectedCall(0, 1, 0); err != nil {
t.Error(err.Error())
}
l.PushUserData(5)
if err := l.ProtectedCall(1, 0, 0); err != nil {
t.Error(err.Error())
}
}
func TestUserDataEqualityNil(t *testing.T) {
const s = `return function(x)
local b = x == nil
assert(type(b) == "boolean")
assert(b == false)
end`
l := NewState()
OpenLibraries(l)
LoadString(l, s)
if err := l.ProtectedCall(0, 1, 0); err != nil {
t.Error(err.Error())
}
l.PushUserData(5)
if err := l.ProtectedCall(1, 0, 0); err != nil {
t.Error(err.Error())
}
}
func TestTableEqualityNil(t *testing.T) {
const s = `local b = {} == nil
assert(type(b) == "boolean")
assert(b == false)`
testString(t, s)
}
func TestTableNext(t *testing.T) {
l := NewState()
OpenLibraries(l)
l.CreateTable(10, 0)
for i := 1; i <= 4; i++ {
l.PushInteger(i)
l.PushValue(-1)
l.SetTable(-3)
}
if length := LengthEx(l, -1); length != 4 {
t.Errorf("expected table length to be 4, but was %d", length)
}
count := 0
for l.PushNil(); l.Next(-2); count++ {
if k, v := CheckInteger(l, -2), CheckInteger(l, -1); k != v {
t.Errorf("key %d != value %d", k, v)
}
l.Pop(1)
}
if count != 4 {
t.Errorf("incorrect iteration count %d in Next()", count)
}
}
func TestError(t *testing.T) {
l := NewState()
BaseOpen(l)
errorHandled := false
program := "error('error')"
l.PushGoFunction(func(l *State) int {
if l.Top() == 0 {
t.Error("error handler received no arguments")
} else if errorMessage, ok := l.ToString(-1); !ok {
t.Errorf("error handler received %s instead of string", TypeNameOf(l, -1))
} else if errorMessage != chunkID(program)+":1: error" {
t.Errorf("error handler received '%s' instead of 'error'", errorMessage)
}
errorHandled = true
return 1
})
LoadString(l, program)
l.ProtectedCall(0, 0, -2)
if !errorHandled {
t.Error("error not handled")
}
}
func TestErrorf(t *testing.T) {
l := NewState()
BaseOpen(l)
program := "-- script that is bigger than the max ID size\nhelper()\n" + strings.Repeat("--", idSize)
expectedErrorMessage := chunkID(program) + ":2: error"
l.PushGoFunction(func(l *State) int {
Errorf(l, "error")
return 0
})
l.SetGlobal("helper")
errorHandled := false
l.PushGoFunction(func(l *State) int {
if l.Top() == 0 {
t.Error("error handler received no arguments")
} else if errorMessage, ok := l.ToString(-1); !ok {
t.Errorf("error handler received %s instead of string", TypeNameOf(l, -1))
} else if errorMessage != expectedErrorMessage {
t.Errorf("error handler received '%s' instead of '%s'", errorMessage, expectedErrorMessage)
}
errorHandled = true
return 1
})
LoadString(l, program)
l.ProtectedCall(0, 0, -2)
if !errorHandled {
t.Error("error not handled")
}
}
func TestPairsSplit(t *testing.T) {
testString(t, `
local t = {}
-- first two keys go into array
t[1] = true
t[2] = true
-- next key forced into map instead of array since it's non-sequential
t[16] = true
-- next key inserted into array
t[3] = true
local keys = {}
for k, v in pairs(t) do
keys[#keys + 1] = k
end
table.sort(keys)
assert(keys[1] == 1, 'got ' .. tostring(keys[1]) .. '; want 1')
assert(keys[2] == 2, 'got ' .. tostring(keys[2]) .. '; want 2')
assert(keys[3] == 3, 'got ' .. tostring(keys[3]) .. '; want 3')
assert(keys[4] == 16, 'got ' .. tostring(keys[4]) .. '; want 16')
`)
}
func TestConcurrentNext(t *testing.T) {
testString(t, `
t = {}
t[1], t[2], t[3] = true, true, true
outer = {}
for k1 in pairs(t) do
table.insert(outer, k1)
inner = {}
for k2 in pairs(t) do
table.insert(inner, k2)
end
table.sort(inner)
got = table.concat(inner, '')
assert(got == '123', 'got ' .. got .. '; want 123')
end
table.sort(outer)
got = table.concat(outer, '')
assert(got == '123', 'got ' .. got .. '; want 123')
`)
}
func TestLocIsCorrectOnRegisteredFuncCall(t *testing.T) {
l := NewState()
l.Register("barf", func(l *State) int {
Errorf(l, "Boom!")
return 0
})
if err := l.Load(strings.NewReader(`
local thing = barf() -- line 2; is the source of the error
print(thing) -- line 3; this won't execute, and must NOT be the loc of the error!
`), "test", ""); err != nil {
t.Errorf("Unexpected error! Got %v", err)
}
err := l.ProtectedCall(0, 0, 0)
if err == nil {
t.Errorf("Expected error! Got none... :(")
} else {
if err.Error() != "runtime error: [string \"test\"]:2: Boom!" {
t.Errorf("Wrong error reported: %v", err)
}
}
}
func TestLocIsCorrectOnFuncCall(t *testing.T) {
l := NewState()
if err := l.Load(strings.NewReader(`
function barf()
a = 3 + 2
isNotDefined("Boom!", a) -- line 4; is the source of the error
end
barf() -- line 6
`), "test", ""); err != nil {
t.Errorf("Unexpected error! Got %v", err)
}
err := l.ProtectedCall(0, 0, 0)
if err == nil {
t.Errorf("Expected error! Got none... :(")
} else {
if err.Error() != "runtime error: [string \"test\"]:4: attempt to call a nil value" {
t.Errorf("Wrong error reported: %v", err)
}
}
}
func TestLocIsCorrectOnError(t *testing.T) {
l := NewState()
if err := l.Load(strings.NewReader(`
a = 3 - 3
b = 3 / q -- line 3; errs!
`), "test", ""); err != nil {
t.Errorf("Unexpected error! Got %v", err)
}
err := l.ProtectedCall(0, 0, 0)
if err == nil {
t.Errorf("Expected error! Got none... :(")
} else {
if err.Error() != "runtime error: [string \"test\"]:3: attempt to perform arithmetic on a nil value" {
t.Errorf("Wrong error reported: %v", err)
}
}
}