-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfunc_keys_test.go
52 lines (44 loc) · 1.06 KB
/
func_keys_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
package testing
import "testing"
func TestKeys(t *testing.T) {
rsl := `a = { "alice": "foo", "bob": "bar" }
b = keys(a)
print(b)
print(upper(b[0]))
print(keys({}))
`
setupAndRunCode(t, rsl, "--color=never")
expected := `[ "alice", "bob" ]
ALICE
[ ]
`
assertOnlyOutput(t, stdOutBuffer, expected)
assertNoErrors(t)
}
func TestKeys_ErrorsIfGivenString(t *testing.T) {
rsl := `keys("foo")`
setupAndRunCode(t, rsl, "--color=never")
expected := `Error at L1:6
keys("foo")
^^^^^ Got "string" as the 1st argument of keys(), but must be: map
`
assertError(t, 1, expected)
}
func TestKeys_ErrorsIfGivenNoArgs(t *testing.T) {
rsl := `keys()`
setupAndRunCode(t, rsl, "--color=never")
expected := `Error at L1:1
keys()
^^^^^^ keys() requires at least 1 argument, but got 0
`
assertError(t, 1, expected)
}
func TestKeys_ErrorsIfGivenMoreThanOneArg(t *testing.T) {
rsl := `keys({}, {})`
setupAndRunCode(t, rsl, "--color=never")
expected := `Error at L1:1
keys({}, {})
^^^^^^^^^^^^ keys() requires at most 1 argument, but got 2
`
assertError(t, 1, expected)
}