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 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639
|
from inspect import isawaitable
from typing import Any, NamedTuple, Optional
from pytest import mark
from graphql.execution import ExecutionResult, execute, execute_sync
from graphql.language import parse
from graphql.type import (
GraphQLBoolean,
GraphQLField,
GraphQLInterfaceType,
GraphQLList,
GraphQLObjectType,
GraphQLSchema,
GraphQLString,
GraphQLUnionType,
)
from graphql.utilities import build_schema
def sync_and_async(spec):
"""Decorator for running a test synchronously and asynchronously."""
return mark.asyncio(
mark.parametrize("sync", (True, False), ids=("sync", "async"))(spec)
)
def access_variants(spec):
"""Decorator for tests with dict and object access, including inheritance."""
return mark.asyncio(
mark.parametrize("access", ("dict", "object", "inheritance"))(spec)
)
async def execute_query(
sync: bool, schema: GraphQLSchema, query: str, root_value: Any = None
) -> ExecutionResult:
"""Execute the query against the given schema synchronously or asynchronously."""
assert isinstance(sync, bool)
assert isinstance(schema, GraphQLSchema)
assert isinstance(query, str)
document = parse(query)
result = (execute_sync if sync else execute)(schema, document, root_value)
if not sync and isawaitable(result):
result = await result
assert isinstance(result, ExecutionResult)
return result
def get_is_type_of(type_, sync=True):
"""Get a sync or async is_type_of function for the given type."""
if sync:
def is_type_of(obj, _info):
return isinstance(obj, type_)
else:
async def is_type_of(obj, _info):
return isinstance(obj, type_)
return is_type_of
def get_type_error(sync=True):
"""Get a sync or async is_type_of or type resolver function that raises an error."""
error = RuntimeError("We are testing this error")
if sync:
def type_error(*_args):
raise error
else:
async def type_error(*_args):
raise error
return type_error
class Dog(NamedTuple):
name: str
woofs: bool
class Cat(NamedTuple):
name: str
meows: bool
def describe_execute_handles_synchronous_execution_of_abstract_types():
@sync_and_async
async def is_type_of_used_to_resolve_runtime_type_for_interface(sync):
pet_type = GraphQLInterfaceType("Pet", {"name": GraphQLField(GraphQLString)})
dog_type = GraphQLObjectType(
"Dog",
{
"name": GraphQLField(GraphQLString),
"woofs": GraphQLField(GraphQLBoolean),
},
interfaces=[pet_type],
is_type_of=get_is_type_of(Dog, sync),
)
cat_type = GraphQLObjectType(
"Cat",
{
"name": GraphQLField(GraphQLString),
"meows": GraphQLField(GraphQLBoolean),
},
interfaces=[pet_type],
is_type_of=get_is_type_of(Cat, sync),
)
schema = GraphQLSchema(
GraphQLObjectType(
"Query",
{
"pets": GraphQLField(
GraphQLList(pet_type),
resolve=lambda *_args: [
Dog("Odie", True),
Cat("Garfield", False),
],
)
},
),
types=[cat_type, dog_type],
)
query = """
{
pets {
name
... on Dog {
woofs
}
... on Cat {
meows
}
}
}
"""
assert await execute_query(sync, schema, query) == (
{
"pets": [
{"name": "Odie", "woofs": True},
{"name": "Garfield", "meows": False},
]
},
None,
)
@sync_and_async
async def is_type_of_can_throw(sync):
pet_type = GraphQLInterfaceType("Pet", {"name": GraphQLField(GraphQLString)})
dog_type = GraphQLObjectType(
"Dog",
{
"name": GraphQLField(GraphQLString),
"woofs": GraphQLField(GraphQLBoolean),
},
interfaces=[pet_type],
is_type_of=get_type_error(sync),
)
cat_type = GraphQLObjectType(
"Cat",
{
"name": GraphQLField(GraphQLString),
"meows": GraphQLField(GraphQLBoolean),
},
interfaces=[pet_type],
is_type_of=None,
)
schema = GraphQLSchema(
GraphQLObjectType(
"Query",
{
"pets": GraphQLField(
GraphQLList(pet_type),
resolve=lambda *_args: [
Dog("Odie", True),
Cat("Garfield", False),
],
)
},
),
types=[dog_type, cat_type],
)
query = """
{
pets {
name
... on Dog {
woofs
}
... on Cat {
meows
}
}
}
"""
assert await execute_query(sync, schema, query) == (
{"pets": [None, None]},
[
{
"message": "We are testing this error",
"locations": [(3, 15)],
"path": ["pets", 0],
},
{
"message": "We are testing this error",
"locations": [(3, 15)],
"path": ["pets", 1],
},
],
)
@sync_and_async
async def is_type_of_with_no_suitable_type(sync):
# added in GraphQL-core to improve coverage
pet_type = GraphQLInterfaceType("Pet", {"name": GraphQLField(GraphQLString)})
dog_type = GraphQLObjectType(
"Dog",
{
"name": GraphQLField(GraphQLString),
"woofs": GraphQLField(GraphQLBoolean),
},
interfaces=[pet_type],
is_type_of=get_is_type_of(Cat, sync),
)
schema = GraphQLSchema(
GraphQLObjectType(
"Query",
{
"pets": GraphQLField(
GraphQLList(pet_type),
resolve=lambda *_args: [Dog("Odie", True)],
)
},
),
types=[dog_type],
)
query = """
{
pets {
name
... on Dog {
woofs
}
}
}
"""
message = (
"Abstract type 'Pet' must resolve to an Object type at runtime"
" for field 'Query.pets'."
" Either the 'Pet' type should provide a 'resolve_type' function"
" or each possible type should provide an 'is_type_of' function."
)
assert await execute_query(sync, schema, query) == (
{"pets": [None]},
[{"message": message, "locations": [(3, 15)], "path": ["pets", 0]}],
)
@sync_and_async
async def is_type_of_used_to_resolve_runtime_type_for_union(sync):
dog_type = GraphQLObjectType(
"Dog",
{
"name": GraphQLField(GraphQLString),
"woofs": GraphQLField(GraphQLBoolean),
},
is_type_of=get_is_type_of(Dog, sync),
)
cat_type = GraphQLObjectType(
"Cat",
{
"name": GraphQLField(GraphQLString),
"meows": GraphQLField(GraphQLBoolean),
},
is_type_of=get_is_type_of(Cat, sync),
)
pet_type = GraphQLUnionType("Pet", [cat_type, dog_type])
schema = GraphQLSchema(
GraphQLObjectType(
"Query",
{
"pets": GraphQLField(
GraphQLList(pet_type),
resolve=lambda *_args: [
Dog("Odie", True),
Cat("Garfield", False),
],
)
},
)
)
query = """
{
pets {
... on Dog {
name
woofs
}
... on Cat {
name
meows
}
}
}
"""
assert await execute_query(sync, schema, query) == (
{
"pets": [
{"name": "Odie", "woofs": True},
{"name": "Garfield", "meows": False},
]
},
None,
)
@sync_and_async
async def resolve_type_can_throw(sync):
pet_type = GraphQLInterfaceType(
"Pet",
{"name": GraphQLField(GraphQLString)},
resolve_type=get_type_error(sync),
)
dog_type = GraphQLObjectType(
"Dog",
{
"name": GraphQLField(GraphQLString),
"woofs": GraphQLField(GraphQLBoolean),
},
interfaces=[pet_type],
)
cat_type = GraphQLObjectType(
"Cat",
{
"name": GraphQLField(GraphQLString),
"meows": GraphQLField(GraphQLBoolean),
},
interfaces=[pet_type],
)
schema = GraphQLSchema(
GraphQLObjectType(
"Query",
{
"pets": GraphQLField(
GraphQLList(pet_type),
resolve=lambda *_args: [
Dog("Odie", True),
Cat("Garfield", False),
],
)
},
),
types=[dog_type, cat_type],
)
query = """
{
pets {
name
... on Dog {
woofs
}
... on Cat {
meows
}
}
}
"""
assert await execute_query(sync, schema, query) == (
{"pets": [None, None]},
[
{
"message": "We are testing this error",
"locations": [(3, 15)],
"path": ["pets", 0],
},
{
"message": "We are testing this error",
"locations": [(3, 15)],
"path": ["pets", 1],
},
],
)
def describe_using_typename_on_source_object():
expected = (
{
"pets": [
{"name": "Odie", "woofs": True},
{"name": "Garfield", "meows": False},
]
},
None,
)
# noinspection PyShadowingNames
def _root_value(access: str) -> Any:
if access == "dict":
return {
"pets": [
{"__typename": "Dog", "name": "Odie", "woofs": True},
{"__typename": "Cat", "name": "Garfield", "meows": False},
],
}
if access == "object":
class DogObject:
__typename = "Dog"
name = "Odie"
woofs = True
class CatObject:
__typename = "Cat"
name = "Garfield"
meows = False
class RootValueAsObject:
pets = [DogObject(), CatObject()]
return RootValueAsObject()
if access == "inheritance":
class Pet:
__typename = "Pet"
name: Optional[str] = None
class DogPet(Pet):
__typename = "Dog"
woofs: Optional[bool] = None
class Odie(DogPet):
name = "Odie"
woofs = True
class CatPet(Pet):
__typename = "Cat"
meows: Optional[bool] = None
class Tabby(CatPet):
pass
class Garfield(Tabby):
name = "Garfield"
meows = False
class RootValueWithInheritance:
pets = [Odie(), Garfield()]
return RootValueWithInheritance()
assert False, f"Unknown access variant: {access}" # pragma: no cover
def describe_union_type():
schema = build_schema(
"""
type Query {
pets: [Pet]
}
union Pet = Cat | Dog
type Cat {
name: String
meows: Boolean
}
type Dog {
name: String
woofs: Boolean
}
"""
)
query = """
{
pets {
name
... on Dog {
woofs
}
... on Cat {
meows
}
}
}
"""
@sync_and_async
@access_variants
async def resolve(sync, access):
root_value = _root_value(access)
assert await execute_query(sync, schema, query, root_value) == expected
def describe_interface_type():
schema = build_schema(
"""
type Query {
pets: [Pet]
}
interface Pet {
name: String
}
type Cat implements Pet {
name: String
meows: Boolean
}
type Dog implements Pet {
name: String
woofs: Boolean
}
"""
)
query = """
{
pets {
name
... on Dog {
woofs
}
... on Cat {
meows
}
}
}
"""
@sync_and_async
@access_variants
async def resolve(sync, access):
root_value = _root_value(access)
assert await execute_query(sync, schema, query, root_value) == expected
def resolve_type_on_interface_yields_useful_error():
schema = build_schema(
"""
type Query {
pet: Pet
}
interface Pet {
name: String
}
type Cat implements Pet {
name: String
}
type Dog implements Pet {
name: String
}
"""
)
document = parse(
"""
{
pet {
name
}
}
"""
)
def expect_error(for_type_name: Any, message: str) -> None:
root_value = {"pet": {"__typename": for_type_name}}
result = execute_sync(schema, document, root_value)
expected = (
{"pet": None},
[{"message": message, "locations": [(3, 15)], "path": ["pet"]}],
)
assert result == expected
expect_error(
None,
"Abstract type 'Pet' must resolve"
" to an Object type at runtime for field 'Query.pet'."
" Either the 'Pet' type should provide a 'resolve_type' function"
" or each possible type should provide an 'is_type_of' function.",
)
expect_error(
"Human",
"Abstract type 'Pet' was resolved to a type 'Human'"
" that does not exist inside the schema.",
)
expect_error(
"String", "Abstract type 'Pet' was resolved to a non-object type 'String'."
)
expect_error(
"__Schema",
"Runtime Object type '__Schema' is not a possible type for 'Pet'.",
)
# workaround since we can't inject resolve_type into SDL
schema.get_type("Pet").resolve_type = lambda *_args: [] # type: ignore
expect_error(
None,
"Abstract type 'Pet' must resolve"
" to an Object type at runtime for field 'Query.pet'"
" with value {'__typename': None}, received '[]'.",
)
|