-
-
Notifications
You must be signed in to change notification settings - Fork 138
/
Copy pathtest_value_from_ast.py
265 lines (233 loc) · 11 KB
/
test_value_from_ast.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
from __future__ import annotations
from math import isnan, nan
from typing import Any
from graphql.language import ValueNode, parse_value
from graphql.pyutils import Undefined
from graphql.type import (
GraphQLBoolean,
GraphQLEnumType,
GraphQLFloat,
GraphQLID,
GraphQLInputField,
GraphQLInputObjectType,
GraphQLInputType,
GraphQLInt,
GraphQLList,
GraphQLNonNull,
GraphQLScalarType,
GraphQLString,
)
from graphql.utilities import value_from_ast
def describe_value_from_ast():
def _value_from(
value_text: str,
type_: GraphQLInputType,
variables: dict[str, Any] | None = None,
):
ast = parse_value(value_text)
return value_from_ast(ast, type_, variables)
def rejects_empty_input():
# noinspection PyTypeChecker
assert value_from_ast(None, GraphQLBoolean) is Undefined
def converts_according_to_input_coercion_rules():
assert _value_from("true", GraphQLBoolean) is True
assert _value_from("false", GraphQLBoolean) is False
assert _value_from("123", GraphQLInt) == 123
assert _value_from("123", GraphQLFloat) == 123
assert _value_from("123.456", GraphQLFloat) == 123.456
assert _value_from('"abc123"', GraphQLString) == "abc123"
assert _value_from("123456", GraphQLID) == "123456"
assert _value_from('"123456"', GraphQLID) == "123456"
def does_not_convert_when_input_coercion_rules_reject_a_value():
assert _value_from("123", GraphQLBoolean) is Undefined
assert _value_from("123.456", GraphQLInt) is Undefined
assert _value_from("true", GraphQLInt) is Undefined
assert _value_from('"123"', GraphQLInt) is Undefined
assert _value_from('"123"', GraphQLFloat) is Undefined
assert _value_from("123", GraphQLString) is Undefined
assert _value_from("true", GraphQLString) is Undefined
assert _value_from("123.456", GraphQLID) is Undefined
def convert_using_parse_literal_from_a_custom_scalar_type():
def pass_through_parse_literal(node, _vars=None):
assert node.kind == "string_value"
return node.value
pass_through_scalar = GraphQLScalarType(
"PassThroughScalar",
parse_literal=pass_through_parse_literal,
parse_value=lambda value: value, # pragma: no cover
)
assert _value_from('"value"', pass_through_scalar) == "value"
def throw_parse_literal(_node: ValueNode, _vars=None):
raise RuntimeError("Test")
throw_scalar = GraphQLScalarType(
"ThrowScalar",
parse_literal=throw_parse_literal,
parse_value=lambda value: value, # pragma: no cover
)
assert _value_from("value", throw_scalar) is Undefined
def undefined_parse_literal(_node: ValueNode, _vars=None):
return Undefined
return_undefined_scalar = GraphQLScalarType(
"ReturnUndefinedScalar",
parse_literal=undefined_parse_literal,
parse_value=lambda value: value, # pragma: no cover
)
assert _value_from("value", return_undefined_scalar) is Undefined
def converts_enum_values_according_to_input_coercion_rules():
test_enum = GraphQLEnumType(
"TestColor",
{
"RED": 1,
"GREEN": 2,
"BLUE": 3,
"NULL": None,
"NAN": nan,
"NO_CUSTOM_VALUE": Undefined,
},
)
assert _value_from("RED", test_enum) == 1
assert _value_from("BLUE", test_enum) == 3
assert _value_from("YELLOW", test_enum) is Undefined
assert _value_from("3", test_enum) is Undefined
assert _value_from('"BLUE"', test_enum) is Undefined
assert _value_from("null", test_enum) is None
assert _value_from("NULL", test_enum) is None
assert _value_from("NULL", GraphQLNonNull(test_enum)) is None
assert isnan(_value_from("NAN", test_enum))
assert _value_from("NO_CUSTOM_VALUE", test_enum) is Undefined
# make a Boolean!
non_null_bool = GraphQLNonNull(GraphQLBoolean)
# make a [Boolean]
list_of_bool = GraphQLList(GraphQLBoolean)
# make a [Boolean!]
list_of_non_null_bool = GraphQLList(non_null_bool)
# make a [Boolean]!
non_null_list_of_bool = GraphQLNonNull(list_of_bool)
# make a [Boolean!]!
non_null_list_of_non_mull_bool = GraphQLNonNull(list_of_non_null_bool)
def coerces_to_null_unless_non_null():
assert _value_from("null", GraphQLBoolean) is None
assert _value_from("null", non_null_bool) is Undefined
def coerces_lists_of_values():
assert _value_from("true", list_of_bool) == [True]
assert _value_from("123", list_of_bool) is Undefined
assert _value_from("null", list_of_bool) is None
assert _value_from("[true, false]", list_of_bool) == [True, False]
assert _value_from("[true, 123]", list_of_bool) is Undefined
assert _value_from("[true, null]", list_of_bool) == [True, None]
assert _value_from("{ true: true }", list_of_bool) is Undefined
def coerces_non_null_lists_of_values():
assert _value_from("true", non_null_list_of_bool) == [True]
assert _value_from("123", non_null_list_of_bool) is Undefined
assert _value_from("null", non_null_list_of_bool) is Undefined
assert _value_from("[true, false]", non_null_list_of_bool) == [True, False]
assert _value_from("[true, 123]", non_null_list_of_bool) is Undefined
assert _value_from("[true, null]", non_null_list_of_bool) == [True, None]
def coerces_lists_of_non_null_values():
assert _value_from("true", list_of_non_null_bool) == [True]
assert _value_from("123", list_of_non_null_bool) is Undefined
assert _value_from("null", list_of_non_null_bool) is None
assert _value_from("[true, false]", list_of_non_null_bool) == [True, False]
assert _value_from("[true, 123]", list_of_non_null_bool) is Undefined
assert _value_from("[true, null]", list_of_non_null_bool) is Undefined
def coerces_non_null_lists_of_non_null_values():
assert _value_from("true", non_null_list_of_non_mull_bool) == [True]
assert _value_from("123", non_null_list_of_non_mull_bool) is Undefined
assert _value_from("null", non_null_list_of_non_mull_bool) is Undefined
assert _value_from("[true, false]", non_null_list_of_non_mull_bool) == [
True,
False,
]
assert _value_from("[true, 123]", non_null_list_of_non_mull_bool) is Undefined
assert _value_from("[true, null]", non_null_list_of_non_mull_bool) is Undefined
test_input_obj = GraphQLInputObjectType(
"TestInput",
{
"int": GraphQLInputField(GraphQLInt, default_value=42),
"bool": GraphQLInputField(GraphQLBoolean),
"requiredBool": GraphQLInputField(non_null_bool),
},
)
test_one_of_input_obj = GraphQLInputObjectType(
"TestOneOfInput",
{
"a": GraphQLInputField(GraphQLString),
"b": GraphQLInputField(GraphQLString),
},
is_one_of=True,
)
def coerces_input_objects_according_to_input_coercion_rules():
assert _value_from("null", test_input_obj) is None
assert _value_from("[]", test_input_obj) is Undefined
assert _value_from("123", test_input_obj) is Undefined
assert _value_from("{ int: 123, requiredBool: false }", test_input_obj) == {
"int": 123,
"requiredBool": False,
}
assert _value_from("{ bool: true, requiredBool: false }", test_input_obj) == {
"int": 42,
"bool": True,
"requiredBool": False,
}
assert (
_value_from("{ int: true, requiredBool: true }", test_input_obj)
is Undefined
)
assert _value_from("{ requiredBool: null }", test_input_obj) is Undefined
assert _value_from("{ bool: true }", test_input_obj) is Undefined
assert _value_from('{ a: "abc" }', test_one_of_input_obj) == {"a": "abc"}
assert _value_from('{ b: "def" }', test_one_of_input_obj) == {"b": "def"}
assert _value_from('{ a: "abc", b: None }', test_one_of_input_obj) is Undefined
assert _value_from("{ a: null }", test_one_of_input_obj) is Undefined
assert _value_from("{ a: 1 }", test_one_of_input_obj) is Undefined
assert _value_from('{ a: "abc", b: "def" }', test_one_of_input_obj) is Undefined
assert _value_from("{}", test_one_of_input_obj) is Undefined
assert _value_from('{ c: "abc" }', test_one_of_input_obj) is Undefined
def accepts_variable_values_assuming_already_coerced():
assert _value_from("$var", GraphQLBoolean, {}) is Undefined
assert _value_from("$var", GraphQLBoolean, {"var": True}) is True
assert _value_from("$var", GraphQLBoolean, {"var": None}) is None
assert _value_from("$var", non_null_bool, {"var": None}) is Undefined
def asserts_variables_are_provided_as_items_in_lists():
assert _value_from("[ $foo ]", list_of_bool, {}) == [None]
assert _value_from("[ $foo ]", list_of_non_null_bool, {}) is Undefined
assert _value_from("[ $foo ]", list_of_non_null_bool, {"foo": True}) == [True]
# Note: variables are expected to have already been coerced, so we
# do not expect the singleton wrapping behavior for variables.
assert _value_from("$foo", list_of_non_null_bool, {"foo": True}) is True
assert _value_from("$foo", list_of_non_null_bool, {"foo": [True]}) == [True]
def omits_input_object_fields_for_unprovided_variables():
assert _value_from(
"{ int: $foo, bool: $foo, requiredBool: true }", test_input_obj, {}
) == {"int": 42, "requiredBool": True}
assert _value_from("{ requiredBool: $foo }", test_input_obj, {}) is Undefined
assert _value_from("{ requiredBool: $foo }", test_input_obj, {"foo": True}) == {
"int": 42,
"requiredBool": True,
}
def transforms_names_using_out_name():
# This is an extension of GraphQL.js.
complex_input_obj = GraphQLInputObjectType(
"Complex",
{
"realPart": GraphQLInputField(GraphQLFloat, out_name="real_part"),
"imagPart": GraphQLInputField(
GraphQLFloat, default_value=0, out_name="imag_part"
),
},
)
assert _value_from("{ realPart: 1 }", complex_input_obj) == {
"real_part": 1,
"imag_part": 0,
}
def transforms_values_with_out_type():
# This is an extension of GraphQL.js.
complex_input_obj = GraphQLInputObjectType(
"Complex",
{
"real": GraphQLInputField(GraphQLFloat),
"imag": GraphQLInputField(GraphQLFloat),
},
out_type=lambda value: complex(value["real"], value["imag"]),
)
assert _value_from("{ real: 1, imag: 2 }", complex_input_obj) == 1 + 2j