-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtbl_trunc_test.go
84 lines (78 loc) · 1.99 KB
/
tbl_trunc_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
package testing
import "testing"
func TestTruncate(t *testing.T) {
rsl := `
url = "https://google.com"
id = json[].id
words = json[].words
rad url:
fields id, words
words:
map x -> truncate(x, 10)
`
setupAndRunCode(t, rsl, "--mock-response", ".*:./responses/long_values.json", "--color=never")
expected := `id words
1 Lorem ips…
2 Ut placer…
`
assertOutput(t, stdOutBuffer, expected)
assertOutput(t, stdErrBuffer, "Mocking response for url (matched \".*\"): https://google.com\n")
assertNoErrors(t)
}
func TestTruncateMatchesColWidth(t *testing.T) {
rsl := `
url = "https://google.com"
id = json[].id
name = json[].name
rad url:
fields id, name
name:
map x -> truncate(x, 5)
`
setupAndRunCode(t, rsl, "--mock-response", ".*:./responses/id_name.json", "--color=never")
expected := `id name
1 Alice
2 Bob
`
assertOutput(t, stdOutBuffer, expected)
assertOutput(t, stdErrBuffer, "Mocking response for url (matched \".*\"): https://google.com\n")
assertNoErrors(t)
}
func TestTruncateErrorsIfInvalidField(t *testing.T) {
rsl := `
url = "https://google.com"
name = json[].name
rad url:
fields name
does_not_exist:
map x -> truncate(x, 5)
`
setupAndRunCode(t, rsl, "--mock-response", ".*:./responses/id_name.json", "--color=never")
expected := `Error at L6:5
does_not_exist:
^^^^^^^^^^^^^^ Cannot modify undefined field "does_not_exist"
`
assertError(t, 1, expected)
}
func TestTruncateTwoFieldsAtOnce(t *testing.T) {
rsl := `
url = "https://google.com"
age = json[].age
name = json[].name
city = json[].city
rad url:
fields age, name, city
name, city:
map x -> truncate(x, 5)
`
setupAndRunCode(t, rsl, "--mock-response", ".*:./responses/people.json", "--color=never")
expected := `age name city
30 Char… Paris
40 Bob Lond…
30 Alice New …
25 Bob Los …
`
assertOutput(t, stdOutBuffer, expected)
assertOutput(t, stdErrBuffer, "Mocking response for url (matched \".*\"): https://google.com\n")
assertNoErrors(t)
}