forked from layeh/gopher-luar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
struct_test.go
401 lines (321 loc) · 7.15 KB
/
struct_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
package luar
import (
"testing"
"github.com/yuin/gopher-lua"
)
func Test_struct(t *testing.T) {
L := lua.NewState()
defer L.Close()
tim := &StructTestPerson{
Name: "Tim",
Age: 30,
}
john := StructTestPerson{
Name: "John",
Age: 40,
}
L.SetGlobal("user1", New(L, tim))
L.SetGlobal("user2", New(L, john))
testReturn(t, L, `return user1.Name`, "Tim")
testReturn(t, L, `return user1.Age`, "30")
testReturn(t, L, `return user1:Hello()`, "Hello, Tim")
testReturn(t, L, `return user2.Name`, "John")
testReturn(t, L, `return user2.Age`, "40")
testReturn(t, L, `local hello = user2.Hello; return hello(user2)`, "Hello, John")
}
func Test_struct_tostring(t *testing.T) {
L := lua.NewState()
defer L.Close()
p1 := StructTestPerson{
Name: "Tim",
Age: 99,
}
p2 := StructTestPerson{
Name: "John",
Age: 2,
}
L.SetGlobal("p1", New(L, &p1))
L.SetGlobal("p2", New(L, &p2))
testReturn(t, L, `return tostring(p1)`, `Tim (99)`)
testReturn(t, L, `return tostring(p2)`, `John (2)`)
}
func Test_struct_pointers(t *testing.T) {
L := lua.NewState()
defer L.Close()
p1 := StructTestPerson{
Name: "Tim",
}
p2 := StructTestPerson{
Name: "John",
}
L.SetGlobal("p1", New(L, &p1))
L.SetGlobal("p1_alias", New(L, &p1))
L.SetGlobal("p2", New(L, &p2))
testReturn(t, L, `return -p1 == -p1`, "true")
testReturn(t, L, `return -p1 == -p1_alias`, "true")
testReturn(t, L, `return p1 == p1`, "true")
testReturn(t, L, `return p1 == p1_alias`, "true")
testReturn(t, L, `return p1 == p2`, "false")
}
func Test_struct_lstate(t *testing.T) {
L := lua.NewState()
defer L.Close()
p := StructTestPerson{
Name: "Tim",
}
L.SetGlobal("p", New(L, &p))
testReturn(t, L, `return p:AddNumbers(1, 2, 3, 4, 5)`, "Tim counts: 15")
}
type StructTestHidden struct {
Name string `luar:"name"`
Name2 string `luar:"Name"`
Str string
Hidden bool `luar:"-"`
}
func Test_struct_hiddenfields(t *testing.T) {
L := lua.NewState()
defer L.Close()
a := &StructTestHidden{
Name: "tim",
Name2: "bob",
Str: "asd123",
Hidden: true,
}
L.SetGlobal("a", New(L, a))
testReturn(t, L, `return a.name`, "tim")
testReturn(t, L, `return a.Name`, "bob")
testReturn(t, L, `return a.str`, "asd123")
testReturn(t, L, `return a.Str`, "asd123")
testReturn(t, L, `return a.Hidden`, "nil")
testReturn(t, L, `return a.hidden`, "nil")
}
func Test_struct_method(t *testing.T) {
L := lua.NewState()
defer L.Close()
p := StructTestPerson{
Name: "Tim",
Age: 66,
}
L.SetGlobal("p", New(L, &p))
testReturn(t, L, `return p:hello()`, "Hello, Tim")
testReturn(t, L, `return p.age`, "66")
}
type NestedPointer struct {
B NestedPointerChild
}
type NestedPointerChild struct {
}
func (*NestedPointerChild) Test() string {
return "Pointer test"
}
func Test_struct_nestedptrmethod(t *testing.T) {
L := lua.NewState()
defer L.Close()
a := NestedPointer{}
L.SetGlobal("a", New(L, &a))
testReturn(t, L, `return a.b:Test()`, "Pointer test")
}
type TestStructEmbeddedType struct {
TestStructEmbeddedTypeString
}
type TestStructEmbeddedTypeString string
func Test_struct_embeddedtype(t *testing.T) {
L := lua.NewState()
defer L.Close()
a := TestStructEmbeddedType{
TestStructEmbeddedTypeString: "hello",
}
L.SetGlobal("a", New(L, &a))
testReturn(t, L, `a.TestStructEmbeddedTypeString = "world"`)
if val := a.TestStructEmbeddedTypeString; val != "world" {
t.Fatalf("expecting %s, got %s", "world", val)
}
}
type TestStructEmbedded struct {
StructTestPerson
P StructTestPerson
P2 StructTestPerson `luar:"other"`
}
func Test_struct_embedded(t *testing.T) {
L := lua.NewState()
defer L.Close()
e := &TestStructEmbedded{}
L.SetGlobal("e", New(L, e))
testReturn(
t,
L,
`
e.StructTestPerson = {
Name = "Bill",
Age = 33
}
e.P = {
Name = "Tim",
Age = 94,
Friend = {
Name = "Bob",
Age = 77
}
}
e.other = {
Name = "Dale",
Age = 26
}
`,
)
{
expected := StructTestPerson{
Name: "Bill",
Age: 33,
}
if e.StructTestPerson != expected {
t.Fatalf("expected %#v, got %#v", expected, e.StructTestPerson)
}
}
{
expected := StructTestPerson{
Name: "Bob",
Age: 77,
}
if *(e.P.Friend) != expected {
t.Fatalf("expected %#v, got %#v", expected, *e.P.Friend)
}
}
{
expected := StructTestPerson{
Name: "Dale",
Age: 26,
}
if e.P2 != expected {
t.Fatalf("expected %#v, got %#v", expected, e.P2)
}
}
}
type TestPointerReplaceHidden struct {
A string `luar:"q"`
B int `luar:"other"`
C int `luar:"-"`
}
func Test_struct_pointerreplacehidden(t *testing.T) {
L := lua.NewState()
defer L.Close()
e := &TestPointerReplaceHidden{}
L.SetGlobal("e", New(L, e))
testReturn(
t,
L,
`
_ = e ^ {
q = "Cat",
other = 675
}
`,
)
expected := TestPointerReplaceHidden{
A: "Cat",
B: 675,
}
if *e != expected {
t.Fatalf("expected %v, got %v", expected, *e)
}
testError(
t,
L,
`
_ = e ^ {
C = 333
}
`,
`type luar.TestPointerReplaceHidden has no field C`,
)
}
func Test_struct_ptreq(t *testing.T) {
L := lua.NewState()
defer L.Close()
p1 := StructTestPerson{
Name: "Tim",
}
p2 := StructTestPerson{
Name: "Tim",
}
L.SetGlobal("p1", New(L, &p1))
L.SetGlobal("p2", New(L, &p2))
if &p1 == &p2 {
t.Fatal("expected structs to be unequal")
}
testReturn(t, L, `return p1 == p2`, "false")
}
type Test_nested_child1 struct {
Name string
}
type Test_nested_child2 struct {
Name string
}
type Test_nested_parent struct {
Test_nested_child1
Test_nested_child2
}
func Test_ambiguous_field(t *testing.T) {
L := lua.NewState()
defer L.Close()
n := &Test_nested_parent{}
L.SetGlobal("c", New(L, n))
testError(t, L, `
c.Name = "Tim"
`, "unknown field Name")
if n.Test_nested_child1.Name != "" {
t.Errorf("expected Test_nested_child1.Name to be empty")
}
if n.Test_nested_child2.Name != "" {
t.Errorf("expected Test_nested_child2.Name to be empty")
}
}
type Test_nested_parent2 struct {
Test_nested_child1
Test_nested_child2
Name string
}
func Test_ambiguous_field2(t *testing.T) {
L := lua.NewState()
defer L.Close()
n := &Test_nested_parent2{}
L.SetGlobal("c", New(L, n))
testReturn(t, L, `
c.Name = "Tim"
return c.Name
`, "Tim")
if n.Name != "Tim" {
t.Errorf("expected Name to be set to `Tim`")
}
if n.Test_nested_child1.Name != "" {
t.Errorf("expected Test_nested_child1.Name to be empty")
}
if n.Test_nested_child2.Name != "" {
t.Errorf("expected Test_nested_child2.Name to be empty")
}
}
type test_unexport_anonymous_child struct {
Name string
}
type Test_struct_unexport_anonymous_parent struct {
test_unexport_anonymous_child
}
func Test_struct_unexport_anonymous_field(t *testing.T) {
L := lua.NewState()
defer L.Close()
n := &Test_struct_unexport_anonymous_parent{}
L.SetGlobal("c", New(L, n))
testReturn(t, L, `
c.Name = "Tim"
return c.Name
`, "Tim")
if n.Name != "Tim" {
t.Errorf("expected Name to be set to `Tim`")
}
// Ensure test_unexport_anonymous_child was not captured
mt := MT(L, *n)
fields := mt.RawGetString("fields").(*lua.LTable)
if field := fields.RawGetString("test_unexport_anonymous_child"); field != lua.LNil {
t.Errorf("expected test_unexport_anonymous_child to be nil, got %v", field)
}
}