-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfunc_pick_kv_test.go
75 lines (66 loc) · 1.71 KB
/
func_pick_kv_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
package testing
import "testing"
// todo need to mock out huh so that we can write tests that actually filter down further when prompted
func TestPickKvReturnsOnlyOption(t *testing.T) {
rsl := `
keys = ["Chicken"]
values = ["Chicken Burger"]
print(pick_kv(keys, values))
`
setupAndRunCode(t, rsl, "--color=never")
expected := `Chicken Burger
`
assertOnlyOutput(t, stdOutBuffer, expected)
assertNoErrors(t)
}
func TestPickKvFilterToOneOption(t *testing.T) {
rsl := `
keys = ["Beef", "Chicken", "Fish"]
values = ["Hamburger", "Chicken Burger", "Fishwich"]
print(pick_kv(keys, values, "Bee"))
`
setupAndRunCode(t, rsl, "--color=never")
expected := `Hamburger
`
assertOnlyOutput(t, stdOutBuffer, expected)
assertNoErrors(t)
}
func TestPickKvErrorsIfEmptyKeysValues(t *testing.T) {
rsl := `
keys = []
values = []
pick_kv(keys, values)
`
setupAndRunCode(t, rsl, "--color=never")
expected := `Error at L4:1
pick_kv(keys, values)
^^^^^^^^^^^^^^^^^^^^^ Filtered 0 options to 0 with filters: []
`
assertError(t, 1, expected)
}
func TestPickKvErrorsIfKeyValueArraysAreNotEqualLength(t *testing.T) {
rsl := `
keys = ["Beef"]
values = ["Hamburger", "Chicken Burger"]
pick_kv(keys, values)
`
setupAndRunCode(t, rsl, "--color=never")
expected := `Error at L4:1
pick_kv(keys, values)
^^^^^^^^^^^^^^^^^^^^^
Number of keys and values must match, but got 1 key and 2 values
`
assertError(t, 1, expected)
}
func TestPickKvWorksWithMultipleTokens(t *testing.T) {
rsl := `
keys = ["Beef", "Chicken", "Fish"]
values = ["Hamburger", "Chicken Burger", "Fishwich"]
print(pick_kv(keys, values, ["Be", "ef"]))
`
setupAndRunCode(t, rsl, "--color=never")
expected := `Hamburger
`
assertOnlyOutput(t, stdOutBuffer, expected)
assertNoErrors(t)
}