graphql 1.9.11 → 1.9.12
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/graphql/analysis/ast/query_complexity.rb +0 -8
- data/lib/graphql/analysis/ast/query_depth.rb +0 -8
- data/lib/graphql/analysis/ast/visitor.rb +26 -24
- data/lib/graphql/execution.rb +1 -0
- data/lib/graphql/execution/errors.rb +60 -0
- data/lib/graphql/execution/interpreter/runtime.rb +21 -17
- data/lib/graphql/static_validation/rules/fields_will_merge.rb +15 -8
- data/lib/graphql/version.rb +1 -1
- metadata +5 -556
- data/spec/dummy/Gemfile +0 -12
- data/spec/dummy/README.md +0 -24
- data/spec/dummy/Rakefile +0 -7
- data/spec/dummy/app/assets/config/manifest.js +0 -1
- data/spec/dummy/app/assets/javascripts/application.js +0 -66
- data/spec/dummy/app/channels/application_cable/channel.rb +0 -5
- data/spec/dummy/app/channels/application_cable/connection.rb +0 -5
- data/spec/dummy/app/channels/graphql_channel.rb +0 -116
- data/spec/dummy/app/controllers/application_controller.rb +0 -4
- data/spec/dummy/app/controllers/pages_controller.rb +0 -5
- data/spec/dummy/app/helpers/application_helper.rb +0 -3
- data/spec/dummy/app/jobs/application_job.rb +0 -3
- data/spec/dummy/app/views/layouts/application.html.erb +0 -12
- data/spec/dummy/app/views/pages/show.html +0 -16
- data/spec/dummy/bin/bundle +0 -4
- data/spec/dummy/bin/rails +0 -5
- data/spec/dummy/bin/rake +0 -5
- data/spec/dummy/bin/setup +0 -31
- data/spec/dummy/bin/update +0 -27
- data/spec/dummy/bin/yarn +0 -12
- data/spec/dummy/config.ru +0 -6
- data/spec/dummy/config/application.rb +0 -30
- data/spec/dummy/config/boot.rb +0 -4
- data/spec/dummy/config/cable.yml +0 -10
- data/spec/dummy/config/environment.rb +0 -6
- data/spec/dummy/config/environments/development.rb +0 -40
- data/spec/dummy/config/environments/production.rb +0 -76
- data/spec/dummy/config/environments/test.rb +0 -37
- data/spec/dummy/config/initializers/application_controller_renderer.rb +0 -9
- data/spec/dummy/config/initializers/backtrace_silencers.rb +0 -8
- data/spec/dummy/config/initializers/cookies_serializer.rb +0 -6
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +0 -5
- data/spec/dummy/config/initializers/inflections.rb +0 -17
- data/spec/dummy/config/initializers/mime_types.rb +0 -5
- data/spec/dummy/config/initializers/wrap_parameters.rb +0 -10
- data/spec/dummy/config/locales/en.yml +0 -33
- data/spec/dummy/config/puma.rb +0 -57
- data/spec/dummy/config/routes.rb +0 -4
- data/spec/dummy/config/secrets.yml +0 -32
- data/spec/dummy/package.json +0 -5
- data/spec/dummy/public/404.html +0 -67
- data/spec/dummy/public/422.html +0 -67
- data/spec/dummy/public/500.html +0 -66
- data/spec/dummy/public/apple-touch-icon-precomposed.png +0 -0
- data/spec/dummy/public/apple-touch-icon.png +0 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/public/robots.txt +0 -1
- data/spec/dummy/test/application_system_test_case.rb +0 -6
- data/spec/dummy/test/system/action_cable_subscription_test.rb +0 -45
- data/spec/dummy/test/test_helper.rb +0 -4
- data/spec/fixtures/upgrader/account.original.rb +0 -19
- data/spec/fixtures/upgrader/account.transformed.rb +0 -20
- data/spec/fixtures/upgrader/blame_range.original.rb +0 -43
- data/spec/fixtures/upgrader/blame_range.transformed.rb +0 -30
- data/spec/fixtures/upgrader/date_time.original.rb +0 -24
- data/spec/fixtures/upgrader/date_time.transformed.rb +0 -23
- data/spec/fixtures/upgrader/delete_project.original.rb +0 -28
- data/spec/fixtures/upgrader/delete_project.transformed.rb +0 -27
- data/spec/fixtures/upgrader/gist_order_field.original.rb +0 -14
- data/spec/fixtures/upgrader/gist_order_field.transformed.rb +0 -13
- data/spec/fixtures/upgrader/increment_count.original.rb +0 -59
- data/spec/fixtures/upgrader/increment_count.transformed.rb +0 -50
- data/spec/fixtures/upgrader/mutation.original.rb +0 -28
- data/spec/fixtures/upgrader/mutation.transformed.rb +0 -28
- data/spec/fixtures/upgrader/photo.original.rb +0 -10
- data/spec/fixtures/upgrader/photo.transformed.rb +0 -12
- data/spec/fixtures/upgrader/release_order.original.rb +0 -15
- data/spec/fixtures/upgrader/release_order.transformed.rb +0 -14
- data/spec/fixtures/upgrader/starrable.original.rb +0 -49
- data/spec/fixtures/upgrader/starrable.transformed.rb +0 -46
- data/spec/fixtures/upgrader/subscribable.original.rb +0 -55
- data/spec/fixtures/upgrader/subscribable.transformed.rb +0 -51
- data/spec/fixtures/upgrader/type_x.original.rb +0 -65
- data/spec/fixtures/upgrader/type_x.transformed.rb +0 -56
- data/spec/graphql/analysis/analyze_query_spec.rb +0 -261
- data/spec/graphql/analysis/ast/field_usage_spec.rb +0 -51
- data/spec/graphql/analysis/ast/max_query_complexity_spec.rb +0 -120
- data/spec/graphql/analysis/ast/max_query_depth_spec.rb +0 -134
- data/spec/graphql/analysis/ast/query_complexity_spec.rb +0 -299
- data/spec/graphql/analysis/ast/query_depth_spec.rb +0 -108
- data/spec/graphql/analysis/ast_spec.rb +0 -296
- data/spec/graphql/analysis/field_usage_spec.rb +0 -62
- data/spec/graphql/analysis/max_query_complexity_spec.rb +0 -102
- data/spec/graphql/analysis/max_query_depth_spec.rb +0 -103
- data/spec/graphql/analysis/query_complexity_spec.rb +0 -301
- data/spec/graphql/analysis/query_depth_spec.rb +0 -81
- data/spec/graphql/argument_spec.rb +0 -159
- data/spec/graphql/authorization_spec.rb +0 -974
- data/spec/graphql/backtrace_spec.rb +0 -206
- data/spec/graphql/base_type_spec.rb +0 -171
- data/spec/graphql/boolean_type_spec.rb +0 -21
- data/spec/graphql/compatibility/execution_specification_spec.rb +0 -4
- data/spec/graphql/compatibility/lazy_execution_specification_spec.rb +0 -4
- data/spec/graphql/compatibility/query_parser_specification_spec.rb +0 -6
- data/spec/graphql/compatibility/schema_parser_specification_spec.rb +0 -6
- data/spec/graphql/define/assign_argument_spec.rb +0 -61
- data/spec/graphql/define/instance_definable_spec.rb +0 -203
- data/spec/graphql/directive/skip_directive_spec.rb +0 -9
- data/spec/graphql/directive_spec.rb +0 -295
- data/spec/graphql/enum_type_spec.rb +0 -158
- data/spec/graphql/execution/execute_spec.rb +0 -303
- data/spec/graphql/execution/instrumentation_spec.rb +0 -212
- data/spec/graphql/execution/interpreter_spec.rb +0 -485
- data/spec/graphql/execution/lazy/lazy_method_map_spec.rb +0 -57
- data/spec/graphql/execution/lazy_spec.rb +0 -247
- data/spec/graphql/execution/lookahead_spec.rb +0 -390
- data/spec/graphql/execution/multiplex_spec.rb +0 -222
- data/spec/graphql/execution/typecast_spec.rb +0 -47
- data/spec/graphql/execution_error_spec.rb +0 -329
- data/spec/graphql/field_spec.rb +0 -246
- data/spec/graphql/float_type_spec.rb +0 -16
- data/spec/graphql/function_spec.rb +0 -152
- data/spec/graphql/id_type_spec.rb +0 -33
- data/spec/graphql/input_object_type_spec.rb +0 -25
- data/spec/graphql/int_type_spec.rb +0 -35
- data/spec/graphql/interface_type_spec.rb +0 -196
- data/spec/graphql/internal_representation/print_spec.rb +0 -41
- data/spec/graphql/internal_representation/rewrite_spec.rb +0 -381
- data/spec/graphql/introspection/directive_type_spec.rb +0 -66
- data/spec/graphql/introspection/input_value_type_spec.rb +0 -144
- data/spec/graphql/introspection/introspection_query_spec.rb +0 -64
- data/spec/graphql/introspection/schema_type_spec.rb +0 -57
- data/spec/graphql/introspection/type_type_spec.rb +0 -155
- data/spec/graphql/language/block_string_spec.rb +0 -70
- data/spec/graphql/language/definition_slice_spec.rb +0 -226
- data/spec/graphql/language/document_from_schema_definition_spec.rb +0 -770
- data/spec/graphql/language/equality_spec.rb +0 -84
- data/spec/graphql/language/generation_spec.rb +0 -38
- data/spec/graphql/language/lexer_spec.rb +0 -153
- data/spec/graphql/language/nodes_spec.rb +0 -67
- data/spec/graphql/language/parser_spec.rb +0 -183
- data/spec/graphql/language/printer_spec.rb +0 -215
- data/spec/graphql/language/visitor_spec.rb +0 -419
- data/spec/graphql/list_type_spec.rb +0 -57
- data/spec/graphql/non_null_type_spec.rb +0 -48
- data/spec/graphql/object_type_spec.rb +0 -197
- data/spec/graphql/query/arguments_spec.rb +0 -346
- data/spec/graphql/query/context_spec.rb +0 -292
- data/spec/graphql/query/executor_spec.rb +0 -341
- data/spec/graphql/query/literal_input_spec.rb +0 -91
- data/spec/graphql/query/result_spec.rb +0 -29
- data/spec/graphql/query/serial_execution/value_resolution_spec.rb +0 -109
- data/spec/graphql/query_spec.rb +0 -803
- data/spec/graphql/rake_task_spec.rb +0 -59
- data/spec/graphql/scalar_type_spec.rb +0 -66
- data/spec/graphql/schema/argument_spec.rb +0 -186
- data/spec/graphql/schema/build_from_definition_spec.rb +0 -1197
- data/spec/graphql/schema/catchall_middleware_spec.rb +0 -32
- data/spec/graphql/schema/directive/feature_spec.rb +0 -81
- data/spec/graphql/schema/directive/transform_spec.rb +0 -39
- data/spec/graphql/schema/enum_spec.rb +0 -83
- data/spec/graphql/schema/enum_value_spec.rb +0 -24
- data/spec/graphql/schema/field_extension_spec.rb +0 -159
- data/spec/graphql/schema/field_spec.rb +0 -319
- data/spec/graphql/schema/finder_spec.rb +0 -135
- data/spec/graphql/schema/input_object_spec.rb +0 -421
- data/spec/graphql/schema/instrumentation_spec.rb +0 -43
- data/spec/graphql/schema/interface_spec.rb +0 -215
- data/spec/graphql/schema/introspection_system_spec.rb +0 -80
- data/spec/graphql/schema/list_spec.rb +0 -73
- data/spec/graphql/schema/loader_spec.rb +0 -350
- data/spec/graphql/schema/member/accepts_definition_spec.rb +0 -115
- data/spec/graphql/schema/member/build_type_spec.rb +0 -63
- data/spec/graphql/schema/member/scoped_spec.rb +0 -217
- data/spec/graphql/schema/member/type_system_helpers_spec.rb +0 -63
- data/spec/graphql/schema/middleware_chain_spec.rb +0 -57
- data/spec/graphql/schema/mutation_spec.rb +0 -150
- data/spec/graphql/schema/non_null_spec.rb +0 -46
- data/spec/graphql/schema/object_spec.rb +0 -355
- data/spec/graphql/schema/printer_spec.rb +0 -883
- data/spec/graphql/schema/relay_classic_mutation_spec.rb +0 -252
- data/spec/graphql/schema/rescue_middleware_spec.rb +0 -88
- data/spec/graphql/schema/resolver_spec.rb +0 -743
- data/spec/graphql/schema/scalar_spec.rb +0 -101
- data/spec/graphql/schema/subscription_spec.rb +0 -505
- data/spec/graphql/schema/timeout_middleware_spec.rb +0 -188
- data/spec/graphql/schema/timeout_spec.rb +0 -206
- data/spec/graphql/schema/traversal_spec.rb +0 -222
- data/spec/graphql/schema/type_expression_spec.rb +0 -39
- data/spec/graphql/schema/union_spec.rb +0 -72
- data/spec/graphql/schema/unique_within_type_spec.rb +0 -44
- data/spec/graphql/schema/validation_spec.rb +0 -355
- data/spec/graphql/schema/warden_spec.rb +0 -926
- data/spec/graphql/schema_spec.rb +0 -169
- data/spec/graphql/static_validation/rules/argument_literals_are_compatible_spec.rb +0 -466
- data/spec/graphql/static_validation/rules/argument_names_are_unique_spec.rb +0 -44
- data/spec/graphql/static_validation/rules/arguments_are_defined_spec.rb +0 -112
- data/spec/graphql/static_validation/rules/directives_are_defined_spec.rb +0 -35
- data/spec/graphql/static_validation/rules/directives_are_in_valid_locations_spec.rb +0 -42
- data/spec/graphql/static_validation/rules/fields_are_defined_on_type_spec.rb +0 -167
- data/spec/graphql/static_validation/rules/fields_have_appropriate_selections_spec.rb +0 -66
- data/spec/graphql/static_validation/rules/fields_will_merge_spec.rb +0 -740
- data/spec/graphql/static_validation/rules/fragment_names_are_unique_spec.rb +0 -28
- data/spec/graphql/static_validation/rules/fragment_spreads_are_possible_spec.rb +0 -52
- data/spec/graphql/static_validation/rules/fragment_types_exist_spec.rb +0 -42
- data/spec/graphql/static_validation/rules/fragments_are_finite_spec.rb +0 -123
- data/spec/graphql/static_validation/rules/fragments_are_named_spec.rb +0 -24
- data/spec/graphql/static_validation/rules/fragments_are_on_composite_types_spec.rb +0 -56
- data/spec/graphql/static_validation/rules/fragments_are_used_spec.rb +0 -61
- data/spec/graphql/static_validation/rules/mutation_root_exists_spec.rb +0 -39
- data/spec/graphql/static_validation/rules/no_definitions_are_present_spec.rb +0 -62
- data/spec/graphql/static_validation/rules/operation_names_are_valid_spec.rb +0 -82
- data/spec/graphql/static_validation/rules/required_arguments_are_present_spec.rb +0 -98
- data/spec/graphql/static_validation/rules/required_input_object_attributes_are_present_spec.rb +0 -86
- data/spec/graphql/static_validation/rules/subscription_root_exists_spec.rb +0 -34
- data/spec/graphql/static_validation/rules/unique_directives_per_location_spec.rb +0 -188
- data/spec/graphql/static_validation/rules/variable_default_values_are_correctly_typed_spec.rb +0 -196
- data/spec/graphql/static_validation/rules/variable_names_are_unique_spec.rb +0 -23
- data/spec/graphql/static_validation/rules/variable_usages_are_allowed_spec.rb +0 -236
- data/spec/graphql/static_validation/rules/variables_are_input_types_spec.rb +0 -78
- data/spec/graphql/static_validation/rules/variables_are_used_and_defined_spec.rb +0 -81
- data/spec/graphql/static_validation/type_stack_spec.rb +0 -29
- data/spec/graphql/static_validation/validator_spec.rb +0 -204
- data/spec/graphql/string_type_spec.rb +0 -80
- data/spec/graphql/subscriptions/serialize_spec.rb +0 -49
- data/spec/graphql/subscriptions_spec.rb +0 -540
- data/spec/graphql/tracing/new_relic_tracing_spec.rb +0 -84
- data/spec/graphql/tracing/platform_tracing_spec.rb +0 -141
- data/spec/graphql/tracing/prometheus_tracing_spec.rb +0 -42
- data/spec/graphql/tracing/scout_tracing_spec.rb +0 -17
- data/spec/graphql/tracing/skylight_tracing_spec.rb +0 -63
- data/spec/graphql/tracing_spec.rb +0 -52
- data/spec/graphql/types/big_int_spec.rb +0 -24
- data/spec/graphql/types/iso_8601_date_time_spec.rb +0 -137
- data/spec/graphql/types/relay/base_edge_spec.rb +0 -33
- data/spec/graphql/union_type_spec.rb +0 -211
- data/spec/graphql/upgrader/member_spec.rb +0 -583
- data/spec/graphql/upgrader/schema_spec.rb +0 -82
- data/spec/integration/mongoid/graphql/relay/mongo_relation_connection_spec.rb +0 -528
- data/spec/integration/mongoid/spec_helper.rb +0 -2
- data/spec/integration/mongoid/star_trek/data.rb +0 -126
- data/spec/integration/mongoid/star_trek/schema.rb +0 -424
- data/spec/integration/rails/data.rb +0 -110
- data/spec/integration/rails/generators/base_generator_test.rb +0 -7
- data/spec/integration/rails/generators/graphql/enum_generator_spec.rb +0 -30
- data/spec/integration/rails/generators/graphql/install_generator_spec.rb +0 -238
- data/spec/integration/rails/generators/graphql/interface_generator_spec.rb +0 -34
- data/spec/integration/rails/generators/graphql/loader_generator_spec.rb +0 -59
- data/spec/integration/rails/generators/graphql/mutation_generator_spec.rb +0 -71
- data/spec/integration/rails/generators/graphql/object_generator_spec.rb +0 -54
- data/spec/integration/rails/generators/graphql/scalar_generator_spec.rb +0 -28
- data/spec/integration/rails/generators/graphql/union_generator_spec.rb +0 -67
- data/spec/integration/rails/graphql/input_object_spec.rb +0 -19
- data/spec/integration/rails/graphql/input_object_type_spec.rb +0 -364
- data/spec/integration/rails/graphql/query/variables_spec.rb +0 -375
- data/spec/integration/rails/graphql/relay/array_connection_spec.rb +0 -309
- data/spec/integration/rails/graphql/relay/base_connection_spec.rb +0 -101
- data/spec/integration/rails/graphql/relay/connection_instrumentation_spec.rb +0 -80
- data/spec/integration/rails/graphql/relay/connection_resolve_spec.rb +0 -79
- data/spec/integration/rails/graphql/relay/connection_type_spec.rb +0 -106
- data/spec/integration/rails/graphql/relay/edge_spec.rb +0 -10
- data/spec/integration/rails/graphql/relay/mutation_spec.rb +0 -387
- data/spec/integration/rails/graphql/relay/node_spec.rb +0 -263
- data/spec/integration/rails/graphql/relay/page_info_spec.rb +0 -111
- data/spec/integration/rails/graphql/relay/range_add_spec.rb +0 -117
- data/spec/integration/rails/graphql/relay/relation_connection_spec.rb +0 -837
- data/spec/integration/rails/graphql/schema_spec.rb +0 -507
- data/spec/integration/rails/graphql/tracing/active_support_notifications_tracing_spec.rb +0 -62
- data/spec/integration/rails/spec_helper.rb +0 -25
- data/spec/spec_helper.rb +0 -116
- data/spec/support/dummy/data.rb +0 -45
- data/spec/support/dummy/schema.rb +0 -519
- data/spec/support/error_bubbling_helpers.rb +0 -23
- data/spec/support/global_id.rb +0 -23
- data/spec/support/jazz.rb +0 -778
- data/spec/support/lazy_helpers.rb +0 -192
- data/spec/support/magic_cards/schema.graphql +0 -33
- data/spec/support/minimum_input_object.rb +0 -21
- data/spec/support/new_relic.rb +0 -27
- data/spec/support/parser/filename_example.graphql +0 -5
- data/spec/support/parser/filename_example_error_1.graphql +0 -4
- data/spec/support/parser/filename_example_error_2.graphql +0 -5
- data/spec/support/parser/filename_example_invalid_utf8.graphql +0 -1
- data/spec/support/skylight.rb +0 -39
- data/spec/support/star_wars/schema.rb +0 -464
- data/spec/support/static_validation_helpers.rb +0 -32
@@ -1,82 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require "spec_helper"
|
3
|
-
|
4
|
-
describe GraphQL::StaticValidation::OperationNamesAreValid do
|
5
|
-
include StaticValidationHelpers
|
6
|
-
|
7
|
-
describe "when there are multiple operations" do
|
8
|
-
let(:query_string) { <<-GRAPHQL
|
9
|
-
query getCheese {
|
10
|
-
cheese(id: 1) { flavor }
|
11
|
-
}
|
12
|
-
|
13
|
-
{
|
14
|
-
cheese(id: 2) { flavor }
|
15
|
-
}
|
16
|
-
|
17
|
-
{
|
18
|
-
cheese(id: 3) { flavor }
|
19
|
-
}
|
20
|
-
GRAPHQL
|
21
|
-
}
|
22
|
-
|
23
|
-
it "must have operation names" do
|
24
|
-
assert_equal 1, errors.length
|
25
|
-
requires_name_error = {
|
26
|
-
"message"=>"Operation name is required when multiple operations are present",
|
27
|
-
"locations"=>[{"line"=>5, "column"=>5}, {"line"=>9, "column"=>5}],
|
28
|
-
"path"=>[],
|
29
|
-
"extensions"=>{"code"=>"uniquelyNamedOperations"}
|
30
|
-
}
|
31
|
-
assert_includes(errors, requires_name_error)
|
32
|
-
end
|
33
|
-
end
|
34
|
-
|
35
|
-
describe "when there are only unnamed operations" do
|
36
|
-
let(:query_string) { <<-GRAPHQL
|
37
|
-
{
|
38
|
-
cheese(id: 2) { flavor }
|
39
|
-
}
|
40
|
-
|
41
|
-
{
|
42
|
-
cheese(id: 3) { flavor }
|
43
|
-
}
|
44
|
-
GRAPHQL
|
45
|
-
}
|
46
|
-
|
47
|
-
it "requires names" do
|
48
|
-
assert_equal 1, errors.length
|
49
|
-
requires_name_error = {
|
50
|
-
"message"=>"Operation name is required when multiple operations are present",
|
51
|
-
"locations"=>[{"line"=>1, "column"=>5}, {"line"=>5, "column"=>5}],
|
52
|
-
"path"=>[],
|
53
|
-
"extensions"=>{"code"=>"uniquelyNamedOperations"}
|
54
|
-
}
|
55
|
-
assert_includes(errors, requires_name_error)
|
56
|
-
end
|
57
|
-
end
|
58
|
-
|
59
|
-
describe "when multiple operations have names" do
|
60
|
-
let(:query_string) { <<-GRAPHQL
|
61
|
-
query getCheese {
|
62
|
-
cheese(id: 1) { flavor }
|
63
|
-
}
|
64
|
-
|
65
|
-
query getCheese {
|
66
|
-
cheese(id: 2) { flavor }
|
67
|
-
}
|
68
|
-
GRAPHQL
|
69
|
-
}
|
70
|
-
|
71
|
-
it "must be unique" do
|
72
|
-
assert_equal 1, errors.length
|
73
|
-
name_uniqueness_error = {
|
74
|
-
"message"=>'Operation name "getCheese" must be unique',
|
75
|
-
"locations"=>[{"line"=>1, "column"=>5}, {"line"=>5, "column"=>5}],
|
76
|
-
"path"=>[],
|
77
|
-
"extensions"=>{"code"=>"uniquelyNamedOperations", "operationName"=>"getCheese"}
|
78
|
-
}
|
79
|
-
assert_includes(errors, name_uniqueness_error)
|
80
|
-
end
|
81
|
-
end
|
82
|
-
end
|
@@ -1,98 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require "spec_helper"
|
3
|
-
|
4
|
-
describe GraphQL::StaticValidation::RequiredArgumentsArePresent do
|
5
|
-
include StaticValidationHelpers
|
6
|
-
let(:query_string) {"
|
7
|
-
query getCheese {
|
8
|
-
okCheese: cheese(id: 1) { ...cheeseFields }
|
9
|
-
cheese { source }
|
10
|
-
}
|
11
|
-
|
12
|
-
fragment cheeseFields on Cheese {
|
13
|
-
similarCheese() { __typename }
|
14
|
-
flavor @include(if: true)
|
15
|
-
id @skip
|
16
|
-
}
|
17
|
-
"}
|
18
|
-
|
19
|
-
it "finds undefined arguments to fields and directives" do
|
20
|
-
assert_equal(3, errors.length)
|
21
|
-
|
22
|
-
query_root_error = {
|
23
|
-
"message"=>"Field 'cheese' is missing required arguments: id",
|
24
|
-
"locations"=>[{"line"=>4, "column"=>7}],
|
25
|
-
"path"=>["query getCheese", "cheese"],
|
26
|
-
"extensions"=>{"code"=>"missingRequiredArguments", "className"=>"Field", "name"=>"cheese", "arguments"=>"id"}
|
27
|
-
}
|
28
|
-
assert_includes(errors, query_root_error)
|
29
|
-
|
30
|
-
fragment_error = {
|
31
|
-
"message"=>"Field 'similarCheese' is missing required arguments: source",
|
32
|
-
"locations"=>[{"line"=>8, "column"=>7}],
|
33
|
-
"path"=>["fragment cheeseFields", "similarCheese"],
|
34
|
-
"extensions"=>{"code"=>"missingRequiredArguments", "className"=>"Field", "name"=>"similarCheese", "arguments"=>"source"}
|
35
|
-
}
|
36
|
-
assert_includes(errors, fragment_error)
|
37
|
-
|
38
|
-
directive_error = {
|
39
|
-
"message"=>"Directive 'skip' is missing required arguments: if",
|
40
|
-
"locations"=>[{"line"=>10, "column"=>10}],
|
41
|
-
"path"=>["fragment cheeseFields", "id"],
|
42
|
-
"extensions"=>{"code"=>"missingRequiredArguments", "className"=>"Directive", "name"=>"skip", "arguments"=>"if"}
|
43
|
-
}
|
44
|
-
assert_includes(errors, directive_error)
|
45
|
-
end
|
46
|
-
|
47
|
-
describe "dynamic fields" do
|
48
|
-
let(:query_string) {"
|
49
|
-
query {
|
50
|
-
__type { name }
|
51
|
-
}
|
52
|
-
"}
|
53
|
-
|
54
|
-
it "finds undefined required arguments" do
|
55
|
-
expected_errors = [
|
56
|
-
{
|
57
|
-
"message"=>"Field '__type' is missing required arguments: name",
|
58
|
-
"locations"=>[
|
59
|
-
{"line"=>3, "column"=>9}
|
60
|
-
],
|
61
|
-
"path"=>["query", "__type"],
|
62
|
-
"extensions"=>{
|
63
|
-
"code"=>"missingRequiredArguments",
|
64
|
-
"className"=>"Field",
|
65
|
-
"name"=>"__type",
|
66
|
-
"arguments"=>"name"
|
67
|
-
}
|
68
|
-
}
|
69
|
-
]
|
70
|
-
assert_equal(expected_errors, errors)
|
71
|
-
end
|
72
|
-
end
|
73
|
-
|
74
|
-
describe "when a required arg is hidden" do
|
75
|
-
class Query < GraphQL::Schema::Object
|
76
|
-
field :int, Integer, null: true do
|
77
|
-
argument :input, Integer, required: true do
|
78
|
-
def visible?(*)
|
79
|
-
false
|
80
|
-
end
|
81
|
-
end
|
82
|
-
end
|
83
|
-
|
84
|
-
def int(input: -1)
|
85
|
-
input
|
86
|
-
end
|
87
|
-
end
|
88
|
-
|
89
|
-
class HiddenArgSchema < GraphQL::Schema
|
90
|
-
query(Query)
|
91
|
-
end
|
92
|
-
|
93
|
-
it "Doesn't require a hidden input" do
|
94
|
-
res = HiddenArgSchema.execute("{ int }")
|
95
|
-
assert_equal -1, res["data"]["int"]
|
96
|
-
end
|
97
|
-
end
|
98
|
-
end
|
data/spec/graphql/static_validation/rules/required_input_object_attributes_are_present_spec.rb
DELETED
@@ -1,86 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require "spec_helper"
|
3
|
-
|
4
|
-
describe GraphQL::StaticValidation::RequiredInputObjectAttributesArePresent do
|
5
|
-
include StaticValidationHelpers
|
6
|
-
include ErrorBubblingHelpers
|
7
|
-
|
8
|
-
let(:query_string) {%|
|
9
|
-
query getCheese {
|
10
|
-
stringCheese: cheese(id: "aasdlkfj") { ...cheeseFields }
|
11
|
-
cheese(id: 1) { source @skip(if: "whatever") }
|
12
|
-
yakSource: searchDairy(product: [{source: COW, fatContent: 1.1}]) { __typename }
|
13
|
-
badSource: searchDairy(product: [{source: 1.1}]) { __typename }
|
14
|
-
missingSource: searchDairy(product: [{fatContent: 1.1}]) { __typename }
|
15
|
-
missingNestedRequiredInputObjectAttribute: searchDairy(product: [{fatContent: 1.2, order_by: {}}]) { __typename }
|
16
|
-
errorAtIndexOne: searchDairy(product: [{source: COW, fatContent: 1.0}, {fatContent: 1.2, order_by: {}}]) { __typename }
|
17
|
-
listCoerce: cheese(id: 1) { similarCheese(source: YAK) { __typename } }
|
18
|
-
missingInputField: searchDairy(product: [{source: YAK, wacky: 1}]) { __typename }
|
19
|
-
}
|
20
|
-
|
21
|
-
fragment cheeseFields on Cheese {
|
22
|
-
similarCheese(source: 4.5) { __typename }
|
23
|
-
}
|
24
|
-
|}
|
25
|
-
describe "with error bubbling disabled" do
|
26
|
-
missing_required_field_error = {
|
27
|
-
"message"=>"Argument 'product' on Field 'missingSource' has an invalid value. Expected type '[DairyProductInput]'.",
|
28
|
-
"locations"=>[{"line"=>7, "column"=>7}],
|
29
|
-
"path"=>["query getCheese", "missingSource", "product"],
|
30
|
-
"extensions"=>{
|
31
|
-
"code"=>"argumentLiteralsIncompatible",
|
32
|
-
"typeName"=>"Field",
|
33
|
-
"argumentName"=>"product",
|
34
|
-
},
|
35
|
-
}
|
36
|
-
missing_source_error = {
|
37
|
-
"message"=>"Argument 'source' on InputObject 'DairyProductInput' is required. Expected type DairyAnimal!",
|
38
|
-
"locations"=>[{"line"=>7, "column"=>44}],
|
39
|
-
"path"=>["query getCheese", "missingSource", "product", 0, "source"],
|
40
|
-
"extensions"=>{
|
41
|
-
"code"=>"missingRequiredInputObjectAttribute",
|
42
|
-
"argumentName"=>"source",
|
43
|
-
"argumentType"=>"DairyAnimal!",
|
44
|
-
"inputObjectType"=>"DairyProductInput"
|
45
|
-
}
|
46
|
-
}
|
47
|
-
missing_order_by_direction_error = {
|
48
|
-
"message"=>"Argument 'direction' on InputObject 'ResourceOrderType' is required. Expected type String!",
|
49
|
-
"locations"=>[{"line"=>8, "column"=>100}],
|
50
|
-
"path"=>["query getCheese", "missingNestedRequiredInputObjectAttribute", "product", 0, "order_by", "direction"],
|
51
|
-
"extensions"=>{
|
52
|
-
"code"=>"missingRequiredInputObjectAttribute",
|
53
|
-
"argumentName"=>"direction",
|
54
|
-
"argumentType"=>"String!",
|
55
|
-
"inputObjectType"=>"ResourceOrderType"
|
56
|
-
}
|
57
|
-
}
|
58
|
-
missing_order_by_direction_index_one_error = {
|
59
|
-
"message"=>"Argument 'direction' on InputObject 'ResourceOrderType' is required. Expected type String!",
|
60
|
-
"locations"=>[{"line"=>9, "column"=>106}],
|
61
|
-
"path"=>["query getCheese", "errorAtIndexOne", "product", 1, "order_by", "direction"],
|
62
|
-
"extensions"=>{
|
63
|
-
"code"=>"missingRequiredInputObjectAttribute",
|
64
|
-
"argumentName"=>"direction",
|
65
|
-
"argumentType"=>"String!",
|
66
|
-
"inputObjectType"=>"ResourceOrderType"
|
67
|
-
}
|
68
|
-
}
|
69
|
-
it "finds undefined or missing-required arguments to fields and directives" do
|
70
|
-
without_error_bubbling(schema) do
|
71
|
-
assert_includes(errors, missing_source_error)
|
72
|
-
assert_includes(errors, missing_order_by_direction_error)
|
73
|
-
assert_includes(errors, missing_order_by_direction_index_one_error)
|
74
|
-
refute_includes(errors, missing_required_field_error)
|
75
|
-
end
|
76
|
-
end
|
77
|
-
it 'works with error bubbling enabled' do
|
78
|
-
with_error_bubbling(schema) do
|
79
|
-
assert_includes(errors, missing_required_field_error)
|
80
|
-
assert_includes(errors, missing_source_error)
|
81
|
-
assert_includes(errors, missing_order_by_direction_error)
|
82
|
-
assert_includes(errors, missing_order_by_direction_index_one_error)
|
83
|
-
end
|
84
|
-
end
|
85
|
-
end
|
86
|
-
end
|
@@ -1,34 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require "spec_helper"
|
3
|
-
|
4
|
-
describe GraphQL::StaticValidation::SubscriptionRootExists do
|
5
|
-
include StaticValidationHelpers
|
6
|
-
|
7
|
-
let(:query_string) {%|
|
8
|
-
subscription {
|
9
|
-
test
|
10
|
-
}
|
11
|
-
|}
|
12
|
-
|
13
|
-
let(:schema) {
|
14
|
-
query_root = GraphQL::ObjectType.define do
|
15
|
-
name "Query"
|
16
|
-
description "Query root of the system"
|
17
|
-
end
|
18
|
-
|
19
|
-
GraphQL::Schema.define do
|
20
|
-
query query_root
|
21
|
-
end
|
22
|
-
}
|
23
|
-
|
24
|
-
it "errors when a subscription is performed on a schema without a subscription root" do
|
25
|
-
assert_equal(1, errors.length)
|
26
|
-
missing_subscription_root_error = {
|
27
|
-
"message"=>"Schema is not configured for subscriptions",
|
28
|
-
"locations"=>[{"line"=>2, "column"=>5}],
|
29
|
-
"path"=>["subscription"],
|
30
|
-
"extensions"=>{"code"=>"missingSubscriptionConfiguration"}
|
31
|
-
}
|
32
|
-
assert_includes(errors, missing_subscription_root_error)
|
33
|
-
end
|
34
|
-
end
|
@@ -1,188 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require "spec_helper"
|
3
|
-
|
4
|
-
describe GraphQL::StaticValidation::UniqueDirectivesPerLocation do
|
5
|
-
include StaticValidationHelpers
|
6
|
-
|
7
|
-
let(:schema) { GraphQL::Schema.from_definition("
|
8
|
-
type Query {
|
9
|
-
type: Type
|
10
|
-
}
|
11
|
-
|
12
|
-
type Type {
|
13
|
-
field: String
|
14
|
-
}
|
15
|
-
|
16
|
-
directive @A on FIELD
|
17
|
-
directive @B on FIELD
|
18
|
-
") }
|
19
|
-
|
20
|
-
describe "query with no directives" do
|
21
|
-
let(:query_string) {"
|
22
|
-
{
|
23
|
-
type {
|
24
|
-
field
|
25
|
-
}
|
26
|
-
}
|
27
|
-
"}
|
28
|
-
|
29
|
-
it "passes rule" do
|
30
|
-
assert_equal [], errors
|
31
|
-
end
|
32
|
-
end
|
33
|
-
|
34
|
-
describe "query with unique directives in different locations" do
|
35
|
-
let(:query_string) {"
|
36
|
-
{
|
37
|
-
type @A {
|
38
|
-
field @B
|
39
|
-
}
|
40
|
-
}
|
41
|
-
"}
|
42
|
-
|
43
|
-
it "passes rule" do
|
44
|
-
assert_equal [], errors
|
45
|
-
end
|
46
|
-
end
|
47
|
-
|
48
|
-
describe "query with unique directives in same locations" do
|
49
|
-
let(:query_string) {"
|
50
|
-
{
|
51
|
-
type @A @B {
|
52
|
-
field @A @B
|
53
|
-
}
|
54
|
-
}
|
55
|
-
"}
|
56
|
-
|
57
|
-
it "passes rule" do
|
58
|
-
assert_equal [], errors
|
59
|
-
end
|
60
|
-
end
|
61
|
-
|
62
|
-
describe "query with same directives in different locations" do
|
63
|
-
let(:query_string) {"
|
64
|
-
{
|
65
|
-
type @A {
|
66
|
-
field @A
|
67
|
-
}
|
68
|
-
}
|
69
|
-
"}
|
70
|
-
|
71
|
-
it "passes rule" do
|
72
|
-
assert_equal [], errors
|
73
|
-
end
|
74
|
-
end
|
75
|
-
|
76
|
-
describe "query with same directives in similar locations" do
|
77
|
-
let(:query_string) {"
|
78
|
-
{
|
79
|
-
type {
|
80
|
-
field @A
|
81
|
-
field @A
|
82
|
-
}
|
83
|
-
}
|
84
|
-
"}
|
85
|
-
|
86
|
-
it "passes rule" do
|
87
|
-
assert_equal [], errors
|
88
|
-
end
|
89
|
-
end
|
90
|
-
|
91
|
-
describe "query with duplicate directives in one location" do
|
92
|
-
let(:query_string) {"
|
93
|
-
{
|
94
|
-
type {
|
95
|
-
field @A @A
|
96
|
-
}
|
97
|
-
}
|
98
|
-
"}
|
99
|
-
|
100
|
-
it "fails rule" do
|
101
|
-
assert_includes errors, {
|
102
|
-
"message" => 'The directive "A" can only be used once at this location.',
|
103
|
-
"locations" => [{ "line" => 4, "column" => 17 }, { "line" => 4, "column" => 20 }],
|
104
|
-
"path" => ["query", "type", "field"],
|
105
|
-
"extensions" => {"code"=>"directiveNotUniqueForLocation", "directiveName"=>"A"}
|
106
|
-
}
|
107
|
-
end
|
108
|
-
end
|
109
|
-
|
110
|
-
|
111
|
-
describe "query with many duplicate directives in one location" do
|
112
|
-
let(:query_string) {"
|
113
|
-
{
|
114
|
-
type {
|
115
|
-
field @A @A @A
|
116
|
-
}
|
117
|
-
}
|
118
|
-
"}
|
119
|
-
|
120
|
-
it "fails rule" do
|
121
|
-
assert_includes errors, {
|
122
|
-
"message" => 'The directive "A" can only be used once at this location.',
|
123
|
-
"locations" => [{ "line" => 4, "column" => 17 }, { "line" => 4, "column" => 20 }],
|
124
|
-
"path" => ["query", "type", "field"],
|
125
|
-
"extensions" => {"code"=>"directiveNotUniqueForLocation", "directiveName"=>"A"}
|
126
|
-
}
|
127
|
-
|
128
|
-
assert_includes errors, {
|
129
|
-
"message" => 'The directive "A" can only be used once at this location.',
|
130
|
-
"locations" => [{ "line" => 4, "column" => 17 }, { "line" => 4, "column" => 23 }],
|
131
|
-
"path" => ["query", "type", "field"],
|
132
|
-
"extensions" => {"code"=>"directiveNotUniqueForLocation", "directiveName"=>"A"}
|
133
|
-
}
|
134
|
-
end
|
135
|
-
end
|
136
|
-
|
137
|
-
describe "query with different duplicate directives in one location" do
|
138
|
-
let(:query_string) {"
|
139
|
-
{
|
140
|
-
type {
|
141
|
-
field @A @B @A @B
|
142
|
-
}
|
143
|
-
}
|
144
|
-
"}
|
145
|
-
|
146
|
-
it "fails rule" do
|
147
|
-
assert_includes errors, {
|
148
|
-
"message" => 'The directive "A" can only be used once at this location.',
|
149
|
-
"locations" => [{ "line" => 4, "column" => 17 }, { "line" => 4, "column" => 23 }],
|
150
|
-
"path" => ["query", "type", "field"],
|
151
|
-
"extensions" => {"code"=>"directiveNotUniqueForLocation", "directiveName"=>"A"}
|
152
|
-
}
|
153
|
-
|
154
|
-
assert_includes errors, {
|
155
|
-
"message" => 'The directive "B" can only be used once at this location.',
|
156
|
-
"locations" => [{ "line" => 4, "column" => 20 }, { "line" => 4, "column" => 26 }],
|
157
|
-
"path" => ["query", "type", "field"],
|
158
|
-
"extensions" => {"code"=>"directiveNotUniqueForLocation", "directiveName"=>"B"}
|
159
|
-
}
|
160
|
-
end
|
161
|
-
end
|
162
|
-
|
163
|
-
describe "query with duplicate directives in many locations" do
|
164
|
-
let(:query_string) {"
|
165
|
-
{
|
166
|
-
type @A @A {
|
167
|
-
field @A @A
|
168
|
-
}
|
169
|
-
}
|
170
|
-
"}
|
171
|
-
|
172
|
-
it "fails rule" do
|
173
|
-
assert_includes errors, {
|
174
|
-
"message" => 'The directive "A" can only be used once at this location.',
|
175
|
-
"locations" => [{ "line" => 3, "column" => 14 }, { "line" => 3, "column" => 17 }],
|
176
|
-
"path" => ["query", "type"],
|
177
|
-
"extensions" => {"code"=>"directiveNotUniqueForLocation", "directiveName"=>"A"}
|
178
|
-
}
|
179
|
-
|
180
|
-
assert_includes errors, {
|
181
|
-
"message" => 'The directive "A" can only be used once at this location.',
|
182
|
-
"locations" => [{ "line" => 4, "column" => 17 }, { "line" => 4, "column" => 20 }],
|
183
|
-
"path" => ["query", "type", "field"],
|
184
|
-
"extensions" => {"code"=>"directiveNotUniqueForLocation", "directiveName"=>"A"}
|
185
|
-
}
|
186
|
-
end
|
187
|
-
end
|
188
|
-
end
|