-
-
Notifications
You must be signed in to change notification settings - Fork 138
/
Copy pathtest_lists.py
422 lines (367 loc) · 13.5 KB
/
test_lists.py
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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
from typing import Any, AsyncGenerator
import pytest
from graphql.execution import ExecutionResult, execute, execute_sync
from graphql.language import parse
from graphql.pyutils import is_awaitable
from graphql.type import (
GraphQLField,
GraphQLFieldResolver,
GraphQLList,
GraphQLNonNull,
GraphQLObjectType,
GraphQLResolveInfo,
GraphQLSchema,
GraphQLString,
)
from graphql.utilities import build_schema
class Data:
def __init__(self, value):
self.listField = value
async def get_async(value):
return value
def describe_execute_accepts_any_iterable_as_list_value():
def _complete(list_field):
return execute_sync(
build_schema("type Query { listField: [String] }"),
parse("{ listField }"),
Data(list_field),
)
def accepts_a_list_as_a_list_value():
result = _complete([])
assert result == ({"listField": []}, None)
list_field = ["just an apple"]
result = _complete(list_field)
assert result == ({"listField": list_field}, None)
list_field = ["apple", "banana", "coconut"]
result = _complete(list_field)
assert result == ({"listField": list_field}, None)
def accepts_a_tuple_as_a_list_value():
list_field = ("apple", "banana", "coconut")
result = _complete(list_field)
assert result == ({"listField": list(list_field)}, None)
def accepts_a_set_as_a_list_value():
# Note that sets are not ordered in Python.
list_field = {"apple", "banana", "coconut"}
result = _complete(list_field)
assert result.errors is None
assert isinstance(result.data, dict)
assert list(result.data) == ["listField"]
assert isinstance(result.data["listField"], list)
assert set(result.data["listField"]) == list_field
def accepts_a_generator_as_a_list_value():
def list_field():
yield "one"
yield 2
yield True
assert _complete(list_field()) == (
{"listField": ["one", "2", "true"]},
None,
)
def accepts_a_custom_iterable_as_a_list_value():
class ListField:
def __iter__(self):
self.last = "hello"
return self
def __next__(self):
last = self.last
if last == "stop":
raise StopIteration
self.last = "world" if last == "hello" else "stop"
return last
assert _complete(ListField()) == (
{"listField": ["hello", "world"]},
None,
)
def accepts_function_arguments_as_a_list_value():
def get_args(*args):
return args # actually just a tuple, nothing special in Python
assert _complete(get_args("one", "two")) == (
{"listField": ["one", "two"]},
None,
)
def does_not_accept_a_dict_as_a_list_value():
assert _complete({1: "one", 2: "two"}) == (
{"listField": None},
[
{
"message": "Expected Iterable,"
" but did not find one for field 'Query.listField'.",
"locations": [(1, 3)],
"path": ["listField"],
}
],
)
def does_not_accept_iterable_string_literal_as_a_list_value():
assert _complete("Singular") == (
{"listField": None},
[
{
"message": "Expected Iterable,"
" but did not find one for field 'Query.listField'.",
"locations": [(1, 3)],
"path": ["listField"],
}
],
)
def describe_execute_accepts_async_iterables_as_list_value():
async def _complete(list_field, as_: str = "[String]"):
result = execute(
build_schema(f"type Query {{ listField: {as_} }}"),
parse("{ listField }"),
Data(list_field),
)
assert is_awaitable(result)
return await result
class _IndexData:
def __init__(self, index: int):
self.index = index
async def _complete_object_lists(
resolve: GraphQLFieldResolver, count=3
) -> ExecutionResult:
async def _list_field(
_obj: Any, _info: GraphQLResolveInfo
) -> AsyncGenerator[_IndexData, None]:
for index in range(count):
yield _IndexData(index)
schema = GraphQLSchema(
GraphQLObjectType(
"Query",
{
"listField": GraphQLField(
GraphQLList(
GraphQLObjectType(
"ObjectWrapper",
{
"index": GraphQLField(
GraphQLNonNull(GraphQLString), resolve=resolve
)
},
)
),
resolve=_list_field,
)
},
)
)
result = execute(schema, document=parse("{ listField { index } }"))
assert is_awaitable(result)
return await result
@pytest.mark.asyncio
async def accepts_an_async_generator_as_a_list_value():
async def list_field():
yield "two"
yield 4
yield False
assert await _complete(list_field()) == (
{"listField": ["two", "4", "false"]},
None,
)
@pytest.mark.asyncio
async def accepts_a_custom_async_iterable_as_a_list_value():
class ListField:
def __aiter__(self):
self.last = "hello"
return self
async def __anext__(self):
last = self.last
if last == "stop":
raise StopAsyncIteration
self.last = "world" if last == "hello" else "stop"
return last
assert await _complete(ListField()) == (
{"listField": ["hello", "world"]},
None,
)
@pytest.mark.asyncio
async def handles_an_async_generator_that_throws():
async def list_field():
yield "two"
yield 4
raise RuntimeError("bad")
assert await _complete(list_field()) == (
{"listField": None},
[{"message": "bad", "locations": [(1, 3)], "path": ["listField"]}],
)
@pytest.mark.asyncio
async def handles_an_async_generator_where_intermediate_value_triggers_an_error():
async def list_field():
yield "two"
yield {}
yield 4
assert await _complete(list_field()) == (
{"listField": ["two", None, "4"]},
[
{
"message": "String cannot represent value: {}",
"locations": [(1, 3)],
"path": ["listField", 1],
}
],
)
@pytest.mark.asyncio
async def handles_errors_from_complete_value_in_async_iterables():
async def list_field():
yield "two"
yield {}
assert await _complete(list_field()) == (
{"listField": ["two", None]},
[
{
"message": "String cannot represent value: {}",
"locations": [(1, 3)],
"path": ["listField", 1],
}
],
)
@pytest.mark.asyncio
async def handles_async_functions_from_complete_value_in_async_iterables():
async def resolve(data: _IndexData, _info: GraphQLResolveInfo) -> int:
return data.index
assert await _complete_object_lists(resolve) == (
{"listField": [{"index": "0"}, {"index": "1"}, {"index": "2"}]},
None,
)
@pytest.mark.asyncio
async def handles_single_async_functions_from_complete_value_in_async_iterables():
async def resolve(data: _IndexData, _info: GraphQLResolveInfo) -> int:
return data.index
assert await _complete_object_lists(resolve, 1) == (
{"listField": [{"index": "0"}]},
None,
)
@pytest.mark.asyncio
async def handles_async_errors_from_complete_value_in_async_iterables():
async def resolve(data: _IndexData, _info: GraphQLResolveInfo) -> int:
index = data.index
if index == 2:
raise RuntimeError("bad")
return index
assert await _complete_object_lists(resolve) == (
{"listField": [{"index": "0"}, {"index": "1"}, None]},
[
{
"message": "bad",
"locations": [(1, 15)],
"path": ["listField", 2, "index"],
}
],
)
@pytest.mark.asyncio
async def handles_nulls_yielded_by_async_generator():
async def list_field():
yield 1
yield None
yield 2
data = {"listField": [1, None, 2]}
message = "Cannot return null for non-nullable field Query.listField."
errors = [{"message": message, "locations": [(1, 3)], "path": ["listField", 1]}]
assert await _complete(list_field(), "[Int]") == (data, None)
assert await _complete(list_field(), "[Int]!") == (data, None)
assert await _complete(list_field(), "[Int!]") == ({"listField": None}, errors)
assert await _complete(list_field(), "[Int!]!") == (None, errors)
def describe_execute_handles_list_nullability():
async def _complete(list_field: Any, as_type: str) -> ExecutionResult:
schema = build_schema(f"type Query {{ listField: {as_type} }}")
document = parse("{ listField }")
def execute_query(list_value: Any) -> Any:
return execute(schema, document, Data(list_value))
result = execute_query(list_field)
assert isinstance(result, ExecutionResult)
assert await execute_query(get_async(list_field)) == result
if isinstance(list_field, list):
assert await execute_query(list(map(get_async, list_field))) == result
assert await execute_query(get_async(list_field)) == result
return result
@pytest.mark.asyncio
async def contains_values():
list_field = [1, 2]
assert await _complete(list_field, "[Int]") == ({"listField": [1, 2]}, None)
assert await _complete(list_field, "[Int]!") == ({"listField": [1, 2]}, None)
assert await _complete(list_field, "[Int!]") == ({"listField": [1, 2]}, None)
assert await _complete(list_field, "[Int!]!") == ({"listField": [1, 2]}, None)
@pytest.mark.asyncio
async def contains_null():
list_field = [1, None, 2]
errors = [
{
"message": "Cannot return null for non-nullable field Query.listField.",
"locations": [(1, 3)],
"path": ["listField", 1],
}
]
assert await _complete(list_field, "[Int]") == (
{"listField": [1, None, 2]},
None,
)
assert await _complete(list_field, "[Int]!") == (
{"listField": [1, None, 2]},
None,
)
assert await _complete(list_field, "[Int!]") == ({"listField": None}, errors)
assert await _complete(list_field, "[Int!]!") == (None, errors)
@pytest.mark.asyncio
async def returns_null():
list_field = None
errors = [
{
"message": "Cannot return null for non-nullable field Query.listField.",
"locations": [(1, 3)],
"path": ["listField"],
}
]
assert await _complete(list_field, "[Int]") == ({"listField": None}, None)
assert await _complete(list_field, "[Int]!") == (None, errors)
assert await _complete(list_field, "[Int!]") == ({"listField": None}, None)
assert await _complete(list_field, "[Int!]!") == (None, errors)
@pytest.mark.asyncio
async def contains_error():
list_field = [1, RuntimeError("bad"), 2]
errors = [
{
"message": "bad",
"locations": [(1, 3)],
"path": ["listField", 1],
}
]
assert await _complete(list_field, "[Int]") == (
{"listField": [1, None, 2]},
errors,
)
assert await _complete(list_field, "[Int]!") == (
{"listField": [1, None, 2]},
errors,
)
assert await _complete(list_field, "[Int!]") == (
{"listField": None},
errors,
)
assert await _complete(list_field, "[Int!]!") == (
None,
errors,
)
@pytest.mark.asyncio
async def results_in_errors():
list_field = RuntimeError("bad")
errors = [
{
"message": "bad",
"locations": [(1, 3)],
"path": ["listField"],
}
]
assert await _complete(list_field, "[Int]") == (
{"listField": None},
errors,
)
assert await _complete(list_field, "[Int]!") == (
None,
errors,
)
assert await _complete(list_field, "[Int!]") == (
{"listField": None},
errors,
)
assert await _complete(list_field, "[Int!]!") == (
None,
errors,
)