-
Notifications
You must be signed in to change notification settings - Fork 653
/
script_test.go
232 lines (204 loc) · 4.56 KB
/
script_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
package lua
import (
"fmt"
"os"
"runtime"
"strings"
"sync/atomic"
"testing"
"time"
"github.com/yuin/gopher-lua/parse"
)
const maxMemory = 40
var gluaTests []string = []string{
"base.lua",
"coroutine.lua",
"db.lua",
"issues.lua",
"os.lua",
"table.lua",
"vm.lua",
"math.lua",
"strings.lua",
"goto.lua",
}
var luaTests []string = []string{
"attrib.lua",
"calls.lua",
"closure.lua",
"constructs.lua",
"events.lua",
"literals.lua",
"locals.lua",
"math.lua",
"sort.lua",
"strings.lua",
"vararg.lua",
"pm.lua",
"files.lua",
}
func testScriptCompile(t *testing.T, script string) {
file, err := os.Open(script)
if err != nil {
t.Fatal(err)
return
}
chunk, err2 := parse.Parse(file, script)
if err2 != nil {
t.Fatal(err2)
return
}
parse.Dump(chunk)
proto, err3 := Compile(chunk, script)
if err3 != nil {
t.Fatal(err3)
return
}
nop := func(s string) {}
nop(proto.String())
}
func testScriptDir(t *testing.T, tests []string, directory string) {
if err := os.Chdir(directory); err != nil {
t.Error(err)
}
defer os.Chdir("..")
for _, script := range tests {
fmt.Printf("testing %s/%s\n", directory, script)
testScriptCompile(t, script)
L := NewState(Options{
RegistrySize: 1024 * 20,
CallStackSize: 1024,
IncludeGoStackTrace: true,
})
L.SetMx(maxMemory)
if err := L.DoFile(script); err != nil {
t.Error(err)
}
L.Close()
}
}
var numActiveUserDatas int32 = 0
type finalizerStub struct{ x byte }
func allocFinalizerUserData(L *LState) int {
ud := L.NewUserData()
atomic.AddInt32(&numActiveUserDatas, 1)
a := finalizerStub{}
ud.Value = &a
runtime.SetFinalizer(&a, func(aa *finalizerStub) {
atomic.AddInt32(&numActiveUserDatas, -1)
})
L.Push(ud)
return 1
}
func sleep(L *LState) int {
time.Sleep(time.Duration(L.CheckInt(1)) * time.Millisecond)
return 0
}
func countFinalizers(L *LState) int {
L.Push(LNumber(numActiveUserDatas))
return 1
}
// TestLocalVarFree verifies that tables and user user datas which are no longer referenced by the lua script are
// correctly gc-ed. There was a bug in gopher lua where local vars were not being gc-ed in all circumstances.
func TestLocalVarFree(t *testing.T) {
s := `
function Test(a, b, c)
local a = { v = allocFinalizer() }
local b = { v = allocFinalizer() }
return a
end
Test(1,2,3)
for i = 1, 100 do
collectgarbage()
if countFinalizers() == 0 then
return
end
sleep(100)
end
error("user datas not finalized after 100 gcs")
`
L := NewState()
L.SetGlobal("allocFinalizer", L.NewFunction(allocFinalizerUserData))
L.SetGlobal("sleep", L.NewFunction(sleep))
L.SetGlobal("countFinalizers", L.NewFunction(countFinalizers))
defer L.Close()
if err := L.DoString(s); err != nil {
t.Error(err)
}
}
func TestGlua(t *testing.T) {
testScriptDir(t, gluaTests, "_glua-tests")
}
func TestLua(t *testing.T) {
testScriptDir(t, luaTests, "_lua5.1-tests")
}
func TestMergingLoadNilBug(t *testing.T) {
// there was a bug where a multiple load nils were being incorrectly merged, and the following code exposed it
s := `
function test()
local a = 0
local b = 1
local c = 2
local d = 3
local e = 4 -- reg 4
local f = 5
local g = 6
local h = 7
if e == 4 then
e = nil -- should clear reg 4, but clears regs 4-8 by mistake
end
if f == nil then
error("bad f")
end
if g == nil then
error("bad g")
end
if h == nil then
error("bad h")
end
end
test()
`
L := NewState()
defer L.Close()
if err := L.DoString(s); err != nil {
t.Error(err)
}
}
func TestMergingLoadNil(t *testing.T) {
// multiple nil assignments to consecutive registers should be merged
s := `
function test()
local a = 0
local b = 1
local c = 2
-- this should generate just one LOADNIL byte code instruction
a = nil
b = nil
c = nil
print(a,b,c)
end
test()`
chunk, err := parse.Parse(strings.NewReader(s), "test")
if err != nil {
t.Fatal(err)
}
compiled, err := Compile(chunk, "test")
if err != nil {
t.Fatal(err)
}
if len(compiled.FunctionPrototypes) != 1 {
t.Fatal("expected 1 function prototype")
}
// there should be exactly 1 LOADNIL instruction in the byte code generated for the above
// anymore, and the LOADNIL merging is not working correctly
count := 0
for _, instr := range compiled.FunctionPrototypes[0].Code {
if opGetOpCode(instr) == OP_LOADNIL {
count++
}
}
if count != 1 {
t.Fatalf("expected 1 LOADNIL instruction, found %d", count)
}
}