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,507 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require "spec_helper"
|
3
|
-
|
4
|
-
describe GraphQL::Schema do
|
5
|
-
let(:schema) { Dummy::Schema }
|
6
|
-
let(:admin_schema) { Dummy::AdminSchema }
|
7
|
-
let(:relay_schema) { StarWars::Schema }
|
8
|
-
let(:empty_schema) { GraphQL::Schema.define }
|
9
|
-
|
10
|
-
describe "#graphql_definition" do
|
11
|
-
it "returns itself" do
|
12
|
-
assert_equal empty_schema, empty_schema.graphql_definition
|
13
|
-
end
|
14
|
-
end
|
15
|
-
|
16
|
-
describe "#rescue_from" do
|
17
|
-
it "adds handlers to the rescue middleware" do
|
18
|
-
schema_defn = schema.graphql_definition
|
19
|
-
rescue_middleware = schema_defn.middleware.first
|
20
|
-
assert_equal(1, rescue_middleware.rescue_table.length)
|
21
|
-
# normally, you'd use a real class, not a symbol:
|
22
|
-
schema_defn.rescue_from(:error_class, :another_err_class) { "my custom message" }
|
23
|
-
assert_equal(3, rescue_middleware.rescue_table.length)
|
24
|
-
end
|
25
|
-
end
|
26
|
-
|
27
|
-
describe "#find" do
|
28
|
-
it "finds a member using a string path" do
|
29
|
-
field = schema.find("Edible.fatContent")
|
30
|
-
assert_equal "fatContent", field.name
|
31
|
-
end
|
32
|
-
end
|
33
|
-
|
34
|
-
describe "#union_memberships" do
|
35
|
-
it "returns a list of unions that include the type" do
|
36
|
-
assert_equal [schema.types["Animal"], schema.types["AnimalAsCow"]], schema.union_memberships(schema.types["Cow"])
|
37
|
-
end
|
38
|
-
end
|
39
|
-
|
40
|
-
describe "#to_document" do
|
41
|
-
it "returns the AST for the schema IDL" do
|
42
|
-
expected = GraphQL::Language::DocumentFromSchemaDefinition.new(schema).document
|
43
|
-
assert expected.eql?(schema.to_document)
|
44
|
-
end
|
45
|
-
end
|
46
|
-
|
47
|
-
describe "#root_types" do
|
48
|
-
it "returns a list of the schema's root types" do
|
49
|
-
assert_equal(
|
50
|
-
[
|
51
|
-
Dummy::DairyAppQuery.graphql_definition,
|
52
|
-
Dummy::DairyAppMutation.graphql_definition.graphql_definition,
|
53
|
-
Dummy::Subscription.graphql_definition
|
54
|
-
],
|
55
|
-
schema.root_types
|
56
|
-
)
|
57
|
-
end
|
58
|
-
end
|
59
|
-
|
60
|
-
describe "#references_to" do
|
61
|
-
it "returns a list of Field and Arguments of that type" do
|
62
|
-
cow_field = schema.get_field("Query", "cow")
|
63
|
-
assert_equal [cow_field], schema.references_to("Cow")
|
64
|
-
end
|
65
|
-
|
66
|
-
it "returns an empty list when type is not referenced by any field or argument" do
|
67
|
-
assert_equal [], schema.references_to("Goat")
|
68
|
-
end
|
69
|
-
end
|
70
|
-
|
71
|
-
describe "#to_definition" do
|
72
|
-
it "prints out the schema definition" do
|
73
|
-
assert_equal schema.to_definition, GraphQL::Schema::Printer.print_schema(schema)
|
74
|
-
end
|
75
|
-
end
|
76
|
-
|
77
|
-
# Interpreter has subscription support hardcoded, it doesn't just call through.
|
78
|
-
if !TESTING_INTERPRETER
|
79
|
-
describe "#subscription" do
|
80
|
-
it "calls fields on the subscription type" do
|
81
|
-
res = schema.execute("subscription { test }")
|
82
|
-
assert_equal("Test", res["data"]["test"])
|
83
|
-
end
|
84
|
-
end
|
85
|
-
end
|
86
|
-
|
87
|
-
describe "#resolve_type" do
|
88
|
-
describe "when the return value is nil" do
|
89
|
-
it "returns nil" do
|
90
|
-
result = relay_schema.resolve_type(123, nil)
|
91
|
-
assert_equal(nil, result)
|
92
|
-
end
|
93
|
-
end
|
94
|
-
|
95
|
-
describe "when the return value is not a BaseType" do
|
96
|
-
it "raises an error " do
|
97
|
-
err = assert_raises(RuntimeError) {
|
98
|
-
relay_schema.resolve_type(:test_error, nil)
|
99
|
-
}
|
100
|
-
assert_includes err.message, "not_a_type (Symbol)"
|
101
|
-
end
|
102
|
-
end
|
103
|
-
|
104
|
-
describe "when the hook wasn't implemented" do
|
105
|
-
it "raises not implemented" do
|
106
|
-
assert_raises(NotImplementedError) {
|
107
|
-
empty_schema.resolve_type(nil, nil)
|
108
|
-
}
|
109
|
-
end
|
110
|
-
end
|
111
|
-
|
112
|
-
describe "when a schema is defined with abstract types, but no resolve type hook" do
|
113
|
-
it "raises not implemented" do
|
114
|
-
interface = GraphQL::InterfaceType.define do
|
115
|
-
name "SomeInterface"
|
116
|
-
end
|
117
|
-
|
118
|
-
query_type = GraphQL::ObjectType.define do
|
119
|
-
name "Query"
|
120
|
-
field :something, interface
|
121
|
-
end
|
122
|
-
|
123
|
-
assert_raises(NotImplementedError) {
|
124
|
-
GraphQL::Schema.define do
|
125
|
-
query(query_type)
|
126
|
-
end
|
127
|
-
}
|
128
|
-
end
|
129
|
-
end
|
130
|
-
end
|
131
|
-
|
132
|
-
describe "#disable_introspection_entry_points" do
|
133
|
-
it "enables entry points by default" do
|
134
|
-
refute_empty empty_schema.introspection_system.entry_points
|
135
|
-
end
|
136
|
-
|
137
|
-
describe "when disable_introspection_entry_points is configured" do
|
138
|
-
let(:schema) do
|
139
|
-
GraphQL::Schema.define do
|
140
|
-
disable_introspection_entry_points
|
141
|
-
end
|
142
|
-
end
|
143
|
-
|
144
|
-
it "clears entry points" do
|
145
|
-
assert_empty schema.introspection_system.entry_points
|
146
|
-
end
|
147
|
-
end
|
148
|
-
end
|
149
|
-
|
150
|
-
describe "object_from_id" do
|
151
|
-
describe "when the hook wasn't implemented" do
|
152
|
-
it "raises not implemented" do
|
153
|
-
assert_raises(NotImplementedError) {
|
154
|
-
empty_schema.object_from_id(nil, nil)
|
155
|
-
}
|
156
|
-
end
|
157
|
-
end
|
158
|
-
|
159
|
-
describe "when a schema is defined with a relay ID field, but no hook" do
|
160
|
-
it "raises not implemented" do
|
161
|
-
thing_type = GraphQL::ObjectType.define do
|
162
|
-
name "Thing"
|
163
|
-
global_id_field :id
|
164
|
-
end
|
165
|
-
|
166
|
-
query_type = GraphQL::ObjectType.define do
|
167
|
-
name "Query"
|
168
|
-
field :thing, thing_type
|
169
|
-
end
|
170
|
-
|
171
|
-
assert_raises(NotImplementedError) {
|
172
|
-
GraphQL::Schema.define do
|
173
|
-
query(query_type)
|
174
|
-
resolve_type NO_OP_RESOLVE_TYPE
|
175
|
-
end
|
176
|
-
}
|
177
|
-
end
|
178
|
-
end
|
179
|
-
end
|
180
|
-
|
181
|
-
describe "id_from_object" do
|
182
|
-
describe "when the hook wasn't implemented" do
|
183
|
-
it "raises not implemented" do
|
184
|
-
assert_raises(NotImplementedError) {
|
185
|
-
empty_schema.id_from_object(nil, nil, nil)
|
186
|
-
}
|
187
|
-
end
|
188
|
-
end
|
189
|
-
|
190
|
-
describe "when a schema is defined with a node field, but no hook" do
|
191
|
-
it "raises not implemented" do
|
192
|
-
query_type = GraphQL::ObjectType.define do
|
193
|
-
name "Query"
|
194
|
-
field :node, GraphQL::Relay::Node.field
|
195
|
-
end
|
196
|
-
|
197
|
-
assert_raises(NotImplementedError) {
|
198
|
-
GraphQL::Schema.define do
|
199
|
-
query(query_type)
|
200
|
-
resolve_type NO_OP_RESOLVE_TYPE
|
201
|
-
end
|
202
|
-
}
|
203
|
-
end
|
204
|
-
end
|
205
|
-
end
|
206
|
-
|
207
|
-
describe "directives" do
|
208
|
-
describe "when directives are not overwritten" do
|
209
|
-
it "contains built-in directives" do
|
210
|
-
schema = GraphQL::Schema.define
|
211
|
-
|
212
|
-
assert_equal ['deprecated', 'include', 'skip'], schema.directives.keys.sort
|
213
|
-
|
214
|
-
assert_equal GraphQL::Directive::DeprecatedDirective, schema.directives['deprecated']
|
215
|
-
assert_equal GraphQL::Directive::IncludeDirective, schema.directives['include']
|
216
|
-
assert_equal GraphQL::Directive::SkipDirective, schema.directives['skip']
|
217
|
-
end
|
218
|
-
end
|
219
|
-
|
220
|
-
describe "when directives are overwritten" do
|
221
|
-
it "contains only specified directives" do
|
222
|
-
schema = GraphQL::Schema.define do
|
223
|
-
directives [GraphQL::Directive::DeprecatedDirective]
|
224
|
-
end
|
225
|
-
|
226
|
-
assert_equal ['deprecated'], schema.directives.keys.sort
|
227
|
-
assert_equal GraphQL::Directive::DeprecatedDirective, schema.directives['deprecated']
|
228
|
-
end
|
229
|
-
end
|
230
|
-
end
|
231
|
-
|
232
|
-
describe ".from_definition" do
|
233
|
-
it "uses BuildFromSchema to build a schema from a definition string" do
|
234
|
-
schema = <<-SCHEMA
|
235
|
-
type Query {
|
236
|
-
str: String
|
237
|
-
}
|
238
|
-
SCHEMA
|
239
|
-
|
240
|
-
built_schema = GraphQL::Schema.from_definition(schema)
|
241
|
-
assert_equal schema.chop, GraphQL::Schema::Printer.print_schema(built_schema)
|
242
|
-
end
|
243
|
-
|
244
|
-
it "builds from a file" do
|
245
|
-
schema = GraphQL::Schema.from_definition("spec/support/magic_cards/schema.graphql")
|
246
|
-
assert_instance_of GraphQL::Schema, schema
|
247
|
-
expected_types = ["Card", "Color", "Expansion", "Printing"]
|
248
|
-
assert_equal expected_types, (expected_types & schema.types.keys)
|
249
|
-
end
|
250
|
-
end
|
251
|
-
|
252
|
-
describe ".from_introspection" do
|
253
|
-
let(:schema) {
|
254
|
-
query_root = GraphQL::ObjectType.define do
|
255
|
-
name 'Query'
|
256
|
-
field :str, types.String
|
257
|
-
end
|
258
|
-
|
259
|
-
GraphQL::Schema.define do
|
260
|
-
query query_root
|
261
|
-
end
|
262
|
-
}
|
263
|
-
let(:schema_json) {
|
264
|
-
schema.execute(GraphQL::Introspection::INTROSPECTION_QUERY)
|
265
|
-
}
|
266
|
-
it "uses Schema::Loader to build a schema from an introspection result" do
|
267
|
-
built_schema = GraphQL::Schema.from_introspection(schema_json)
|
268
|
-
assert_equal GraphQL::Schema::Printer.print_schema(schema), GraphQL::Schema::Printer.print_schema(built_schema)
|
269
|
-
end
|
270
|
-
end
|
271
|
-
|
272
|
-
describe "#instrument" do
|
273
|
-
class MultiplyInstrumenter
|
274
|
-
def initialize(multiplier)
|
275
|
-
@multiplier = multiplier
|
276
|
-
end
|
277
|
-
|
278
|
-
def instrument(type_defn, field_defn)
|
279
|
-
if type_defn.name == "Query" && field_defn.name == "int"
|
280
|
-
prev_proc = field_defn.resolve_proc
|
281
|
-
new_resolve_proc = ->(obj, args, ctx) {
|
282
|
-
inner_value = prev_proc.call(obj, args, ctx)
|
283
|
-
inner_value * @multiplier
|
284
|
-
}
|
285
|
-
|
286
|
-
field_defn.redefine do
|
287
|
-
resolve(new_resolve_proc)
|
288
|
-
end
|
289
|
-
else
|
290
|
-
field_defn
|
291
|
-
end
|
292
|
-
end
|
293
|
-
end
|
294
|
-
|
295
|
-
class VariableCountInstrumenter
|
296
|
-
attr_reader :counts
|
297
|
-
def initialize
|
298
|
-
@counts = []
|
299
|
-
end
|
300
|
-
|
301
|
-
def before_query(query)
|
302
|
-
@counts << query.variables.length
|
303
|
-
end
|
304
|
-
|
305
|
-
def after_query(query)
|
306
|
-
@counts << :end
|
307
|
-
end
|
308
|
-
end
|
309
|
-
|
310
|
-
# Use this to assert instrumenters are called as a stack
|
311
|
-
class StackCheckInstrumenter
|
312
|
-
def initialize(counter)
|
313
|
-
@counter = counter
|
314
|
-
end
|
315
|
-
|
316
|
-
def before_query(query)
|
317
|
-
@counter.counts << :in
|
318
|
-
end
|
319
|
-
|
320
|
-
def after_query(query)
|
321
|
-
@counter.counts << :out
|
322
|
-
end
|
323
|
-
end
|
324
|
-
|
325
|
-
let(:variable_counter) {
|
326
|
-
VariableCountInstrumenter.new
|
327
|
-
}
|
328
|
-
let(:query_type) {
|
329
|
-
GraphQL::ObjectType.define do
|
330
|
-
name "Query"
|
331
|
-
field :int, types.Int do
|
332
|
-
argument :value, types.Int
|
333
|
-
resolve ->(obj, args, ctx) { args[:value] == 13 ? raise("13 is unlucky") : args[:value] }
|
334
|
-
end
|
335
|
-
end
|
336
|
-
}
|
337
|
-
|
338
|
-
let(:schema) {
|
339
|
-
spec = self
|
340
|
-
GraphQL::Schema.define do
|
341
|
-
query(spec.query_type)
|
342
|
-
instrument(:field, MultiplyInstrumenter.new(3))
|
343
|
-
instrument(:query, StackCheckInstrumenter.new(spec.variable_counter))
|
344
|
-
instrument(:query, spec.variable_counter)
|
345
|
-
end
|
346
|
-
}
|
347
|
-
|
348
|
-
it "can modify field definitions" do
|
349
|
-
res = schema.execute(" { int(value: 2) } ")
|
350
|
-
assert_equal 6, res["data"]["int"]
|
351
|
-
end
|
352
|
-
|
353
|
-
it "can wrap query execution" do
|
354
|
-
schema.execute("query getInt($val: Int = 5){ int(value: $val) } ")
|
355
|
-
schema.execute("query getInt($val: Int = 5, $val2: Int = 3){ int(value: $val) int2: int(value: $val2) } ")
|
356
|
-
assert_equal [:in, 1, :end, :out, :in, 2, :end, :out], variable_counter.counts
|
357
|
-
end
|
358
|
-
|
359
|
-
it "runs even when a runtime error occurs" do
|
360
|
-
schema.execute("query getInt($val: Int = 5){ int(value: $val) } ")
|
361
|
-
assert_raises(RuntimeError) {
|
362
|
-
schema.execute("query getInt($val: Int = 13){ int(value: $val) } ")
|
363
|
-
}
|
364
|
-
assert_equal [:in, 1, :end, :out, :in, 1, :end, :out], variable_counter.counts
|
365
|
-
end
|
366
|
-
|
367
|
-
it "can be applied after the fact" do
|
368
|
-
res = schema.execute("query { int(value: 2) } ")
|
369
|
-
assert_equal 6, res["data"]["int"]
|
370
|
-
|
371
|
-
schema.instrument(:field, MultiplyInstrumenter.new(4))
|
372
|
-
res = schema.execute("query { int(value: 2) } ")
|
373
|
-
assert_equal 24, res["data"]["int"]
|
374
|
-
end
|
375
|
-
|
376
|
-
class CyclicalDependencyInstrumentation
|
377
|
-
def initialize(schema)
|
378
|
-
@schema = schema
|
379
|
-
end
|
380
|
-
|
381
|
-
def instrument(type, field)
|
382
|
-
@schema.types # infinite loop
|
383
|
-
field
|
384
|
-
end
|
385
|
-
end
|
386
|
-
|
387
|
-
describe "field instrumenters which cause loops" do
|
388
|
-
it "has a nice error message" do
|
389
|
-
assert_raises(GraphQL::Schema::CyclicalDefinitionError) do
|
390
|
-
schema.redefine {
|
391
|
-
instrument(:field, CyclicalDependencyInstrumentation.new(self.target))
|
392
|
-
}
|
393
|
-
end
|
394
|
-
end
|
395
|
-
end
|
396
|
-
end
|
397
|
-
|
398
|
-
describe "#lazy? / #lazy_method_name" do
|
399
|
-
class LazyObj; end
|
400
|
-
class LazyObjChild < LazyObj; end
|
401
|
-
|
402
|
-
let(:schema) {
|
403
|
-
query_type = GraphQL::ObjectType.define(name: "Query")
|
404
|
-
GraphQL::Schema.define do
|
405
|
-
query(query_type)
|
406
|
-
lazy_resolve(Integer, :itself)
|
407
|
-
lazy_resolve(LazyObj, :dup)
|
408
|
-
end
|
409
|
-
}
|
410
|
-
|
411
|
-
it "returns registered lazy method names by class/superclass, or returns nil" do
|
412
|
-
assert_equal :itself, schema.lazy_method_name(68)
|
413
|
-
assert_equal true, schema.lazy?(77)
|
414
|
-
assert_equal :dup, schema.lazy_method_name(LazyObj.new)
|
415
|
-
assert_equal true, schema.lazy?(LazyObj.new)
|
416
|
-
assert_equal :dup, schema.lazy_method_name(LazyObjChild.new)
|
417
|
-
assert_equal true, schema.lazy?(LazyObjChild.new)
|
418
|
-
assert_nil schema.lazy_method_name({})
|
419
|
-
assert_equal false, schema.lazy?({})
|
420
|
-
end
|
421
|
-
end
|
422
|
-
|
423
|
-
describe "#dup" do
|
424
|
-
it "copies internal state" do
|
425
|
-
schema_1 = schema.graphql_definition
|
426
|
-
schema_2 = schema_1.dup
|
427
|
-
refute schema_2.types.equal?(schema_1.types)
|
428
|
-
|
429
|
-
refute schema_2.instrumenters.equal?(schema_1.instrumenters)
|
430
|
-
assert_equal schema_2.instrumenters, schema_1.instrumenters
|
431
|
-
|
432
|
-
refute schema_2.middleware.equal?(schema_1.middleware)
|
433
|
-
assert_equal schema_2.middleware, schema_1.middleware
|
434
|
-
|
435
|
-
schema_2.middleware << ->(*args) { :noop }
|
436
|
-
refute_equal schema_2.middleware, schema_1.middleware
|
437
|
-
end
|
438
|
-
end
|
439
|
-
|
440
|
-
describe "#validate" do
|
441
|
-
it "returns errors on the query string" do
|
442
|
-
errors = schema.validate("{ cheese(id: 1) { flavor flavor: id } }")
|
443
|
-
assert_equal 1, errors.length
|
444
|
-
assert_equal "Field 'flavor' has a field conflict: flavor or id?", errors.first.message
|
445
|
-
|
446
|
-
errors = schema.validate("{ cheese(id: 1) { flavor id } }")
|
447
|
-
assert_equal [], errors
|
448
|
-
end
|
449
|
-
|
450
|
-
it "accepts a list of custom rules" do
|
451
|
-
custom_rules = GraphQL::StaticValidation::ALL_RULES - [GraphQL::StaticValidation::FragmentsAreNamed]
|
452
|
-
errors = schema.validate("fragment on Cheese { id }", rules: custom_rules)
|
453
|
-
assert_equal([], errors)
|
454
|
-
end
|
455
|
-
|
456
|
-
it "accepts a context hash" do
|
457
|
-
context = { admin: false }
|
458
|
-
# AdminSchema is a barebones dummy schema, where fields are visible only with context[:admin] == true
|
459
|
-
errors = admin_schema.validate('query { adminOnlyMessage }', context: context)
|
460
|
-
assert_equal 1, errors.length
|
461
|
-
assert_equal("Field 'adminOnlyMessage' doesn't exist on type 'AdminDairyAppQuery'", errors.first.message)
|
462
|
-
|
463
|
-
context = { admin: true }
|
464
|
-
errors = admin_schema.validate('query { adminOnlyMessage }', context: context)
|
465
|
-
assert_equal([], errors)
|
466
|
-
end
|
467
|
-
end
|
468
|
-
|
469
|
-
describe "#as_json / #to_json" do
|
470
|
-
it "returns the instrospection result" do
|
471
|
-
result = schema.execute(GraphQL::Introspection::INTROSPECTION_QUERY)
|
472
|
-
assert_equal result, schema.as_json
|
473
|
-
assert_equal result, JSON.parse(schema.to_json)
|
474
|
-
end
|
475
|
-
end
|
476
|
-
|
477
|
-
describe "#as_json" do
|
478
|
-
it "returns a hash" do
|
479
|
-
result = schema.execute(GraphQL::Introspection::INTROSPECTION_QUERY)
|
480
|
-
assert_equal result.as_json.class, Hash
|
481
|
-
end
|
482
|
-
end
|
483
|
-
|
484
|
-
describe "#get_field" do
|
485
|
-
it "returns fields by type or type name" do
|
486
|
-
field = schema.get_field("Cheese", "id")
|
487
|
-
assert_instance_of GraphQL::Field, field
|
488
|
-
field_2 = schema.get_field(Dummy::Cheese.graphql_definition, "id")
|
489
|
-
assert_equal field, field_2
|
490
|
-
end
|
491
|
-
end
|
492
|
-
|
493
|
-
describe "class-based schemas" do
|
494
|
-
it "delegates to the graphql definition" do
|
495
|
-
# Not delegated:
|
496
|
-
assert_equal Jazz::Query.graphql_definition, Jazz::Schema.query
|
497
|
-
assert Jazz::Schema.respond_to?(:query)
|
498
|
-
# Delegated
|
499
|
-
assert_equal [], Jazz::Schema.tracers
|
500
|
-
assert Jazz::Schema.respond_to?(:tracers)
|
501
|
-
end
|
502
|
-
|
503
|
-
it "works with plugins" do
|
504
|
-
assert_equal "xyz", Jazz::Schema.metadata[:plugin_key]
|
505
|
-
end
|
506
|
-
end
|
507
|
-
end
|