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
|
from functools import partial
from graphql.utilities import build_schema
from graphql.validation import KnownDirectivesRule
from .harness import assert_validation_errors, assert_sdl_validation_errors
schema_with_directives = build_schema(
"""
type Query {
dummy: String
}
directive @onQuery on QUERY
directive @onMutation on MUTATION
directive @onSubscription on SUBSCRIPTION
directive @onField on FIELD
directive @onFragmentDefinition on FRAGMENT_DEFINITION
directive @onFragmentSpread on FRAGMENT_SPREAD
directive @onInlineFragment on INLINE_FRAGMENT
directive @onVariableDefinition on VARIABLE_DEFINITION
"""
)
schema_with_sdl_directives = build_schema(
"""
directive @onSchema on SCHEMA
directive @onScalar on SCALAR
directive @onObject on OBJECT
directive @onFieldDefinition on FIELD_DEFINITION
directive @onArgumentDefinition on ARGUMENT_DEFINITION
directive @onInterface on INTERFACE
directive @onUnion on UNION
directive @onEnum on ENUM
directive @onEnumValue on ENUM_VALUE
directive @onInputObject on INPUT_OBJECT
directive @onInputFieldDefinition on INPUT_FIELD_DEFINITION
"""
)
assert_errors = partial(
assert_validation_errors, KnownDirectivesRule, schema=schema_with_directives
)
assert_valid = partial(assert_errors, errors=[])
assert_sdl_errors = partial(assert_sdl_validation_errors, KnownDirectivesRule)
assert_sdl_valid = partial(assert_sdl_errors, errors=[])
def describe_known_directives():
def with_no_directives():
assert_valid(
"""
query Foo {
name
...Frag
}
fragment Frag on Dog {
name
}
"""
)
def with_standard_directives():
assert_valid(
"""
{
human @skip(if: false) {
name
pets {
... on Dog @include(if: true) {
name
}
}
}
}
"""
)
def with_unknown_directive():
assert_errors(
"""
{
human @unknown(directive: "value") {
name
}
}
""",
[{"message": "Unknown directive '@unknown'.", "locations": [(3, 21)]}],
)
def with_many_unknown_directives():
assert_errors(
"""
{
__typename @unknown
human @unknown {
name
pets @unknown {
name
}
}
}
""",
[
{"message": "Unknown directive '@unknown'.", "locations": [(3, 26)]},
{"message": "Unknown directive '@unknown'.", "locations": [(4, 21)]},
{"message": "Unknown directive '@unknown'.", "locations": [(6, 22)]},
],
)
def with_well_placed_directives():
assert_valid(
"""
query ($var: Boolean @onVariableDefinition) @onQuery {
human @onField {
...Frag @onFragmentSpread
... @onInlineFragment {
name @onField
}
}
}
mutation @onMutation {
someField @onField
}
subscription @onSubscription {
someField @onField
}
fragment Frag on Human @onFragmentDefinition {
name @onField
}
"""
)
def with_misplaced_directives():
assert_errors(
"""
query ($var: Boolean @onQuery) @onMutation {
human @onQuery {
...Frag @onQuery
... @onQuery {
name @onQuery
}
}
}
mutation @onQuery {
someField @onQuery
}
subscription @onQuery {
someField @onQuery
}
fragment Frag on Human @onQuery {
name @onQuery
}
""",
[
{
"message": "Directive '@onQuery'"
" may not be used on variable definition.",
"locations": [(2, 34)],
},
{
"message": "Directive '@onMutation' may not be used on query.",
"locations": [(2, 44)],
},
{
"message": "Directive '@onQuery' may not be used on field.",
"locations": [(3, 21)],
},
{
"message": "Directive '@onQuery'"
" may not be used on fragment spread.",
"locations": [(4, 25)],
},
{
"message": "Directive '@onQuery'"
" may not be used on inline fragment.",
"locations": [(5, 21)],
},
{
"message": "Directive '@onQuery' may not be used on field.",
"locations": [(6, 24)],
},
{
"message": "Directive '@onQuery' may not be used on mutation.",
"locations": [(11, 22)],
},
{
"message": "Directive '@onQuery' may not be used on field.",
"locations": [(12, 25)],
},
{
"message": "Directive '@onQuery' may not be used on subscription.",
"locations": [(15, 26)],
},
{
"message": "Directive '@onQuery' may not be used on field.",
"locations": [(16, 25)],
},
{
"message": "Directive '@onQuery'"
" may not be used on fragment definition.",
"locations": [(19, 36)],
},
{
"message": "Directive '@onQuery' may not be used on field.",
"locations": [(20, 20)],
},
],
)
def with_misplaced_variable_definition_directive():
assert_errors(
"""
query Foo($var: Boolean @onField) {
name
}
""",
[
{
"message": "Directive '@onField'"
" may not be used on variable definition.",
"locations": [(2, 37)],
},
],
)
def describe_within_sdl():
def with_directive_defined_inside_sdl():
assert_sdl_valid(
"""
type Query {
foo: String @test
}
directive @test on FIELD_DEFINITION
"""
)
def with_standard_directive():
assert_sdl_valid(
"""
type Query {
foo: String @deprecated
}
"""
)
def with_overridden_standard_directive():
assert_sdl_valid(
"""
schema @deprecated {
query: Query
}
directive @deprecated on SCHEMA
"""
)
def with_directive_defined_in_schema_extension():
schema = build_schema(
"""
type Query {
foo: String
}
"""
)
assert_sdl_valid(
"""
directive @test on OBJECT
extend type Query @test
""",
schema=schema,
)
def with_directive_used_in_schema_extension():
schema = build_schema(
"""
directive @test on OBJECT
type Query {
foo: String
}
"""
)
assert_sdl_valid(
"""
extend type Query @test
""",
schema=schema,
)
def with_unknown_directive_in_schema_extension():
schema = build_schema(
"""
type Query {
foo: String
}
"""
)
assert_sdl_errors(
"""
extend type Query @unknown
""",
[{"message": "Unknown directive '@unknown'.", "locations": [(2, 35)]}],
schema,
)
def with_well_placed_directives():
assert_sdl_valid(
"""
type MyObj implements MyInterface @onObject {
myField(myArg: Int @onArgumentDefinition): String @onFieldDefinition
}
extend type MyObj @onObject
scalar MyScalar @onScalar
extend scalar MyScalar @onScalar
interface MyInterface @onInterface {
myField(myArg: Int @onArgumentDefinition): String @onFieldDefinition
}
extend interface MyInterface @onInterface
union MyUnion @onUnion = MyObj | Other
extend union MyUnion @onUnion
enum MyEnum @onEnum {
MY_VALUE @onEnumValue
}
extend enum MyEnum @onEnum
input MyInput @onInputObject {
myField: Int @onInputFieldDefinition
}
extend input MyInput @onInputObject
schema @onSchema {
query: MyQuery
}
extend schema @onSchema
""",
schema=schema_with_sdl_directives,
)
def with_misplaced_directives():
assert_sdl_errors(
"""
type MyObj implements MyInterface @onInterface {
myField(myArg: Int @onInputFieldDefinition): String @onInputFieldDefinition
}
scalar MyScalar @onEnum
interface MyInterface @onObject {
myField(myArg: Int @onInputFieldDefinition): String @onInputFieldDefinition
}
union MyUnion @onEnumValue = MyObj | Other
enum MyEnum @onScalar {
MY_VALUE @onUnion
}
input MyInput @onEnum {
myField: Int @onArgumentDefinition
}
schema @onObject {
query: MyQuery
}
extend schema @onObject
""", # noqa: E501
[
{
"message": "Directive '@onInterface'"
" may not be used on object.",
"locations": [(2, 51)],
},
{
"message": "Directive '@onInputFieldDefinition'"
" may not be used on argument definition.",
"locations": [(3, 38)],
},
{
"message": "Directive '@onInputFieldDefinition'"
" may not be used on field definition.",
"locations": [(3, 71)],
},
{
"message": "Directive '@onEnum' may not be used on scalar.",
"locations": [(6, 33)],
},
{
"message": "Directive '@onObject'"
" may not be used on interface.",
"locations": [(8, 39)],
},
{
"message": "Directive '@onInputFieldDefinition'"
" may not be used on argument definition.",
"locations": [(9, 38)],
},
{
"message": "Directive '@onInputFieldDefinition'"
" may not be used on field definition.",
"locations": [(9, 71)],
},
{
"message": "Directive '@onEnumValue' may not be used on union.",
"locations": [(12, 31)],
},
{
"message": "Directive '@onScalar' may not be used on enum.",
"locations": [(14, 29)],
},
{
"message": "Directive '@onUnion'"
" may not be used on enum value.",
"locations": [(15, 28)],
},
{
"message": "Directive '@onEnum'"
" may not be used on input object.",
"locations": [(18, 31)],
},
{
"message": "Directive '@onArgumentDefinition'"
" may not be used on input field definition.",
"locations": [(19, 32)],
},
{
"message": "Directive '@onObject' may not be used on schema.",
"locations": [(22, 24)],
},
{
"message": "Directive '@onObject' may not be used on schema.",
"locations": [(26, 31)],
},
],
schema_with_sdl_directives,
)
|