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
|
from pytest import mark
from graphql import (
graphql,
graphql_sync,
print_schema,
print_type,
GraphQLField,
GraphQLFieldMap,
GraphQLInputField,
GraphQLInt,
GraphQLObjectType,
GraphQLSchema,
)
from graphql_relay import mutation_with_client_mutation_id
from ..utils import dedent
class Result:
# noinspection PyPep8Naming
def __init__(self, result, clientMutationId=None):
self.clientMutationId = clientMutationId
self.result = result
def dummy_resolve(_info, inputData=None, clientMutationId=None):
return Result(inputData or 1, clientMutationId)
async def dummy_resolve_async(_info, inputData=None, clientMutationId=None):
return Result(inputData or 1, clientMutationId)
def wrap_in_schema(mutation_fields: GraphQLFieldMap) -> GraphQLSchema:
query_type = GraphQLObjectType("Query", fields={"dummy": GraphQLField(GraphQLInt)})
mutation_type = GraphQLObjectType("Mutation", fields=mutation_fields)
return GraphQLSchema(query_type, mutation_type)
def describe_mutation_with_client_mutation_id():
def requires_an_argument():
some_mutation = mutation_with_client_mutation_id(
"SomeMutation", {}, {"result": GraphQLField(GraphQLInt)}, dummy_resolve
)
schema = wrap_in_schema({"someMutation": some_mutation})
source = """
mutation {
someMutation {
result
}
}
"""
assert graphql_sync(schema, source) == (
None,
[
{
"message": "Field 'someMutation' argument 'input'"
" of type 'SomeMutationInput!' is required,"
" but it was not provided.",
"locations": [(3, 15)],
}
],
)
def returns_the_same_client_mutation_id():
some_mutation = mutation_with_client_mutation_id(
"SomeMutation", {}, {"result": GraphQLField(GraphQLInt)}, dummy_resolve
)
schema = wrap_in_schema({"someMutation": some_mutation})
source = """
mutation {
someMutation(input: {clientMutationId: "abc"}) {
result
clientMutationId
}
}
"""
assert graphql_sync(schema, source) == (
{"someMutation": {"result": 1, "clientMutationId": "abc"}},
None,
)
def supports_thunks_as_input_and_output_fields():
some_mutation = mutation_with_client_mutation_id(
"SomeMutation",
{"inputData": GraphQLInputField(GraphQLInt)},
{"result": GraphQLField(GraphQLInt)},
dummy_resolve,
)
schema = wrap_in_schema({"someMutation": some_mutation})
source = """
mutation {
someMutation(input: {inputData: 1234, clientMutationId: "abc"}) {
result
clientMutationId
}
}
"""
assert graphql_sync(schema, source) == (
{
"someMutation": {
"result": 1234,
"clientMutationId": "abc",
}
},
None,
)
@mark.asyncio
async def supports_async_mutations():
some_mutation = mutation_with_client_mutation_id(
"SomeMutation",
{},
{"result": GraphQLField(GraphQLInt)},
dummy_resolve_async,
)
schema = wrap_in_schema({"someMutation": some_mutation})
source = """
mutation {
someMutation(input: {clientMutationId: "abc"}) {
result
clientMutationId
}
}
"""
assert await graphql(schema, source) == (
{"someMutation": {"result": 1, "clientMutationId": "abc"}},
None,
)
def can_access_root_value():
some_mutation = mutation_with_client_mutation_id( # pragma: no cover
"SomeMutation",
{},
{"result": GraphQLField(GraphQLInt)},
lambda info, clientMutationId=None: Result(
info.root_value, clientMutationId
),
)
wrapper_type = GraphQLObjectType("WrapperType", {"someMutation": some_mutation})
assert print_type(wrapper_type) == dedent(
"""
type WrapperType {
someMutation(input: SomeMutationInput!): SomeMutationPayload
}
"""
)
def supports_mutations_returning_null():
def null_resolve(_info, **_input):
return None
some_mutation = mutation_with_client_mutation_id(
"SomeMutation", {}, {"result": GraphQLField(GraphQLInt)}, null_resolve
)
schema = wrap_in_schema({"someMutation": some_mutation})
source = """
mutation {
someMutation(input: {clientMutationId: "abc"}) {
result
clientMutationId
}
}
"""
assert graphql_sync(schema, source) == (
{"someMutation": {"result": None, "clientMutationId": "abc"}},
None,
)
@mark.asyncio
async def supports_async_mutations_returning_null():
async def null_resolve(_info, **_input):
return None
some_mutation = mutation_with_client_mutation_id(
"SomeMutation",
{},
{"result": GraphQLField(GraphQLInt)},
null_resolve,
)
schema = wrap_in_schema({"someMutation": some_mutation})
source = """
mutation {
someMutation(input: {clientMutationId: "abc"}) {
result
clientMutationId
}
}
"""
assert await graphql(schema, source) == (
{"someMutation": {"result": None, "clientMutationId": "abc"}},
None,
)
def supports_mutations_returning_custom_classes():
class SomeClass:
@staticmethod
def get_some_generated_data():
return 1
@classmethod
def mutate(cls, _info, **_input):
return cls()
@classmethod
def resolve(cls, obj, _info):
assert isinstance(obj, cls)
return obj.get_some_generated_data()
some_mutation = mutation_with_client_mutation_id(
"SomeMutation",
{},
{"result": GraphQLField(GraphQLInt, resolve=SomeClass.resolve)},
SomeClass.mutate,
)
schema = wrap_in_schema({"someMutation": some_mutation})
source = """
mutation {
someMutation(input: {clientMutationId: "abc"}) {
result
clientMutationId
}
}
"""
assert graphql_sync(schema, source) == (
{"someMutation": {"result": 1, "clientMutationId": "abc"}},
None,
)
def supports_mutations_returning_mappings():
def dict_mutate(_info, **_input):
return {"some_data": 1}
def dict_resolve(obj, _info):
return obj["some_data"]
some_mutation = mutation_with_client_mutation_id(
"SomeMutation",
{},
{"result": GraphQLField(GraphQLInt, resolve=dict_resolve)},
dict_mutate,
)
schema = wrap_in_schema({"someMutation": some_mutation})
source = """
mutation {
someMutation(input: {clientMutationId: "abc"}) {
result
clientMutationId
}
}
"""
assert graphql_sync(schema, source) == (
{"someMutation": {"result": 1, "clientMutationId": "abc"}},
None,
)
@mark.asyncio
async def supports_async_mutations_returning_mappings():
async def dict_mutate(_info, **_input):
return {"some_data": 1}
async def dict_resolve(obj, _info):
return obj["some_data"]
some_mutation = mutation_with_client_mutation_id(
"SomeMutation",
{},
{"result": GraphQLField(GraphQLInt, resolve=dict_resolve)},
dict_mutate,
)
schema = wrap_in_schema({"someMutation": some_mutation})
source = """
mutation {
someMutation(input: {clientMutationId: "abc"}) {
result
clientMutationId
}
}
"""
assert await graphql(schema, source) == (
{"someMutation": {"result": 1, "clientMutationId": "abc"}},
None,
)
def generates_correct_types():
some_mutation = mutation_with_client_mutation_id(
"SomeMutation",
description="Some Mutation Description",
input_fields={},
output_fields={"result": GraphQLField(GraphQLInt)},
mutate_and_get_payload=dummy_resolve,
deprecation_reason="Just because",
)
schema = wrap_in_schema({"someMutation": some_mutation})
assert print_schema(schema) == dedent(
'''
type Query {
dummy: Int
}
type Mutation {
"""Some Mutation Description"""
someMutation(input: SomeMutationInput!): SomeMutationPayload @deprecated(reason: "Just because")
}
type SomeMutationPayload {
result: Int
clientMutationId: String
}
input SomeMutationInput {
clientMutationId: String
}
''' # noqa: E501
)
|