-
-
Notifications
You must be signed in to change notification settings - Fork 138
/
Copy pathtest_lists.py
197 lines (172 loc) · 6.23 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
from typing import Any
from pytest import mark
from graphql.execution import execute, execute_sync, ExecutionResult
from graphql.language import parse
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_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_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_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
@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)
@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)
@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)
@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,
)
@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,
)