-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjson_algo_test.go
308 lines (269 loc) · 7.53 KB
/
json_algo_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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
package testing
import "testing"
func TestAlgo_JsonNonRootArrayExtraction(t *testing.T) {
rsl := `
url = "https://google.com"
Id = json.id
Names = json.names[]
request url:
fields Id, Names
print(Id[0])
print(Names)
`
setupAndRunCode(t, rsl, "--mock-response", ".*:./responses/not_root_array.json", "--color=never")
expected := `1
[ "Alice", "Bob", "Charlie" ]
`
assertOutput(t, stdOutBuffer, expected)
assertOutput(t, stdErrBuffer, "Mocking response for url (matched \".*\"): https://google.com\n")
assertNoErrors(t)
}
func TestAlgo_KeyExtraction(t *testing.T) {
rsl := `
url = "https://google.com"
Name = json.results.*
Age = json.results.*.age
Hometown = json.results.*.hometown
rad url:
fields Name, Age, Hometown
`
setupAndRunCode(t, rsl, "--mock-response", ".*:./responses/unique_keys.json", "--color=never")
expected := `Name Age Hometown
Alice 30 New York
Bob 40 Los Angeles
`
assertOutput(t, stdOutBuffer, expected)
assertOutput(t, stdErrBuffer, "Mocking response for url (matched \".*\"): https://google.com\n")
assertNoErrors(t)
}
func TestAlgo_KeyArrayExtraction(t *testing.T) {
rsl := `
url = "https://google.com"
Hometown = json.*
Name = json.*[].name
Age = json.*[].age
rad url:
fields Name, Age, Hometown
`
setupAndRunCode(t, rsl, "--mock-response", ".*:./responses/unique_keys_array.json", "--color=never")
expected := `Name Age Hometown
Alice 30 London
Bob 40 London
Charlotte 35 Paris
David 25 Paris
`
assertOutput(t, stdOutBuffer, expected)
assertOutput(t, stdErrBuffer, "Mocking response for url (matched \".*\"): https://google.com\n")
assertNoErrors(t)
}
func TestAlgo_NestedWildcardExtraction(t *testing.T) {
rsl := `
url = "https://google.com"
city = json.*
country = json.*.*
name = json.*.*[].name
age = json.*.*[].age
rad url:
fields city, country, name, age
`
setupAndRunCode(t, rsl, "--mock-response", ".*:./responses/nested_wildcard.json", "--color=never")
expected := `city country name age
York Australia Charlotte 35
York Australia David 25
York Australia Eve 20
York England Alice 30
York England Bob 40
`
assertOutput(t, stdOutBuffer, expected)
assertOutput(t, stdErrBuffer, "Mocking response for url (matched \".*\"): https://google.com\n")
assertNoErrors(t)
}
func TestAlgo_WildcardListCapture(t *testing.T) {
rsl := `
url = "https://google.com"
names = json.*
ids = json.*.ids
request url:
fields names, ids
print(names)
print(ids)
`
setupAndRunCode(t, rsl, "--mock-response", ".*:./responses/array_wildcard.json", "--color=never")
expected := `[ "Alice", "Bob", "Charlie" ]
[ [ 1, 2, 3 ], [ 4, 5, 6, 7, 8 ], [ 9, 10 ] ]
`
assertOutput(t, stdOutBuffer, expected)
assertOutput(t, stdErrBuffer, "Mocking response for url (matched \".*\"): https://google.com\n")
assertNoErrors(t)
}
func TestAlgo_WildcardListObjectCapture(t *testing.T) {
rsl := `
url = "https://google.com"
names = json.*
ids = json.*.ids[].id
request url:
fields names, ids
print(names)
print(ids)
`
setupAndRunCode(t, rsl, "--mock-response", ".*:./responses/array_objects.json", "--color=never")
expected := `[ "Alice", "Alice", "Alice", "Bob", "Charlie", "Charlie" ]
[ 1, 2, 3, 4, 5, 6 ]
`
assertOutput(t, stdOutBuffer, expected)
assertOutput(t, stdErrBuffer, "Mocking response for url (matched \".*\"): https://google.com\n")
assertNoErrors(t)
}
func TestAlgo_ListOfObjectCapture(t *testing.T) {
rsl := `
url = "https://google.com"
Building = json.buildings.*
issues = json.buildings.*.issues
request url:
fields Building, issues
print([len(x) for x in issues])
`
setupAndRunCode(t, rsl, "--mock-response", ".*:./responses/issues.json", "--color=never")
assertOutput(t, stdOutBuffer, "[ 2, 3 ]\n")
assertOutput(t, stdErrBuffer, "Mocking response for url (matched \".*\"): https://google.com\n")
assertNoErrors(t)
}
func TestAlgo_CaptureRootArray(t *testing.T) {
rsl := `
url = "https://google.com"
ids = json[]
request url:
fields ids
print(ids)
`
setupAndRunCode(t, rsl, "--mock-response", ".*:./responses/root_prim_array.json", "--color=never")
assertOutput(t, stdOutBuffer, "[ 1, 2, 3 ]\n")
assertOutput(t, stdErrBuffer, "Mocking response for url (matched \".*\"): https://google.com\n")
assertNoErrors(t)
}
func TestAlgo_CaptureNonArrayAndArray(t *testing.T) {
rsl := `
url = "https://google.com"
len = json.len
ages = json.results[].age
request url:
fields len, ages
print(len[0])
print(ages)
`
expected := `2
[ 30, 40 ]
`
setupAndRunCode(t, rsl, "--mock-response", ".*:./responses/array_and_non_array.json", "--color=never")
assertOutput(t, stdOutBuffer, expected)
assertOutput(t, stdErrBuffer, "Mocking response for url (matched \".*\"): https://google.com\n")
assertNoErrors(t)
}
func TestAlgo_CaptureNonArrayAndWildcard(t *testing.T) {
rsl := `
url = "https://google.com"
len = json.len
ages = json.results.*.age
request url:
fields len, ages
print(len[0])
print(ages)
`
expected := `2
[ 30, 40 ]
`
setupAndRunCode(t, rsl, "--mock-response", ".*:./responses/unique_keys.json", "--color=never")
assertOutput(t, stdOutBuffer, expected)
assertOutput(t, stdErrBuffer, "Mocking response for url (matched \".*\"): https://google.com\n")
assertNoErrors(t)
}
func TestAlgo_CaptureJsonNode(t *testing.T) {
rsl := `
url = "https://google.com"
node = json.results.Alice
request url:
fields node
print(sort("{node[0]}"))
`
setupAndRunCode(t, rsl, "--mock-response", ".*:./responses/unique_keys.json", "--color=never")
assertOutput(t, stdOutBuffer, " \"\"\"\"\"\",03::NYaeeeghkmnooortww{}\n")
assertOutput(t, stdErrBuffer, "Mocking response for url (matched \".*\"): https://google.com\n")
assertNoErrors(t)
}
func TestAlgo_CanCaptureWholeJson(t *testing.T) {
rsl := `
url = "https://google.com"
node = json
request url:
fields node
print(sort("{node[0]}")) // hack to get the test consistent, as the order of keys in a map is not guaranteed
`
expected := ` """""""""""",,,12::::AB[]aabcddeeeiiilmmnno{{}}` + "\n"
setupAndRunCode(t, rsl, "--mock-response", ".*:./responses/id_name.json", "--color=never")
assertOutput(t, stdOutBuffer, expected)
assertOutput(t, stdErrBuffer, "Mocking response for url (matched \".*\"): https://google.com\n")
assertNoErrors(t)
}
func TestAlgo_CanCaptureWholeComplexJson(t *testing.T) {
rsl := `
url = "https://google.com"
node = json
request url:
fields node
pprint(node[0])
`
expected := `[
{
"friends": [
{
"id":2,
"name":"Bob"
}
],
"height":1.7,
"id":1,
"name":"Alice",
"old":true
},
{
"friends": [
{
"id":1,
"name":"Alice"
},
{
"height":"null",
"id":3,
"name":"Charlie"
},
"null"
],
"height":1.8,
"id":2,
"name":"Bob",
"old":false
},
"null"
]
`
setupAndRunCode(t, rsl, "--mock-response", ".*:./responses/lots_of_types.json", "--color=never")
assertOutput(t, stdOutBuffer, expected)
assertOutput(t, stdErrBuffer, "Mocking response for url (matched \".*\"): https://google.com\n")
assertNoErrors(t)
}
func TestAlgo_HelpfulErrorIfRadBlockMixesArrayAndNoneArrayFields(t *testing.T) {
rsl := `
url = "https://google.com"
Names = json.results[].name
Len = json.len
rad url:
fields Names, Len
`
expected := `Names Len
Alice 2
Bob 2
`
setupAndRunCode(t, rsl, "--mock-response", ".*:./responses/array_and_non_array.json", "--color=never")
assertOutput(t, stdOutBuffer, expected)
assertOutput(t, stdErrBuffer, "Mocking response for url (matched \".*\"): https://google.com\n")
}