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
|
from pytest import mark
from graphql import graphql, graphql_sync
from .star_wars_schema import star_wars_schema as schema
def describe_star_wars_query_tests():
def describe_basic_queries():
@mark.asyncio
async def correctly_identifies_r2_d2_as_hero_of_the_star_wars_saga():
source = """
query HeroNameQuery {
hero {
name
}
}
"""
result = await graphql(schema=schema, source=source)
assert result == ({"hero": {"name": "R2-D2"}}, None)
@mark.asyncio
async def accepts_positional_arguments_to_graphql():
source = """
query HeroNameQuery {
hero {
name
}
}
"""
result = await graphql(schema, source)
assert result == ({"hero": {"name": "R2-D2"}}, None)
sync_result = graphql_sync(schema, source)
assert sync_result == result
@mark.asyncio
async def allows_us_to_query_for_the_id_and_friends_of_r2_d2():
source = """
query HeroNameAndFriendsQuery {
hero {
id
name
friends {
name
}
}
}
"""
result = await graphql(schema=schema, source=source)
assert result == (
{
"hero": {
"id": "2001",
"name": "R2-D2",
"friends": [
{"name": "Luke Skywalker"},
{"name": "Han Solo"},
{"name": "Leia Organa"},
],
}
},
None,
)
def describe_nested_queries():
@mark.asyncio
async def allows_us_to_query_for_the_friends_of_friends_of_r2_d2():
source = """
query NestedQuery {
hero {
name
friends {
name
appearsIn
friends {
name
}
}
}
}
"""
result = await graphql(schema=schema, source=source)
assert result == (
{
"hero": {
"name": "R2-D2",
"friends": [
{
"name": "Luke Skywalker",
"appearsIn": ["NEW_HOPE", "EMPIRE", "JEDI"],
"friends": [
{"name": "Han Solo"},
{"name": "Leia Organa"},
{"name": "C-3PO"},
{"name": "R2-D2"},
],
},
{
"name": "Han Solo",
"appearsIn": ["NEW_HOPE", "EMPIRE", "JEDI"],
"friends": [
{"name": "Luke Skywalker"},
{"name": "Leia Organa"},
{"name": "R2-D2"},
],
},
{
"name": "Leia Organa",
"appearsIn": ["NEW_HOPE", "EMPIRE", "JEDI"],
"friends": [
{"name": "Luke Skywalker"},
{"name": "Han Solo"},
{"name": "C-3PO"},
{"name": "R2-D2"},
],
},
],
}
},
None,
)
def describe_using_ids_and_query_parameters_to_refetch_objects():
@mark.asyncio
async def allows_us_to_query_for_r2_d2_directly_using_his_id():
source = """
query {
droid(id: "2001") {
name
}
}
"""
result = await graphql(schema=schema, source=source)
assert result == ({"droid": {"name": "R2-D2"}}, None)
@mark.asyncio
async def allows_us_to_query_characters_directly_using_their_id():
source = """
query FetchLukeAndC3POQuery {
human(id: "1000") {
name
}
droid(id: "2000") {
name
}
}
"""
result = await graphql(schema=schema, source=source)
assert result == (
{"human": {"name": "Luke Skywalker"}, "droid": {"name": "C-3PO"}},
None,
)
@mark.asyncio
async def allows_creating_a_generic_query_to_fetch_luke_using_his_id():
source = """
query FetchSomeIDQuery($someId: String!) {
human(id: $someId) {
name
}
}
"""
variable_values = {"someId": "1000"}
result = await graphql(
schema=schema, source=source, variable_values=variable_values
)
assert result == ({"human": {"name": "Luke Skywalker"}}, None)
@mark.asyncio
async def allows_creating_a_generic_query_to_fetch_han_using_his_id():
source = """
query FetchSomeIDQuery($someId: String!) {
human(id: $someId) {
name
}
}
"""
variable_values = {"someId": "1002"}
result = await graphql(
schema=schema, source=source, variable_values=variable_values
)
assert result == ({"human": {"name": "Han Solo"}}, None)
@mark.asyncio
async def generic_query_that_gets_null_back_when_passed_invalid_id():
source = """
query humanQuery($id: String!) {
human(id: $id) {
name
}
}
"""
variable_values = {"id": "not a valid id"}
result = await graphql(
schema=schema, source=source, variable_values=variable_values
)
assert result == ({"human": None}, None)
def describe_using_aliases_to_change_the_key_in_the_response():
@mark.asyncio
async def allows_us_to_query_for_luke_changing_his_key_with_an_alias():
source = """
query FetchLukeAliased {
luke: human(id: "1000") {
name
}
}
"""
result = await graphql(schema=schema, source=source)
assert result == ({"luke": {"name": "Luke Skywalker"}}, None)
@mark.asyncio
async def query_for_luke_and_leia_using_two_root_fields_and_an_alias():
source = """
query FetchLukeAndLeiaAliased {
luke: human(id: "1000") {
name
}
leia: human(id: "1003") {
name
}
}
"""
result = await graphql(schema=schema, source=source)
assert result == (
{"luke": {"name": "Luke Skywalker"}, "leia": {"name": "Leia Organa"}},
None,
)
def describe_uses_fragments_to_express_more_complex_queries():
@mark.asyncio
async def allows_us_to_query_using_duplicated_content():
source = """
query DuplicateFields {
luke: human(id: "1000") {
name
homePlanet
}
leia: human(id: "1003") {
name
homePlanet
}
}
"""
result = await graphql(schema=schema, source=source)
assert result == (
{
"luke": {"name": "Luke Skywalker", "homePlanet": "Tatooine"},
"leia": {"name": "Leia Organa", "homePlanet": "Alderaan"},
},
None,
)
@mark.asyncio
async def allows_us_to_use_a_fragment_to_avoid_duplicating_content():
source = """
query UseFragment {
luke: human(id: "1000") {
...HumanFragment
}
leia: human(id: "1003") {
...HumanFragment
}
}
fragment HumanFragment on Human {
name
homePlanet
}
"""
result = await graphql(schema=schema, source=source)
assert result == (
{
"luke": {"name": "Luke Skywalker", "homePlanet": "Tatooine"},
"leia": {"name": "Leia Organa", "homePlanet": "Alderaan"},
},
None,
)
def describe_using_typename_to_find_the_type_of_an_object():
@mark.asyncio
async def allows_us_to_verify_that_r2_d2_is_a_droid():
source = """
query CheckTypeOfR2 {
hero {
__typename
name
}
}
"""
result = await graphql(schema=schema, source=source)
assert result == ({"hero": {"__typename": "Droid", "name": "R2-D2"}}, None)
@mark.asyncio
async def allows_us_to_verify_that_luke_is_a_human():
source = """
query CheckTypeOfLuke {
hero(episode: EMPIRE) {
__typename
name
}
}
"""
result = await graphql(schema=schema, source=source)
assert result == (
{"hero": {"__typename": "Human", "name": "Luke Skywalker"}},
None,
)
def describe_reporting_errors_raised_in_resolvers():
@mark.asyncio
async def correctly_reports_error_on_accessing_secret_backstory():
source = """
query HeroNameQuery {
hero {
name
secretBackstory
}
}
"""
result = await graphql(schema=schema, source=source)
assert result == (
{"hero": {"name": "R2-D2", "secretBackstory": None}},
[
{
"message": "secretBackstory is secret.",
"locations": [(5, 21)],
"path": ["hero", "secretBackstory"],
}
],
)
@mark.asyncio
async def correctly_reports_error_on_accessing_backstory_in_a_list():
source = """
query HeroNameQuery {
hero {
name
friends {
name
secretBackstory
}
}
}
"""
result = await graphql(schema=schema, source=source)
assert result == (
{
"hero": {
"name": "R2-D2",
"friends": [
{"name": "Luke Skywalker", "secretBackstory": None},
{"name": "Han Solo", "secretBackstory": None},
{"name": "Leia Organa", "secretBackstory": None},
],
}
},
[
{
"message": "secretBackstory is secret.",
"locations": [(7, 23)],
"path": ["hero", "friends", 0, "secretBackstory"],
},
{
"message": "secretBackstory is secret.",
"locations": [(7, 23)],
"path": ["hero", "friends", 1, "secretBackstory"],
},
{
"message": "secretBackstory is secret.",
"locations": [(7, 23)],
"path": ["hero", "friends", 2, "secretBackstory"],
},
],
)
@mark.asyncio
async def correctly_reports_error_on_accessing_through_an_alias():
source = """
query HeroNameQuery {
mainHero: hero {
name
story: secretBackstory
}
}
"""
result = await graphql(schema=schema, source=source)
assert result == (
{"mainHero": {"name": "R2-D2", "story": None}},
[
{
"message": "secretBackstory is secret.",
"locations": [(5, 21)],
"path": ["mainHero", "story"],
}
],
)
|