3500c686b3
- add type infos to VM error messages - add 'Name' to UserFunction objects - add 'expectErrorString' to VM tests - replace vm.expectError() with vm.expectErrorString() to make it more explicit - add source map info to VM error messages - optimization in function calls - add file/line/col info to compiler errors - change stdlib module to be loaded from VM (instead of compiler) so they can be properly loaded after the source is compiled into binary - VM can take builtin modules optionally
90 lines
2.5 KiB
Go
90 lines
2.5 KiB
Go
package runtime_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/d5/tengo/objects"
|
|
)
|
|
|
|
func TestSelector(t *testing.T) {
|
|
expect(t, `a := {k1: 5, k2: "foo"}; out = a.k1`, 5)
|
|
expect(t, `a := {k1: 5, k2: "foo"}; out = a.k2`, "foo")
|
|
expect(t, `a := {k1: 5, k2: "foo"}; out = a.k3`, objects.UndefinedValue)
|
|
|
|
expect(t, `
|
|
a := {
|
|
b: {
|
|
c: 4,
|
|
a: false
|
|
},
|
|
c: "foo bar"
|
|
}
|
|
out = a.b.c`, 4)
|
|
|
|
expect(t, `
|
|
a := {
|
|
b: {
|
|
c: 4,
|
|
a: false
|
|
},
|
|
c: "foo bar"
|
|
}
|
|
b := a.x.c`, objects.UndefinedValue)
|
|
|
|
expect(t, `
|
|
a := {
|
|
b: {
|
|
c: 4,
|
|
a: false
|
|
},
|
|
c: "foo bar"
|
|
}
|
|
b := a.x.y`, objects.UndefinedValue)
|
|
|
|
expect(t, `a := {b: 1, c: "foo"}; a.b = 2; out = a.b`, 2)
|
|
expect(t, `a := {b: 1, c: "foo"}; a.c = 2; out = a.c`, 2) // type not checked on sub-field
|
|
expect(t, `a := {b: {c: 1}}; a.b.c = 2; out = a.b.c`, 2)
|
|
expect(t, `a := {b: 1}; a.c = 2; out = a`, MAP{"b": 1, "c": 2})
|
|
expect(t, `a := {b: {c: 1}}; a.b.d = 2; out = a`, MAP{"b": MAP{"c": 1, "d": 2}})
|
|
|
|
expect(t, `func() { a := {b: 1, c: "foo"}; a.b = 2; out = a.b }()`, 2)
|
|
expect(t, `func() { a := {b: 1, c: "foo"}; a.c = 2; out = a.c }()`, 2) // type not checked on sub-field
|
|
expect(t, `func() { a := {b: {c: 1}}; a.b.c = 2; out = a.b.c }()`, 2)
|
|
expect(t, `func() { a := {b: 1}; a.c = 2; out = a }()`, MAP{"b": 1, "c": 2})
|
|
expect(t, `func() { a := {b: {c: 1}}; a.b.d = 2; out = a }()`, MAP{"b": MAP{"c": 1, "d": 2}})
|
|
|
|
expect(t, `func() { a := {b: 1, c: "foo"}; func() { a.b = 2 }(); out = a.b }()`, 2)
|
|
expect(t, `func() { a := {b: 1, c: "foo"}; func() { a.c = 2 }(); out = a.c }()`, 2) // type not checked on sub-field
|
|
expect(t, `func() { a := {b: {c: 1}}; func() { a.b.c = 2 }(); out = a.b.c }()`, 2)
|
|
expect(t, `func() { a := {b: 1}; func() { a.c = 2 }(); out = a }()`, MAP{"b": 1, "c": 2})
|
|
expect(t, `func() { a := {b: {c: 1}}; func() { a.b.d = 2 }(); out = a }()`, MAP{"b": MAP{"c": 1, "d": 2}})
|
|
|
|
expect(t, `
|
|
a := {
|
|
b: [1, 2, 3],
|
|
c: {
|
|
d: 8,
|
|
e: "foo",
|
|
f: [9, 8]
|
|
}
|
|
}
|
|
out = [a.b[2], a.c.d, a.c.e, a.c.f[1]]
|
|
`, ARR{3, 8, "foo", 8})
|
|
|
|
expect(t, `
|
|
func() {
|
|
a := [1, 2, 3]
|
|
b := 9
|
|
a[1] = b
|
|
b = 7 // make sure a[1] has a COPY of value of 'b'
|
|
out = a[1]
|
|
}()
|
|
`, 9)
|
|
|
|
expectError(t, `a := {b: {c: 1}}; a.d.c = 2`, "not index-assignable")
|
|
expectError(t, `a := [1, 2, 3]; a.b = 2`, "invalid index type")
|
|
expectError(t, `a := "foo"; a.b = 2`, "not index-assignable")
|
|
expectError(t, `func() { a := {b: {c: 1}}; a.d.c = 2 }()`, "not index-assignable")
|
|
expectError(t, `func() { a := [1, 2, 3]; a.b = 2 }()`, "invalid index type")
|
|
expectError(t, `func() { a := "foo"; a.b = 2 }()`, "not index-assignable")
|
|
}
|