-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtbl_general_test.go
232 lines (215 loc) · 4.94 KB
/
tbl_general_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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
package testing
import "testing"
const (
setupGenTblRsl = `
url = "https://google.com"
shortint = json[].shortint
longint = json[].longint
shortfloat = json[].shortfloat
longfloat = json[].longfloat
`
)
func TestRad_VariousTypeLengths(t *testing.T) {
rsl := setupGenTblRsl + `
rad url:
fields shortint, longint, shortfloat, longfloat
`
setupAndRunCode(t, rsl, "--mock-response", ".*:./responses/numbers.json", "--color=never")
expected := `shortint longint shortfloat longfloat
1 1234567899987654400 1.12 1234.5678999876543
`
assertOutput(t, stdOutBuffer, expected)
assertOutput(t, stdErrBuffer, "Mocking response for url (matched \".*\"): https://google.com\n")
assertNoErrors(t)
}
func TestRad_RequestBlock(t *testing.T) {
rsl := `
url = "https://google.com"
Name = json[].name
Age = json[].age
request url:
fields Name, Age
print("Names:", Name)
print("Ages:", Age)
`
setupAndRunCode(t, rsl, "--mock-response", ".*:./responses/people.json", "--color=never")
expected := `Names: [ "Charlie", "Bob", "Alice", "Bob" ]
Ages: [ 30, 40, 30, 25 ]
`
assertOutput(t, stdOutBuffer, expected)
assertOutput(t, stdErrBuffer, "Mocking response for url (matched \".*\"): https://google.com\n")
assertNoErrors(t)
}
func TestRad_RequestBlockComplainsIfNoUrl(t *testing.T) {
rsl := `
url = "https://google.com"
Name = json[].name
Age = json[].age
request:
fields Name, Age
`
setupAndRunCode(t, rsl, "--color=never")
expected := `Error at L5:8
request:
Invalid syntax
`
assertError(t, 1, expected)
}
func TestRad_DisplayBlock(t *testing.T) {
rsl := `
Name = ["Alice", "Bob", "Charlie"]
Age = [30, 40, 25]
display:
fields Name, Age
`
setupAndRunCode(t, rsl, "--color=never")
expected := `Name Age
Alice 30
Bob 40
Charlie 25
`
assertOnlyOutput(t, stdOutBuffer, expected)
assertNoErrors(t)
}
func TestRad_DisplayBlockErrorsIfGivenUrl(t *testing.T) {
rsl := `
url = "https://google.com"
Name = ["Alice", "Bob", "Charlie"]
Age = [30, 40, 25]
display url:
fields Name, Age
`
setupAndRunCode(t, rsl, "--color=never")
expected := `Error at L5:9
display url:
^^^ Display block source can only be a list or a map. Got "string"
`
assertError(t, 1, expected)
}
func TestRad_RequestThenDisplayBlocks(t *testing.T) {
rsl := `
url = "https://google.com"
Name = json[].name
ids = json[].ids
request url:
fields Name, ids
NumIds = [len(x) for x in ids]
display:
fields Name, NumIds
`
setupAndRunCode(t, rsl, "--mock-response", ".*:./responses/arrays.json", "--color=never")
expected := `Name NumIds
Alice 3
Bob 5
Charlie 2
`
assertOutput(t, stdOutBuffer, expected)
assertOutput(t, stdErrBuffer, "Mocking response for url (matched \".*\"): https://google.com\n")
assertNoErrors(t)
}
func TestRad_RequiresBlockElseError(t *testing.T) {
rsl := `
url = "https://google.com"
rad url
`
setupAndRunCode(t, rsl, "--mock-response", ".*:./responses/text.txt", "--color=never")
expected := `Error at L3:1
rad url
^^^^^^^ Invalid syntax
`
assertError(t, 1, expected)
}
func TestRad_CanConditionallyApplySort(t *testing.T) {
rsl := `
Name = ["Alice", "Bob", "Charlie"]
Age = [30, 40, 25]
should_sort = false
display:
fields Name, Age
if should_sort:
sort desc
should_sort = true
display:
fields Name, Age
if should_sort:
sort desc
`
setupAndRunCode(t, rsl, "--color=never")
expected := `Name Age
Alice 30
Bob 40
Charlie 25
Name Age
Charlie 25
Bob 40
Alice 30
`
assertOnlyOutput(t, stdOutBuffer, expected)
assertNoErrors(t)
}
func TestRad_CanFallBackToElse(t *testing.T) {
rsl := `
Name = ["Alice", "Bob", "Charlie"]
Age = [30, 40, 25]
should_sort = false
display:
fields Name, Age
if should_sort:
sort desc
else:
sort Age asc
`
setupAndRunCode(t, rsl, "--color=never")
expected := `Name Age
Charlie 25
Alice 30
Bob 40
`
assertOnlyOutput(t, stdOutBuffer, expected)
assertNoErrors(t)
}
func TestRad_CanFallBackToElseIf(t *testing.T) {
rsl := `
Name = ["Alice", "Bob", "Charlie"]
Age = [30, 40, 25]
should_sort = false
display:
fields Name, Age
if should_sort:
sort desc
else if true:
sort Age asc
else:
sort Age desc
`
setupAndRunCode(t, rsl, "--color=never")
expected := `Name Age
Charlie 25
Alice 30
Bob 40
`
assertOnlyOutput(t, stdOutBuffer, expected)
assertNoErrors(t)
}
func TestRad_IfStmtWorksOnRadWithUrl(t *testing.T) {
rsl := `
url = "https://google.com"
name = json[].name
city = json[].city
should_sort = true
rad url:
fields name, city
if should_sort:
sort name asc
`
setupAndRunCode(t, rsl, "--mock-response", ".*:./responses/people.json", "--color=never")
expected := `name city
Alice New York
Bob London
Bob Los Angeles
Charlie Paris
`
assertOutput(t, stdOutBuffer, expected)
assertOutput(t, stdErrBuffer, "Mocking response for url (matched \".*\"): https://google.com\n")
assertNoErrors(t)
}