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,101 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require 'spec_helper'
|
3
|
-
|
4
|
-
describe GraphQL::Relay::BaseConnection do
|
5
|
-
module Encoder
|
6
|
-
module_function
|
7
|
-
def encode(str, nonce: false); str; end
|
8
|
-
def decode(str, nonce: false); str; end
|
9
|
-
end
|
10
|
-
|
11
|
-
let(:schema) { OpenStruct.new(cursor_encoder: Encoder) }
|
12
|
-
let(:context) { OpenStruct.new(schema: schema) }
|
13
|
-
|
14
|
-
describe ".connection_for_nodes" do
|
15
|
-
it "resolves most specific connection type" do
|
16
|
-
class SpecialArray < Array; end
|
17
|
-
class SpecialArrayConnection < GraphQL::Relay::BaseConnection; end
|
18
|
-
GraphQL::Relay::BaseConnection.register_connection_implementation(SpecialArray, SpecialArrayConnection)
|
19
|
-
|
20
|
-
nodes = SpecialArray.new
|
21
|
-
|
22
|
-
conn_class = GraphQL::Relay::BaseConnection.connection_for_nodes(nodes)
|
23
|
-
assert_equal conn_class, SpecialArrayConnection
|
24
|
-
end
|
25
|
-
end
|
26
|
-
|
27
|
-
describe "arguments" do
|
28
|
-
it "limits pagination args to positive numbers" do
|
29
|
-
args = {
|
30
|
-
first: 1,
|
31
|
-
last: -1,
|
32
|
-
}
|
33
|
-
conn = GraphQL::Relay::BaseConnection.new([], args, context: context)
|
34
|
-
assert_equal 1, conn.first
|
35
|
-
assert_equal 0, conn.last
|
36
|
-
|
37
|
-
args = {
|
38
|
-
first: nil,
|
39
|
-
}
|
40
|
-
conn = GraphQL::Relay::BaseConnection.new([], args, context: context)
|
41
|
-
assert_nil conn.first
|
42
|
-
end
|
43
|
-
end
|
44
|
-
|
45
|
-
describe "#context" do
|
46
|
-
it "Has public access to the field context" do
|
47
|
-
conn = GraphQL::Relay::BaseConnection.new([], {}, context: context)
|
48
|
-
assert_equal context, conn.context
|
49
|
-
end
|
50
|
-
end
|
51
|
-
|
52
|
-
describe "#inspect" do
|
53
|
-
it "inspects nicely" do
|
54
|
-
args = {
|
55
|
-
first: 1,
|
56
|
-
last: -1,
|
57
|
-
}
|
58
|
-
conn = GraphQL::Relay::BaseConnection.new([], args, context: context)
|
59
|
-
assert_equal "#<GraphQL::Relay::Connection @parent=nil @arguments={:first=>1, :last=>-1}>", conn.inspect
|
60
|
-
end
|
61
|
-
end
|
62
|
-
|
63
|
-
describe "#encode / #decode" do
|
64
|
-
module ReverseEncoder
|
65
|
-
module_function
|
66
|
-
def encode(str, nonce: false); str.reverse; end
|
67
|
-
def decode(str, nonce: false); str.reverse; end
|
68
|
-
end
|
69
|
-
|
70
|
-
let(:schema) { OpenStruct.new(cursor_encoder: ReverseEncoder) }
|
71
|
-
let(:context) { OpenStruct.new(schema: schema) }
|
72
|
-
|
73
|
-
it "Uses the schema's encoder" do
|
74
|
-
conn = GraphQL::Relay::BaseConnection.new([], {}, context: context)
|
75
|
-
|
76
|
-
assert_equal "1/nosreP", conn.encode("Person/1")
|
77
|
-
assert_equal "Person/1", conn.decode("1/nosreP")
|
78
|
-
end
|
79
|
-
|
80
|
-
it "defaults to base64 (urlsafe_base64 without padding)" do
|
81
|
-
conn = GraphQL::Relay::BaseConnection.new([], {}, context: nil)
|
82
|
-
|
83
|
-
assert_equal "UGVyc29uLzE", conn.encode("Person/1")
|
84
|
-
assert_equal "Person/1", conn.decode("UGVyc29uLzE=") # can decode with padding
|
85
|
-
end
|
86
|
-
|
87
|
-
it "handles trimmed base64" do
|
88
|
-
conn = GraphQL::Relay::BaseConnection.new([], {}, context: nil)
|
89
|
-
|
90
|
-
assert_equal "Person/1", conn.decode("UGVyc29uLzE")
|
91
|
-
end
|
92
|
-
|
93
|
-
it "raises an execution error when an invalid cursor is given" do
|
94
|
-
conn = GraphQL::Relay::BaseConnection.new([], {}, context: nil)
|
95
|
-
|
96
|
-
assert_raises(GraphQL::ExecutionError) do
|
97
|
-
conn.decode("0")
|
98
|
-
end
|
99
|
-
end
|
100
|
-
end
|
101
|
-
end
|
@@ -1,80 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require "spec_helper"
|
3
|
-
|
4
|
-
describe GraphQL::Relay::ConnectionInstrumentation do
|
5
|
-
it "replaces the previous field definition" do
|
6
|
-
test_type = GraphQL::ObjectType.define do
|
7
|
-
name "Test"
|
8
|
-
connection :tests, test_type.connection_type
|
9
|
-
end
|
10
|
-
|
11
|
-
assert_equal ["tests"], test_type.fields.keys
|
12
|
-
end
|
13
|
-
|
14
|
-
let(:build_schema) {
|
15
|
-
test_type = nil
|
16
|
-
|
17
|
-
test_field = GraphQL::Field.define do
|
18
|
-
type(test_type.connection_type)
|
19
|
-
property(:something)
|
20
|
-
end
|
21
|
-
|
22
|
-
test_type = GraphQL::ObjectType.define do
|
23
|
-
name "Test"
|
24
|
-
connection :tests, test_field
|
25
|
-
end
|
26
|
-
|
27
|
-
[
|
28
|
-
test_field,
|
29
|
-
GraphQL::Schema.define(query: test_type, raise_definition_error: true)
|
30
|
-
]
|
31
|
-
}
|
32
|
-
|
33
|
-
it "leaves the original field untouched" do
|
34
|
-
test_field, test_schema = build_schema
|
35
|
-
conn_field = test_schema.get_field(test_schema.query, "tests")
|
36
|
-
|
37
|
-
assert_equal 0, test_field.arguments.length
|
38
|
-
assert_equal 4, conn_field.arguments.length
|
39
|
-
|
40
|
-
assert_instance_of GraphQL::Field::Resolve::MethodResolve, test_field.resolve_proc
|
41
|
-
assert_instance_of GraphQL::Relay::ConnectionResolve, conn_field.resolve_proc
|
42
|
-
end
|
43
|
-
|
44
|
-
it "passes connection behaviors to redefinitions" do
|
45
|
-
_test_field, test_schema = build_schema
|
46
|
-
connection_field = test_schema.get_field(test_schema.query, "tests")
|
47
|
-
redefined_connection_field = connection_field.redefine { argument "name", types.String }
|
48
|
-
|
49
|
-
assert_equal 4, connection_field.arguments.size
|
50
|
-
assert_equal 5, redefined_connection_field.arguments.size
|
51
|
-
|
52
|
-
assert_instance_of GraphQL::Relay::ConnectionResolve, connection_field.resolve_proc
|
53
|
-
assert_instance_of GraphQL::Relay::ConnectionResolve, redefined_connection_field.resolve_proc
|
54
|
-
end
|
55
|
-
|
56
|
-
# field instrumentation doesn't exist here
|
57
|
-
if !TESTING_INTERPRETER
|
58
|
-
describe "after_built_ins instrumentation" do
|
59
|
-
it "has access to connection objects" do
|
60
|
-
query_str = <<-GRAPHQL
|
61
|
-
{
|
62
|
-
rebels {
|
63
|
-
ships {
|
64
|
-
pageInfo {
|
65
|
-
__typename
|
66
|
-
}
|
67
|
-
}
|
68
|
-
}
|
69
|
-
}
|
70
|
-
GRAPHQL
|
71
|
-
ctx = { before_built_ins: [], after_built_ins: [] }
|
72
|
-
star_wars_query(query_str, {}, context: ctx)
|
73
|
-
# These are data classes, later they're wrapped with type proxies
|
74
|
-
assert_equal ["StarWars::FactionRecord", "GraphQL::Relay::ArrayConnection", "GraphQL::Relay::ArrayConnection"], ctx[:before_built_ins]
|
75
|
-
# After the object is wrapped in a connection, it sees the connection object
|
76
|
-
assert_equal ["StarWars::Faction", "StarWars::ShipConnectionWithParentType", "GraphQL::Types::Relay::PageInfo"], ctx[:after_built_ins]
|
77
|
-
end
|
78
|
-
end
|
79
|
-
end
|
80
|
-
end
|
@@ -1,79 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require "spec_helper"
|
3
|
-
|
4
|
-
describe GraphQL::Relay::ConnectionResolve do
|
5
|
-
let(:query_string) { <<-GRAPHQL
|
6
|
-
query getShips($name: String!){
|
7
|
-
rebels {
|
8
|
-
ships(nameIncludes: $name) {
|
9
|
-
edges {
|
10
|
-
node {
|
11
|
-
name
|
12
|
-
}
|
13
|
-
}
|
14
|
-
parentClassName
|
15
|
-
}
|
16
|
-
}
|
17
|
-
}
|
18
|
-
GRAPHQL
|
19
|
-
}
|
20
|
-
|
21
|
-
describe "when an execution error is returned" do
|
22
|
-
it "adds an error" do
|
23
|
-
result = star_wars_query(query_string, { "name" => "error"})
|
24
|
-
assert_equal 1, result["errors"].length
|
25
|
-
assert_equal "error from within connection", result["errors"][0]["message"]
|
26
|
-
end
|
27
|
-
|
28
|
-
it "adds an error for a lazy error" do
|
29
|
-
result = star_wars_query(query_string, { "name" => "lazyError"})
|
30
|
-
assert_equal 1, result["errors"].length
|
31
|
-
assert_equal "lazy error from within connection", result["errors"][0]["message"]
|
32
|
-
end
|
33
|
-
|
34
|
-
it "adds an error for a lazy raised error" do
|
35
|
-
result = star_wars_query(query_string, { "name" => "lazyRaisedError"})
|
36
|
-
assert_equal 1, result["errors"].length
|
37
|
-
assert_equal "lazy raised error from within connection", result["errors"][0]["message"]
|
38
|
-
end
|
39
|
-
|
40
|
-
it "adds an error for a raised error" do
|
41
|
-
result = star_wars_query(query_string, { "name" => "raisedError"})
|
42
|
-
assert_equal 1, result["errors"].length
|
43
|
-
assert_equal "error raised from within connection", result["errors"][0]["message"]
|
44
|
-
end
|
45
|
-
end
|
46
|
-
|
47
|
-
|
48
|
-
describe "when a lazy object is returned" do
|
49
|
-
it "returns the items with the correct parent" do
|
50
|
-
result = star_wars_query(query_string, { "name" => "lazyObject"})
|
51
|
-
assert_equal 5, result["data"]["rebels"]["ships"]["edges"].length
|
52
|
-
assert_equal "StarWars::FactionRecord", result["data"]["rebels"]["ships"]["parentClassName"]
|
53
|
-
end
|
54
|
-
end
|
55
|
-
|
56
|
-
describe "when a resolver is used" do
|
57
|
-
it "returns the items with the correct parent" do
|
58
|
-
resolver_query_str = <<-GRAPHQL
|
59
|
-
{
|
60
|
-
rebels {
|
61
|
-
shipsByResolver {
|
62
|
-
parentClassName
|
63
|
-
}
|
64
|
-
}
|
65
|
-
}
|
66
|
-
GRAPHQL
|
67
|
-
result = star_wars_query(resolver_query_str)
|
68
|
-
assert_equal "StarWars::FactionRecord", result["data"]["rebels"]["shipsByResolver"]["parentClassName"]
|
69
|
-
end
|
70
|
-
end
|
71
|
-
|
72
|
-
describe "when nil is returned" do
|
73
|
-
it "becomes null" do
|
74
|
-
result = star_wars_query(query_string, { "name" => "null" })
|
75
|
-
conn = result["data"]["rebels"]["ships"]
|
76
|
-
assert_nil conn
|
77
|
-
end
|
78
|
-
end
|
79
|
-
end
|
@@ -1,106 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require "spec_helper"
|
3
|
-
|
4
|
-
describe GraphQL::Relay::ConnectionType do
|
5
|
-
describe ".create_type" do
|
6
|
-
describe "connections with custom Edge classes / EdgeTypes" do
|
7
|
-
let(:query_string) {%|
|
8
|
-
{
|
9
|
-
rebels {
|
10
|
-
basesWithCustomEdge {
|
11
|
-
totalCountTimes100
|
12
|
-
fieldName
|
13
|
-
edges {
|
14
|
-
upcasedName
|
15
|
-
upcasedParentName
|
16
|
-
edgeClassName
|
17
|
-
node {
|
18
|
-
name
|
19
|
-
}
|
20
|
-
cursor
|
21
|
-
}
|
22
|
-
}
|
23
|
-
}
|
24
|
-
}
|
25
|
-
|}
|
26
|
-
|
27
|
-
it "uses the custom edge and custom connection" do
|
28
|
-
result = star_wars_query(query_string)
|
29
|
-
bases = result["data"]["rebels"]["basesWithCustomEdge"]
|
30
|
-
assert_equal 300, bases["totalCountTimes100"]
|
31
|
-
assert_equal 'basesWithCustomEdge', bases["fieldName"]
|
32
|
-
assert_equal ["YAVIN", "ECHO BASE", "SECRET HIDEOUT"] , bases["edges"].map { |e| e["upcasedName"] }
|
33
|
-
assert_equal ["Yavin", "Echo Base", "Secret Hideout"] , bases["edges"].map { |e| e["node"]["name"] }
|
34
|
-
assert_equal ["StarWars::CustomBaseEdge"] , bases["edges"].map { |e| e["edgeClassName"] }.uniq
|
35
|
-
upcased_rebels_name = "ALLIANCE TO RESTORE THE REPUBLIC"
|
36
|
-
assert_equal [upcased_rebels_name] , bases["edges"].map { |e| e["upcasedParentName"] }.uniq
|
37
|
-
end
|
38
|
-
end
|
39
|
-
|
40
|
-
describe "connections with nodes field" do
|
41
|
-
let(:query_string) {%|
|
42
|
-
{
|
43
|
-
rebels {
|
44
|
-
bases {
|
45
|
-
nodes {
|
46
|
-
name
|
47
|
-
}
|
48
|
-
}
|
49
|
-
basesWithCustomEdge {
|
50
|
-
nodes {
|
51
|
-
name
|
52
|
-
}
|
53
|
-
}
|
54
|
-
}
|
55
|
-
}
|
56
|
-
|}
|
57
|
-
|
58
|
-
it "uses the custom edge and custom connection" do
|
59
|
-
result = star_wars_query(query_string)
|
60
|
-
bases = result["data"]["rebels"]["bases"]
|
61
|
-
assert_equal ["Yavin", "Echo Base", "Secret Hideout"] , bases["nodes"].map { |e| e["name"] }
|
62
|
-
bases_with_custom_edge = result["data"]["rebels"]["basesWithCustomEdge"]
|
63
|
-
assert_equal ["Yavin", "Echo Base", "Secret Hideout"] , bases_with_custom_edge["nodes"].map { |e| e["name"] }
|
64
|
-
end
|
65
|
-
end
|
66
|
-
|
67
|
-
describe "connections without nodes field" do
|
68
|
-
let(:query_string) {%|
|
69
|
-
{
|
70
|
-
rebels {
|
71
|
-
basesWithoutNodes {
|
72
|
-
nodes {
|
73
|
-
name
|
74
|
-
}
|
75
|
-
}
|
76
|
-
}
|
77
|
-
}
|
78
|
-
|}
|
79
|
-
|
80
|
-
it "raises error" do
|
81
|
-
result = star_wars_query(query_string)
|
82
|
-
assert_includes result["errors"][0]["message"], "Field 'nodes' doesn't exist"
|
83
|
-
end
|
84
|
-
end
|
85
|
-
|
86
|
-
describe "when an execution error is raised" do
|
87
|
-
let(:query_string) {%|
|
88
|
-
{
|
89
|
-
basesWithNullName {
|
90
|
-
edges {
|
91
|
-
node {
|
92
|
-
name
|
93
|
-
}
|
94
|
-
}
|
95
|
-
}
|
96
|
-
}
|
97
|
-
|}
|
98
|
-
|
99
|
-
it "nullifies the parent and adds an error" do
|
100
|
-
result = star_wars_query(query_string)
|
101
|
-
assert_nil result["data"]["basesWithNullName"]["edges"][0]["node"]
|
102
|
-
assert_equal "Boom!", result["errors"][0]["message"]
|
103
|
-
end
|
104
|
-
end
|
105
|
-
end
|
106
|
-
end
|
@@ -1,10 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require "spec_helper"
|
3
|
-
|
4
|
-
describe GraphQL::Relay::Edge do
|
5
|
-
it "inspects nicely" do
|
6
|
-
connection = OpenStruct.new(parent: "Parent")
|
7
|
-
edge = GraphQL::Relay::Edge.new("Node", connection)
|
8
|
-
assert_equal '#<GraphQL::Relay::Edge ("Parent" => "Node")>', edge.inspect
|
9
|
-
end
|
10
|
-
end
|
@@ -1,387 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require 'spec_helper'
|
3
|
-
|
4
|
-
describe GraphQL::Relay::Mutation do
|
5
|
-
let(:query_string) {%|
|
6
|
-
mutation addBagel($clientMutationId: String, $shipName: String = "Bagel") {
|
7
|
-
introduceShip(input: {shipName: $shipName, factionId: "1", clientMutationId: $clientMutationId}) {
|
8
|
-
clientMutationId
|
9
|
-
shipEdge {
|
10
|
-
node { name, id }
|
11
|
-
}
|
12
|
-
faction { name }
|
13
|
-
}
|
14
|
-
}
|
15
|
-
|}
|
16
|
-
let(:introspect) {%|
|
17
|
-
{
|
18
|
-
__schema {
|
19
|
-
types { name, fields { name } }
|
20
|
-
}
|
21
|
-
}
|
22
|
-
|}
|
23
|
-
|
24
|
-
after do
|
25
|
-
StarWars::DATA["Ship"].delete("9")
|
26
|
-
StarWars::DATA["Faction"]["1"].ships.delete("9")
|
27
|
-
end
|
28
|
-
|
29
|
-
it "supports null values" do
|
30
|
-
result = star_wars_query(query_string, "clientMutationId" => "1234", "shipName" => nil)
|
31
|
-
|
32
|
-
expected = {"data" => {
|
33
|
-
"introduceShip" => {
|
34
|
-
"clientMutationId" => "1234",
|
35
|
-
"shipEdge" => {
|
36
|
-
"node" => {
|
37
|
-
"name" => nil,
|
38
|
-
"id" => GraphQL::Schema::UniqueWithinType.encode("Ship", "9"),
|
39
|
-
},
|
40
|
-
},
|
41
|
-
"faction" => {"name" => StarWars::DATA["Faction"]["1"].name }
|
42
|
-
}
|
43
|
-
}}
|
44
|
-
assert_equal(expected, result)
|
45
|
-
end
|
46
|
-
|
47
|
-
it "supports lazy resolution" do
|
48
|
-
result = star_wars_query(query_string, "clientMutationId" => "1234", "shipName" => "Slave II")
|
49
|
-
assert_equal "Slave II", result["data"]["introduceShip"]["shipEdge"]["node"]["name"]
|
50
|
-
end
|
51
|
-
|
52
|
-
it "raises when using a generated return type and resolve doesnt return a Hash" do
|
53
|
-
bad_mutation = GraphQL::Relay::Mutation.define do
|
54
|
-
name 'BadMutation'
|
55
|
-
description 'A mutation type that doesnt return a hash'
|
56
|
-
|
57
|
-
input_field :input, types.String
|
58
|
-
return_field :return, types.String
|
59
|
-
|
60
|
-
resolve ->(_, _, _) {
|
61
|
-
# Should have been { return: 'my_bad_return_value' }
|
62
|
-
'my_bad_return_value'
|
63
|
-
}
|
64
|
-
end
|
65
|
-
|
66
|
-
root = GraphQL::ObjectType.define do
|
67
|
-
name "MutationRoot"
|
68
|
-
field :bad, bad_mutation.field
|
69
|
-
end
|
70
|
-
|
71
|
-
schema = GraphQL::Schema.define { mutation(root) }
|
72
|
-
|
73
|
-
exception = assert_raises(StandardError) do
|
74
|
-
schema.execute('mutation { bad(input: { input: "graphql" }) { return } }')
|
75
|
-
end
|
76
|
-
|
77
|
-
expected_message = "Expected `my_bad_return_value` to be a Hash."\
|
78
|
-
" Return a hash when using `return_field` or specify a custom `return_type`."
|
79
|
-
assert_equal expected_message, exception.message
|
80
|
-
end
|
81
|
-
|
82
|
-
it "returns the result & clientMutationId" do
|
83
|
-
result = star_wars_query(query_string, "clientMutationId" => "1234")
|
84
|
-
expected = {"data" => {
|
85
|
-
"introduceShip" => {
|
86
|
-
"clientMutationId" => "1234",
|
87
|
-
"shipEdge" => {
|
88
|
-
"node" => {
|
89
|
-
"name" => "Bagel",
|
90
|
-
"id" => GraphQL::Schema::UniqueWithinType.encode("Ship", "9"),
|
91
|
-
},
|
92
|
-
},
|
93
|
-
"faction" => {"name" => StarWars::DATA["Faction"]["1"].name }
|
94
|
-
}
|
95
|
-
}}
|
96
|
-
assert_equal(expected, result)
|
97
|
-
end
|
98
|
-
|
99
|
-
it "doesn't require a clientMutationId to perform mutations" do
|
100
|
-
result = star_wars_query(query_string)
|
101
|
-
new_ship_name = result["data"]["introduceShip"]["shipEdge"]["node"]["name"]
|
102
|
-
assert_equal("Bagel", new_ship_name)
|
103
|
-
end
|
104
|
-
|
105
|
-
it "applies the description to the derived field" do
|
106
|
-
field = GraphQL::Schema::Field.from_options(name: "x", **StarWars::IntroduceShipMutation.field_options)
|
107
|
-
assert_equal "Add a ship to this faction", field.description
|
108
|
-
end
|
109
|
-
|
110
|
-
it "inserts itself into the derived objects' metadata" do
|
111
|
-
field = GraphQL::Schema::Field.from_options(name: "x", **StarWars::IntroduceShipMutation.field_options)
|
112
|
-
assert_equal StarWars::IntroduceShipMutation, field.mutation
|
113
|
-
assert_equal StarWars::IntroduceShipMutation, field.to_graphql.mutation
|
114
|
-
assert_equal StarWars::IntroduceShipMutation, StarWars::IntroduceShipMutation.payload_type.mutation
|
115
|
-
assert_equal StarWars::IntroduceShipMutation, StarWars::IntroduceShipMutation.input_type.mutation
|
116
|
-
end
|
117
|
-
|
118
|
-
describe "return_field ... property:" do
|
119
|
-
it "resolves correctly" do
|
120
|
-
query_str = <<-GRAPHQL
|
121
|
-
mutation {
|
122
|
-
introduceShip(input: {shipName: "Bagel", factionId: "1"}) {
|
123
|
-
aliasedFaction { name }
|
124
|
-
}
|
125
|
-
}
|
126
|
-
GRAPHQL
|
127
|
-
result = star_wars_query(query_str)
|
128
|
-
faction_name = result["data"]["introduceShip"]["aliasedFaction"]["name"]
|
129
|
-
assert_equal("Alliance to Restore the Republic", faction_name)
|
130
|
-
end
|
131
|
-
end
|
132
|
-
|
133
|
-
describe "aliased methods" do
|
134
|
-
describe "on an unreached mutation" do
|
135
|
-
it 'still ensures definitions' do
|
136
|
-
UnreachedMutation = GraphQL::Relay::Mutation.define do
|
137
|
-
name 'UnreachedMutation'
|
138
|
-
description 'A mutation type not directly used in the schema.'
|
139
|
-
|
140
|
-
input_field :input, types.String
|
141
|
-
return_field :return, types.String
|
142
|
-
end
|
143
|
-
|
144
|
-
assert UnreachedMutation.input_fields['input']
|
145
|
-
assert UnreachedMutation.return_fields['return']
|
146
|
-
end
|
147
|
-
end
|
148
|
-
end
|
149
|
-
|
150
|
-
describe "providing a return type" do
|
151
|
-
let(:custom_return_type) {
|
152
|
-
GraphQL::ObjectType.define do
|
153
|
-
name "CustomReturnType"
|
154
|
-
field :name, types.String
|
155
|
-
end
|
156
|
-
}
|
157
|
-
|
158
|
-
let(:mutation) {
|
159
|
-
custom_type = custom_return_type
|
160
|
-
GraphQL::Relay::Mutation.define do
|
161
|
-
name "CustomReturnTypeTest"
|
162
|
-
|
163
|
-
input_field :nullDefault, types.String, default_value: nil
|
164
|
-
input_field :noDefault, types.String
|
165
|
-
input_field :stringDefault, types.String, default_value: 'String'
|
166
|
-
|
167
|
-
return_type custom_type
|
168
|
-
resolve ->(obj, input, ctx) {
|
169
|
-
OpenStruct.new(name: "Custom Return Type Test")
|
170
|
-
}
|
171
|
-
end
|
172
|
-
}
|
173
|
-
|
174
|
-
let(:input) { mutation.field.arguments['input'].type.unwrap }
|
175
|
-
|
176
|
-
let(:schema) {
|
177
|
-
mutation_field = mutation.field
|
178
|
-
|
179
|
-
mutation_root = GraphQL::ObjectType.define do
|
180
|
-
name "Mutation"
|
181
|
-
field :custom, mutation_field
|
182
|
-
end
|
183
|
-
|
184
|
-
GraphQL::Schema.define do
|
185
|
-
mutation(mutation_root)
|
186
|
-
end
|
187
|
-
}
|
188
|
-
|
189
|
-
it "uses the provided type" do
|
190
|
-
assert_equal custom_return_type, mutation.return_type
|
191
|
-
assert_equal custom_return_type, mutation.field.type
|
192
|
-
|
193
|
-
result = schema.execute("mutation { custom(input: {}) { name } }")
|
194
|
-
assert_equal "Custom Return Type Test", result["data"]["custom"]["name"]
|
195
|
-
end
|
196
|
-
|
197
|
-
it "doesn't get a mutation in the metadata" do
|
198
|
-
assert_nil custom_return_type.mutation
|
199
|
-
end
|
200
|
-
|
201
|
-
it "supports input fields with nil default value" do
|
202
|
-
assert input.arguments['nullDefault'].default_value?
|
203
|
-
assert_nil input.arguments['nullDefault'].default_value
|
204
|
-
end
|
205
|
-
|
206
|
-
it "supports input fields with no default value" do
|
207
|
-
assert !input.arguments['noDefault'].default_value?
|
208
|
-
assert_nil input.arguments['noDefault'].default_value
|
209
|
-
end
|
210
|
-
|
211
|
-
it "supports input fields with non-nil default value" do
|
212
|
-
assert input.arguments['stringDefault'].default_value?
|
213
|
-
assert_equal "String", input.arguments['stringDefault'].default_value
|
214
|
-
end
|
215
|
-
end
|
216
|
-
|
217
|
-
describe "specifying return interfaces" do
|
218
|
-
let(:result_interface) {
|
219
|
-
GraphQL::InterfaceType.define do
|
220
|
-
name "ResultInterface"
|
221
|
-
field :success, !types.Boolean
|
222
|
-
field :notice, types.String
|
223
|
-
end
|
224
|
-
}
|
225
|
-
|
226
|
-
let(:error_interface) {
|
227
|
-
GraphQL::InterfaceType.define do
|
228
|
-
name "ErrorInterface"
|
229
|
-
field :error, types.String
|
230
|
-
end
|
231
|
-
}
|
232
|
-
|
233
|
-
let(:mutation) {
|
234
|
-
interfaces = [result_interface, error_interface]
|
235
|
-
GraphQL::Relay::Mutation.define do
|
236
|
-
name "ReturnTypeWithInterfaceTest"
|
237
|
-
|
238
|
-
return_field :name, types.String
|
239
|
-
|
240
|
-
return_interfaces interfaces
|
241
|
-
|
242
|
-
resolve ->(obj, input, ctx) {
|
243
|
-
{
|
244
|
-
name: "Type Specific Field",
|
245
|
-
success: true,
|
246
|
-
notice: "Success Interface Field",
|
247
|
-
error: "Error Interface Field"
|
248
|
-
}
|
249
|
-
}
|
250
|
-
end
|
251
|
-
}
|
252
|
-
|
253
|
-
let(:schema) {
|
254
|
-
mutation_field = mutation.field
|
255
|
-
|
256
|
-
mutation_root = GraphQL::ObjectType.define do
|
257
|
-
name "Mutation"
|
258
|
-
field :custom, mutation_field
|
259
|
-
end
|
260
|
-
|
261
|
-
GraphQL::Schema.define do
|
262
|
-
mutation(mutation_root)
|
263
|
-
resolve_type NO_OP_RESOLVE_TYPE
|
264
|
-
end
|
265
|
-
}
|
266
|
-
|
267
|
-
it 'makes the mutation type implement the interfaces' do
|
268
|
-
assert_equal [result_interface, error_interface], mutation.return_type.interfaces
|
269
|
-
end
|
270
|
-
|
271
|
-
it "returns interface values and specific ones" do
|
272
|
-
result = schema.execute('mutation { custom(input: {clientMutationId: "123"}) { name, success, notice, error, clientMutationId } }')
|
273
|
-
assert_equal "Type Specific Field", result["data"]["custom"]["name"]
|
274
|
-
assert_equal "Success Interface Field", result["data"]["custom"]["notice"]
|
275
|
-
assert_equal true, result["data"]["custom"]["success"]
|
276
|
-
assert_equal "Error Interface Field", result["data"]["custom"]["error"]
|
277
|
-
assert_equal "123", result["data"]["custom"]["clientMutationId"]
|
278
|
-
end
|
279
|
-
end
|
280
|
-
|
281
|
-
describe "handling errors" do
|
282
|
-
it "supports returning an error in resolve" do
|
283
|
-
result = star_wars_query(query_string, "clientMutationId" => "5678", "shipName" => "Millennium Falcon")
|
284
|
-
|
285
|
-
expected = {
|
286
|
-
"data" => {
|
287
|
-
"introduceShip" => nil,
|
288
|
-
},
|
289
|
-
"errors" => [
|
290
|
-
{
|
291
|
-
"message" => "Sorry, Millennium Falcon ship is reserved",
|
292
|
-
"locations" => [ { "line" => 3 , "column" => 7}],
|
293
|
-
"path" => ["introduceShip"]
|
294
|
-
}
|
295
|
-
]
|
296
|
-
}
|
297
|
-
|
298
|
-
assert_equal(expected, result)
|
299
|
-
end
|
300
|
-
|
301
|
-
it "supports raising an error in a lazy callback" do
|
302
|
-
result = star_wars_query(query_string, "clientMutationId" => "5678", "shipName" => "Ebon Hawk")
|
303
|
-
|
304
|
-
expected = {
|
305
|
-
"data" => {
|
306
|
-
"introduceShip" => nil,
|
307
|
-
},
|
308
|
-
"errors" => [
|
309
|
-
{
|
310
|
-
"message" => "💥",
|
311
|
-
"locations" => [ { "line" => 3 , "column" => 7}],
|
312
|
-
"path" => ["introduceShip"]
|
313
|
-
}
|
314
|
-
]
|
315
|
-
}
|
316
|
-
|
317
|
-
assert_equal(expected, result)
|
318
|
-
end
|
319
|
-
|
320
|
-
it "supports raising an error in the resolve function" do
|
321
|
-
result = star_wars_query(query_string, "clientMutationId" => "5678", "shipName" => "Leviathan")
|
322
|
-
|
323
|
-
expected = {
|
324
|
-
"data" => {
|
325
|
-
"introduceShip" => nil,
|
326
|
-
},
|
327
|
-
"errors" => [
|
328
|
-
{
|
329
|
-
"message" => "🔥",
|
330
|
-
"locations" => [ { "line" => 3 , "column" => 7}],
|
331
|
-
"path" => ["introduceShip"]
|
332
|
-
}
|
333
|
-
]
|
334
|
-
}
|
335
|
-
|
336
|
-
assert_equal(expected, result)
|
337
|
-
end
|
338
|
-
end
|
339
|
-
|
340
|
-
describe 'supports new input object definition with old mutation definition' do
|
341
|
-
let(:some_attribute_type) do
|
342
|
-
Class.new(GraphQL::Schema::InputObject) do
|
343
|
-
graphql_name 'SomeAttribute'
|
344
|
-
argument :something, String, required: false
|
345
|
-
end
|
346
|
-
end
|
347
|
-
|
348
|
-
let(:do_something_mutation) do
|
349
|
-
some_attribute = some_attribute_type
|
350
|
-
|
351
|
-
GraphQL::Relay::Mutation.define do
|
352
|
-
name 'DoSomethingMutation'
|
353
|
-
input_field :someAttributes, types[some_attribute.graphql_definition]
|
354
|
-
|
355
|
-
return_field :anything, types.String
|
356
|
-
|
357
|
-
resolve ->(_obj, inputs, _ctx) {
|
358
|
-
{
|
359
|
-
anything: inputs.to_h['someAttributes'][0].class.to_s
|
360
|
-
}
|
361
|
-
}
|
362
|
-
end
|
363
|
-
end
|
364
|
-
|
365
|
-
let(:mutation_type) do
|
366
|
-
do_something = do_something_mutation
|
367
|
-
|
368
|
-
Class.new(GraphQL::Schema::Object) do
|
369
|
-
graphql_name 'Mutation'
|
370
|
-
field :doSomething, field: do_something.field
|
371
|
-
end
|
372
|
-
end
|
373
|
-
|
374
|
-
let(:schema) do
|
375
|
-
mutation = mutation_type
|
376
|
-
|
377
|
-
Class.new(GraphQL::Schema) do
|
378
|
-
mutation mutation
|
379
|
-
end
|
380
|
-
end
|
381
|
-
|
382
|
-
it 'converts to hash the whole input' do
|
383
|
-
result = schema.execute('mutation { doSomething(input: {someAttributes: [{something: "string"}]}) { anything } }')
|
384
|
-
assert_equal 'Hash', result['data']['doSomething']['anything']
|
385
|
-
end
|
386
|
-
end
|
387
|
-
end
|