-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmap_dot_syntax_test.go
46 lines (41 loc) · 1022 Bytes
/
map_dot_syntax_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
package testing
import "testing"
func TestMap_Dot_Access(t *testing.T) {
rsl := `
a = {"alice": 1, "bob": { "charlie": 2 }}
print(a.alice)
print(a.alice + a.bob.charlie)
`
setupAndRunCode(t, rsl, "--color=never")
assertOnlyOutput(t, stdOutBuffer, "1\n3\n")
assertNoErrors(t)
}
func TestMap_Dot_CanMixAccess(t *testing.T) {
rsl := `
a = {"alice": { "bob": { "charlie": 1 } } }
print(a.alice["bob"].charlie)
`
setupAndRunCode(t, rsl, "--color=never")
assertOnlyOutput(t, stdOutBuffer, "1\n")
assertNoErrors(t)
}
func TestMap_Dot_Assign(t *testing.T) {
rsl := `
a = { "alice": 1 }
a.alice = 2
print(a)
`
setupAndRunCode(t, rsl, "--color=never")
assertOnlyOutput(t, stdOutBuffer, "{ \"alice\": 2 }\n")
assertNoErrors(t)
}
func TestMap_Dot_MixedAssign(t *testing.T) {
rsl := `
a = {"alice": { "bob": { "charlie": 1 } } }
a.alice["bob"].charlie = 3
print(a)
`
setupAndRunCode(t, rsl, "--color=never")
assertOnlyOutput(t, stdOutBuffer, "{ \"alice\": { \"bob\": { \"charlie\": 3 } } }\n")
assertNoErrors(t)
}