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,32 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require "spec_helper"
|
3
|
-
|
4
|
-
describe GraphQL::Schema::CatchallMiddleware do
|
5
|
-
let(:schema) do
|
6
|
-
Class.new(Dummy::Schema) do
|
7
|
-
middleware GraphQL::Schema::CatchallMiddleware
|
8
|
-
end
|
9
|
-
end
|
10
|
-
let(:result) { schema.execute(query_string) }
|
11
|
-
let(:query_string) {%| query noMilk { error }|}
|
12
|
-
|
13
|
-
if TESTING_RESCUE_FROM
|
14
|
-
describe "rescuing errors" do
|
15
|
-
let(:errors) { query.context.errors }
|
16
|
-
|
17
|
-
it "turns into error messages" do
|
18
|
-
expected = {
|
19
|
-
"data" => { "error" => nil },
|
20
|
-
"errors"=> [
|
21
|
-
{
|
22
|
-
"message"=>"Internal error",
|
23
|
-
"locations"=>[{"line"=>1, "column"=>17}],
|
24
|
-
"path"=>["error"]
|
25
|
-
},
|
26
|
-
]
|
27
|
-
}
|
28
|
-
assert_equal(expected, result)
|
29
|
-
end
|
30
|
-
end
|
31
|
-
end
|
32
|
-
end
|
@@ -1,81 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require "spec_helper"
|
3
|
-
|
4
|
-
describe GraphQL::Schema::Directive::Feature do
|
5
|
-
class FeatureSchema < GraphQL::Schema
|
6
|
-
class Feature < GraphQL::Schema::Directive::Feature
|
7
|
-
def self.enabled?(flag_name, obj, ctx)
|
8
|
-
!!ctx[flag_name.to_sym]
|
9
|
-
end
|
10
|
-
end
|
11
|
-
|
12
|
-
class Query < GraphQL::Schema::Object
|
13
|
-
field :int, Integer, null: false
|
14
|
-
|
15
|
-
def int
|
16
|
-
context[:int] ||= 0
|
17
|
-
context[:int] += 1
|
18
|
-
end
|
19
|
-
end
|
20
|
-
|
21
|
-
directive(Feature)
|
22
|
-
query(Query)
|
23
|
-
# only supported by the interpreter
|
24
|
-
use GraphQL::Execution::Interpreter
|
25
|
-
use GraphQL::Analysis::AST
|
26
|
-
end
|
27
|
-
|
28
|
-
|
29
|
-
it "skips or runs fields" do
|
30
|
-
str = '{
|
31
|
-
int1: int
|
32
|
-
int2: int @feature(flag: "flag1")
|
33
|
-
int3: int @feature(flag: "flag2")
|
34
|
-
}'
|
35
|
-
|
36
|
-
res = FeatureSchema.execute(str, context: { flag2: true })
|
37
|
-
# Int2 was not called, so `int3` is actually 2
|
38
|
-
assert_equal({"int1" => 1, "int3" => 2}, res["data"])
|
39
|
-
end
|
40
|
-
|
41
|
-
it "skips or runs fragment spreads" do
|
42
|
-
str = '{
|
43
|
-
...F1
|
44
|
-
...F2 @feature(flag: "flag1")
|
45
|
-
...F3 @feature(flag: "flag2")
|
46
|
-
int4: int
|
47
|
-
}
|
48
|
-
|
49
|
-
fragment F1 on Query { int1: int }
|
50
|
-
fragment F2 on Query { int2: int }
|
51
|
-
fragment F3 on Query { int3: int }
|
52
|
-
'
|
53
|
-
|
54
|
-
res = FeatureSchema.execute(str, context: { flag1: true })
|
55
|
-
# `int3` was skipped
|
56
|
-
assert_equal({"int1" => 1, "int2" => 2, "int4" => 3}, res["data"])
|
57
|
-
end
|
58
|
-
it "skips or runs inline fragments" do
|
59
|
-
str = '{
|
60
|
-
... { int1: int }
|
61
|
-
... @feature(flag: "flag1") { int2: int }
|
62
|
-
... @feature(flag: "flag2") { int3: int }
|
63
|
-
int4: int
|
64
|
-
}
|
65
|
-
'
|
66
|
-
|
67
|
-
res = FeatureSchema.execute(str, context: { flag2: true })
|
68
|
-
# `int2` was skipped
|
69
|
-
assert_equal({"int1" => 1, "int3" => 2, "int4" => 3}, res["data"])
|
70
|
-
end
|
71
|
-
|
72
|
-
it "returns an error if it's in the wrong place" do
|
73
|
-
str = '
|
74
|
-
query @feature(flag: "x") {
|
75
|
-
int
|
76
|
-
}
|
77
|
-
'
|
78
|
-
res = FeatureSchema.execute(str)
|
79
|
-
assert_equal ["'@feature' can't be applied to queries (allowed: fields, fragment spreads, inline fragments)"], res["errors"].map { |e| e["message"] }
|
80
|
-
end
|
81
|
-
end
|
@@ -1,39 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require "spec_helper"
|
3
|
-
|
4
|
-
describe GraphQL::Schema::Directive::Transform do
|
5
|
-
class TransformSchema < GraphQL::Schema
|
6
|
-
class Query < GraphQL::Schema::Object
|
7
|
-
field :echo, String, null: false do
|
8
|
-
argument :input, String, required: true
|
9
|
-
end
|
10
|
-
|
11
|
-
def echo(input:)
|
12
|
-
input
|
13
|
-
end
|
14
|
-
end
|
15
|
-
|
16
|
-
directive(GraphQL::Schema::Directive::Transform)
|
17
|
-
|
18
|
-
query(Query)
|
19
|
-
# only supported by the interpreter
|
20
|
-
use GraphQL::Execution::Interpreter
|
21
|
-
use GraphQL::Analysis::AST
|
22
|
-
end
|
23
|
-
|
24
|
-
it "transforms when applicable" do
|
25
|
-
str = '{
|
26
|
-
normal: echo(input: "Hello")
|
27
|
-
upcased: echo(input: "Hello") @transform(by: "upcase")
|
28
|
-
downcased: echo(input: "Hello") @transform(by: "downcase")
|
29
|
-
nonsense: echo(input: "Hello") @transform(by: "nonsense")
|
30
|
-
}'
|
31
|
-
|
32
|
-
res = TransformSchema.execute(str)
|
33
|
-
|
34
|
-
assert_equal "Hello", res["data"]["normal"]
|
35
|
-
assert_equal "HELLO", res["data"]["upcased"]
|
36
|
-
assert_equal "hello", res["data"]["downcased"]
|
37
|
-
assert_equal "Hello", res["data"]["nonsense"]
|
38
|
-
end
|
39
|
-
end
|
@@ -1,83 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require "spec_helper"
|
3
|
-
|
4
|
-
describe GraphQL::Schema::Enum do
|
5
|
-
let(:enum) { Jazz::Family }
|
6
|
-
|
7
|
-
describe ".path" do
|
8
|
-
it "is the name" do
|
9
|
-
assert_equal "Family", enum.path
|
10
|
-
end
|
11
|
-
end
|
12
|
-
|
13
|
-
describe "type info" do
|
14
|
-
it "tells about the definition" do
|
15
|
-
assert_equal "Family", enum.graphql_name
|
16
|
-
assert_equal 29, enum.description.length
|
17
|
-
assert_equal 7, enum.values.size
|
18
|
-
end
|
19
|
-
|
20
|
-
it "inherits values and description" do
|
21
|
-
new_enum = Class.new(enum) do
|
22
|
-
value :Nonsense
|
23
|
-
value :PERCUSSION, "new description"
|
24
|
-
end
|
25
|
-
|
26
|
-
# Description was inherited
|
27
|
-
assert_equal 29, new_enum.description.length
|
28
|
-
# values were inherited without modifying the parent
|
29
|
-
assert_equal 7, enum.values.size
|
30
|
-
assert_equal 8, new_enum.values.size
|
31
|
-
perc_value = new_enum.values["PERCUSSION"]
|
32
|
-
assert_equal "new description", perc_value.description
|
33
|
-
end
|
34
|
-
|
35
|
-
it "accepts a block" do
|
36
|
-
assert_equal "Neither here nor there, really", enum.values["KEYS"].description
|
37
|
-
end
|
38
|
-
|
39
|
-
it "is the #owner of its values" do
|
40
|
-
value = enum.values["STRING"]
|
41
|
-
assert_equal enum, value.owner
|
42
|
-
end
|
43
|
-
end
|
44
|
-
|
45
|
-
it "uses a custom enum value class" do
|
46
|
-
enum_type = enum.to_graphql
|
47
|
-
value = enum_type.values["STRING"]
|
48
|
-
assert_equal 1, value.metadata[:custom_setting]
|
49
|
-
end
|
50
|
-
|
51
|
-
describe ".to_graphql" do
|
52
|
-
it "creates an EnumType" do
|
53
|
-
enum_type = enum.to_graphql
|
54
|
-
assert_equal "Family", enum_type.name
|
55
|
-
assert_equal "Groups of musical instruments", enum_type.description
|
56
|
-
|
57
|
-
string_val = enum_type.values["STRING"]
|
58
|
-
didg_val = enum_type.values["DIDGERIDOO"]
|
59
|
-
silence_val = enum_type.values["SILENCE"]
|
60
|
-
assert_equal "STRING", string_val.name
|
61
|
-
assert_equal :str, string_val.value
|
62
|
-
assert_equal false, silence_val.value
|
63
|
-
assert_equal "DIDGERIDOO", didg_val.name
|
64
|
-
assert_equal "Merged into BRASS", didg_val.deprecation_reason
|
65
|
-
end
|
66
|
-
end
|
67
|
-
|
68
|
-
describe "in queries" do
|
69
|
-
it "works as return values" do
|
70
|
-
query_str = "{ instruments { family } }"
|
71
|
-
expected_families = ["STRING", "WOODWIND", "BRASS", "KEYS", "KEYS", "PERCUSSION"]
|
72
|
-
result = Jazz::Schema.execute(query_str)
|
73
|
-
assert_equal expected_families, result["data"]["instruments"].map { |i| i["family"] }
|
74
|
-
end
|
75
|
-
|
76
|
-
it "works as input" do
|
77
|
-
query_str = "query($family: Family!) { instruments(family: $family) { name } }"
|
78
|
-
expected_names = ["Piano", "Organ"]
|
79
|
-
result = Jazz::Schema.execute(query_str, variables: { family: "KEYS" })
|
80
|
-
assert_equal expected_names, result["data"]["instruments"].map { |i| i["name"] }
|
81
|
-
end
|
82
|
-
end
|
83
|
-
end
|
@@ -1,24 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require "spec_helper"
|
3
|
-
|
4
|
-
describe GraphQL::Schema::EnumValue do
|
5
|
-
describe "#path" do
|
6
|
-
it "Has the owner name too" do
|
7
|
-
enum = Class.new(GraphQL::Schema::Enum) do
|
8
|
-
graphql_name "Abc"
|
9
|
-
value(:XYZ)
|
10
|
-
end
|
11
|
-
|
12
|
-
assert_equal "Abc.XYZ", enum.values["XYZ"].path
|
13
|
-
end
|
14
|
-
end
|
15
|
-
|
16
|
-
describe "#deprecation_reason" do
|
17
|
-
it "can be written and read" do
|
18
|
-
enum_value = GraphQL::Schema::EnumValue.new(:x, owner: nil)
|
19
|
-
assert_nil enum_value.deprecation_reason
|
20
|
-
enum_value.deprecation_reason = "No good!"
|
21
|
-
assert_equal "No good!", enum_value.deprecation_reason
|
22
|
-
end
|
23
|
-
end
|
24
|
-
end
|
@@ -1,159 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require "spec_helper"
|
3
|
-
|
4
|
-
describe GraphQL::Schema::FieldExtension do
|
5
|
-
module FilterTestSchema
|
6
|
-
class DoubleFilter < GraphQL::Schema::FieldExtension
|
7
|
-
def after_resolve(object:, value:, arguments:, context:, memo:)
|
8
|
-
value * 2
|
9
|
-
end
|
10
|
-
end
|
11
|
-
|
12
|
-
class PowerOfFilter < GraphQL::Schema::FieldExtension
|
13
|
-
def after_resolve(object:, value:, arguments:, context:, memo:)
|
14
|
-
value**options.fetch(:power, 2)
|
15
|
-
end
|
16
|
-
end
|
17
|
-
|
18
|
-
class MultiplyByOption < GraphQL::Schema::FieldExtension
|
19
|
-
def after_resolve(object:, value:, arguments:, context:, memo:)
|
20
|
-
value * options[:factor]
|
21
|
-
end
|
22
|
-
end
|
23
|
-
|
24
|
-
class MultiplyByArgument < GraphQL::Schema::FieldExtension
|
25
|
-
def apply
|
26
|
-
field.argument(:factor, Integer, required: true)
|
27
|
-
end
|
28
|
-
|
29
|
-
def resolve(object:, arguments:, context:)
|
30
|
-
factor = arguments.delete(:factor)
|
31
|
-
yield(object, arguments, factor)
|
32
|
-
end
|
33
|
-
|
34
|
-
def after_resolve(object:, value:, arguments:, context:, memo:)
|
35
|
-
value * memo
|
36
|
-
end
|
37
|
-
end
|
38
|
-
|
39
|
-
class MultiplyByArgumentUsingResolve < GraphQL::Schema::FieldExtension
|
40
|
-
def apply
|
41
|
-
field.argument(:factor, Integer, required: true)
|
42
|
-
end
|
43
|
-
|
44
|
-
# `yield` returns the user-returned value
|
45
|
-
# This method's return value is passed along
|
46
|
-
def resolve(object:, arguments:, context:)
|
47
|
-
factor = arguments.delete(:factor)
|
48
|
-
yield(object, arguments) * factor
|
49
|
-
end
|
50
|
-
end
|
51
|
-
|
52
|
-
class BaseObject < GraphQL::Schema::Object
|
53
|
-
end
|
54
|
-
|
55
|
-
class Query < BaseObject
|
56
|
-
field :doubled, Integer, null: false, resolver_method: :pass_thru do
|
57
|
-
extension(DoubleFilter)
|
58
|
-
argument :input, Integer, required: true
|
59
|
-
end
|
60
|
-
|
61
|
-
field :square, Integer, null: false, resolver_method: :pass_thru, extensions: [PowerOfFilter] do
|
62
|
-
argument :input, Integer, required: true
|
63
|
-
end
|
64
|
-
|
65
|
-
field :cube, Integer, null: false, resolver_method: :pass_thru do
|
66
|
-
extension(PowerOfFilter, power: 3)
|
67
|
-
argument :input, Integer, required: true
|
68
|
-
end
|
69
|
-
|
70
|
-
field :tripled_by_option, Integer, null: false, resolver_method: :pass_thru do
|
71
|
-
extension(MultiplyByOption, factor: 3)
|
72
|
-
argument :input, Integer, required: true
|
73
|
-
end
|
74
|
-
|
75
|
-
field :tripled_by_option2, Integer, null: false, resolver_method: :pass_thru,
|
76
|
-
extensions: [{ MultiplyByOption => { factor: 3 } }] do
|
77
|
-
argument :input, Integer, required: true
|
78
|
-
end
|
79
|
-
|
80
|
-
field :multiply_input, Integer, null: false, resolver_method: :pass_thru, extensions: [MultiplyByArgument] do
|
81
|
-
argument :input, Integer, required: true
|
82
|
-
end
|
83
|
-
|
84
|
-
field :multiply_input2, Integer, null: false, resolver_method: :pass_thru, extensions: [MultiplyByArgumentUsingResolve] do
|
85
|
-
argument :input, Integer, required: true
|
86
|
-
end
|
87
|
-
|
88
|
-
def pass_thru(input:, **args)
|
89
|
-
input # return it as-is, it will be modified by extensions
|
90
|
-
end
|
91
|
-
|
92
|
-
field :multiple_extensions, Integer, null: false, resolver_method: :pass_thru,
|
93
|
-
extensions: [DoubleFilter, { MultiplyByOption => { factor: 3 } }] do
|
94
|
-
argument :input, Integer, required: true
|
95
|
-
end
|
96
|
-
end
|
97
|
-
|
98
|
-
class Schema < GraphQL::Schema
|
99
|
-
query(Query)
|
100
|
-
if TESTING_INTERPRETER
|
101
|
-
use GraphQL::Execution::Interpreter
|
102
|
-
end
|
103
|
-
end
|
104
|
-
end
|
105
|
-
|
106
|
-
def exec_query(query_str, **kwargs)
|
107
|
-
FilterTestSchema::Schema.execute(query_str, **kwargs)
|
108
|
-
end
|
109
|
-
|
110
|
-
describe "reading" do
|
111
|
-
it "has a reader method" do
|
112
|
-
field = FilterTestSchema::Query.fields["multiplyInput"]
|
113
|
-
assert_equal 1, field.extensions.size
|
114
|
-
assert_instance_of FilterTestSchema::MultiplyByArgument, field.extensions.first
|
115
|
-
end
|
116
|
-
end
|
117
|
-
|
118
|
-
describe "modifying return values" do
|
119
|
-
it "returns the modified value" do
|
120
|
-
res = exec_query("{ doubled(input: 5) }")
|
121
|
-
assert_equal 10, res["data"]["doubled"]
|
122
|
-
end
|
123
|
-
|
124
|
-
it "returns the modified value from `yield`" do
|
125
|
-
res = exec_query("{ multiplyInput2(input: 5, factor: 5) }")
|
126
|
-
assert_equal 25, res["data"]["multiplyInput2"]
|
127
|
-
end
|
128
|
-
|
129
|
-
it "has access to config options" do
|
130
|
-
# The factor of three came from an option
|
131
|
-
res = exec_query("{ tripledByOption(input: 4) }")
|
132
|
-
assert_equal 12, res["data"]["tripledByOption"]
|
133
|
-
end
|
134
|
-
|
135
|
-
it "supports extension with options via extensions kwarg" do
|
136
|
-
# The factor of three came from an option
|
137
|
-
res = exec_query("{ tripledByOption2(input: 4) }")
|
138
|
-
assert_equal 12, res["data"]["tripledByOption2"]
|
139
|
-
end
|
140
|
-
|
141
|
-
it "provides an empty hash as default options" do
|
142
|
-
res = exec_query("{ square(input: 4) }")
|
143
|
-
assert_equal 16, res["data"]["square"]
|
144
|
-
res = exec_query("{ cube(input: 4) }")
|
145
|
-
assert_equal 64, res["data"]["cube"]
|
146
|
-
end
|
147
|
-
|
148
|
-
it "can hide arguments from resolve methods" do
|
149
|
-
res = exec_query("{ multiplyInput(input: 3, factor: 5) }")
|
150
|
-
assert_equal 15, res["data"]["multiplyInput"]
|
151
|
-
end
|
152
|
-
|
153
|
-
it "supports multiple extensions via extensions kwarg" do
|
154
|
-
# doubled then multiplied by 3 specified via option
|
155
|
-
res = exec_query("{ multipleExtensions(input: 3) }")
|
156
|
-
assert_equal 18, res["data"]["multipleExtensions"]
|
157
|
-
end
|
158
|
-
end
|
159
|
-
end
|
@@ -1,319 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require "spec_helper"
|
3
|
-
|
4
|
-
describe GraphQL::Schema::Field do
|
5
|
-
describe "graphql definition" do
|
6
|
-
let(:object_class) { Jazz::Query }
|
7
|
-
let(:field) { object_class.fields["inspectInput"] }
|
8
|
-
|
9
|
-
describe "path" do
|
10
|
-
it "is the object/interface and field name" do
|
11
|
-
assert_equal "Query.inspectInput", field.path
|
12
|
-
assert_equal "GloballyIdentifiable.id", Jazz::GloballyIdentifiableType.fields["id"].path
|
13
|
-
end
|
14
|
-
end
|
15
|
-
|
16
|
-
it "uses the argument class" do
|
17
|
-
arg_defn = field.graphql_definition.arguments.values.first
|
18
|
-
assert_equal :ok, arg_defn.metadata[:custom]
|
19
|
-
end
|
20
|
-
|
21
|
-
it "can add argument directly with add_argument" do
|
22
|
-
argument = Jazz::Query.fields["instruments"].arguments["family"]
|
23
|
-
|
24
|
-
field.add_argument(argument)
|
25
|
-
|
26
|
-
assert_equal "family", field.arguments["family"].name
|
27
|
-
assert_equal Jazz::Family, field.arguments["family"].type
|
28
|
-
end
|
29
|
-
|
30
|
-
it "attaches itself to its graphql_definition as type_class" do
|
31
|
-
assert_equal field, field.graphql_definition.metadata[:type_class]
|
32
|
-
end
|
33
|
-
|
34
|
-
it "camelizes the field name, unless camelize: false" do
|
35
|
-
assert_equal 'inspectInput', field.graphql_definition.name
|
36
|
-
assert_equal 'inspectInput', field.name
|
37
|
-
|
38
|
-
underscored_field = GraphQL::Schema::Field.from_options(:underscored_field, String, null: false, camelize: false, owner: nil) do
|
39
|
-
argument :underscored_arg, String, required: true, camelize: false
|
40
|
-
end
|
41
|
-
|
42
|
-
assert_equal 'underscored_field', underscored_field.to_graphql.name
|
43
|
-
arg_name, arg_defn = underscored_field.to_graphql.arguments.first
|
44
|
-
assert_equal 'underscored_arg', arg_name
|
45
|
-
assert_equal 'underscored_arg', arg_defn.name
|
46
|
-
end
|
47
|
-
|
48
|
-
it "works with arbitrary hash keys" do
|
49
|
-
result = Jazz::Schema.execute "{ complexHashKey }", root_value: { :'foo bar/fizz-buzz' => "OK!"}
|
50
|
-
hash_val = result["data"]["complexHashKey"]
|
51
|
-
assert_equal "OK!", hash_val, "It looked up the hash key"
|
52
|
-
end
|
53
|
-
|
54
|
-
it "exposes the method override" do
|
55
|
-
object = Class.new(Jazz::BaseObject) do
|
56
|
-
field :t, String, method: :tt, null: true
|
57
|
-
end
|
58
|
-
assert_equal :tt, object.fields["t"].method_sym
|
59
|
-
assert_equal "tt", object.fields["t"].method_str
|
60
|
-
end
|
61
|
-
|
62
|
-
it "accepts a block for definition" do
|
63
|
-
object = Class.new(Jazz::BaseObject) do
|
64
|
-
graphql_name "JustAName"
|
65
|
-
|
66
|
-
field :test, String, null: true do
|
67
|
-
argument :test, String, required: true
|
68
|
-
description "A Description."
|
69
|
-
end
|
70
|
-
end.to_graphql
|
71
|
-
|
72
|
-
assert_equal "test", object.fields["test"].arguments["test"].name
|
73
|
-
assert_equal "A Description.", object.fields["test"].description
|
74
|
-
end
|
75
|
-
|
76
|
-
it "accepts a block for defintion and yields the field if the block has an arity of one" do
|
77
|
-
object = Class.new(Jazz::BaseObject) do
|
78
|
-
graphql_name "JustAName"
|
79
|
-
|
80
|
-
field :test, String, null: true do |field|
|
81
|
-
field.argument :test, String, required: true
|
82
|
-
field.description "A Description."
|
83
|
-
end
|
84
|
-
end.to_graphql
|
85
|
-
|
86
|
-
assert_equal "test", object.fields["test"].arguments["test"].name
|
87
|
-
assert_equal "A Description.", object.fields["test"].description
|
88
|
-
end
|
89
|
-
|
90
|
-
it "accepts anonymous classes as type" do
|
91
|
-
type = Class.new(GraphQL::Schema::Object) do
|
92
|
-
graphql_name 'MyType'
|
93
|
-
end
|
94
|
-
field = GraphQL::Schema::Field.from_options(:my_field, type, owner: nil, null: true)
|
95
|
-
assert_equal type.to_graphql, field.to_graphql.type
|
96
|
-
end
|
97
|
-
|
98
|
-
describe "extras" do
|
99
|
-
it "can get errors, which adds path" do
|
100
|
-
query_str = <<-GRAPHQL
|
101
|
-
query {
|
102
|
-
find(id: "Musician/Herbie Hancock") {
|
103
|
-
... on Musician {
|
104
|
-
addError
|
105
|
-
}
|
106
|
-
}
|
107
|
-
}
|
108
|
-
GRAPHQL
|
109
|
-
|
110
|
-
res = Jazz::Schema.execute(query_str)
|
111
|
-
err = res["errors"].first
|
112
|
-
assert_equal "this has a path", err["message"]
|
113
|
-
assert_equal ["find", "addError"], err["path"]
|
114
|
-
assert_equal [{"line"=>4, "column"=>15}], err["locations"]
|
115
|
-
end
|
116
|
-
|
117
|
-
it "can get methods from the field instance" do
|
118
|
-
query_str = <<-GRAPHQL
|
119
|
-
{
|
120
|
-
upcaseCheck1
|
121
|
-
upcaseCheck2
|
122
|
-
upcaseCheck3
|
123
|
-
upcaseCheck4
|
124
|
-
}
|
125
|
-
GRAPHQL
|
126
|
-
res = Jazz::Schema.execute(query_str)
|
127
|
-
assert_equal "nil", res["data"].fetch("upcaseCheck1")
|
128
|
-
assert_equal "false", res["data"]["upcaseCheck2"]
|
129
|
-
assert_equal "TRUE", res["data"]["upcaseCheck3"]
|
130
|
-
assert_equal "\"WHY NOT?\"", res["data"]["upcaseCheck4"]
|
131
|
-
end
|
132
|
-
|
133
|
-
it "can be read via #extras" do
|
134
|
-
field = Jazz::Musician.fields["addError"]
|
135
|
-
assert_equal [:execution_errors], field.extras
|
136
|
-
end
|
137
|
-
|
138
|
-
it "can be added by passing an array of symbols to #extras" do
|
139
|
-
object = Class.new(Jazz::BaseObject) do
|
140
|
-
graphql_name "JustAName"
|
141
|
-
|
142
|
-
field :test, String, null: true, extras: [:lookahead]
|
143
|
-
end
|
144
|
-
|
145
|
-
field = object.fields['test']
|
146
|
-
|
147
|
-
field.extras([:ast_node])
|
148
|
-
assert_equal [:lookahead, :ast_node], field.extras
|
149
|
-
end
|
150
|
-
end
|
151
|
-
|
152
|
-
it "is the #owner of its arguments" do
|
153
|
-
field = Jazz::Query.fields["find"]
|
154
|
-
argument = field.arguments["id"]
|
155
|
-
assert_equal field, argument.owner
|
156
|
-
end
|
157
|
-
|
158
|
-
it "has a reference to the object that owns it with #owner" do
|
159
|
-
assert_equal Jazz::Query, field.owner
|
160
|
-
end
|
161
|
-
|
162
|
-
describe "type" do
|
163
|
-
it "tells the return type" do
|
164
|
-
assert_equal "[String!]!", field.type.graphql_definition.to_s
|
165
|
-
end
|
166
|
-
|
167
|
-
it "returns the type class" do
|
168
|
-
field = Jazz::Query.fields["nowPlaying"]
|
169
|
-
assert_equal Jazz::PerformingAct, field.type.of_type
|
170
|
-
end
|
171
|
-
end
|
172
|
-
|
173
|
-
describe "complexity" do
|
174
|
-
it "accepts a keyword argument" do
|
175
|
-
object = Class.new(Jazz::BaseObject) do
|
176
|
-
graphql_name "complexityKeyword"
|
177
|
-
|
178
|
-
field :complexityTest, String, null: true, complexity: 25
|
179
|
-
end.to_graphql
|
180
|
-
|
181
|
-
assert_equal 25, object.fields["complexityTest"].complexity
|
182
|
-
end
|
183
|
-
|
184
|
-
it "accepts a proc in the definition block" do
|
185
|
-
object = Class.new(Jazz::BaseObject) do
|
186
|
-
graphql_name "complexityKeyword"
|
187
|
-
|
188
|
-
field :complexityTest, String, null: true do
|
189
|
-
complexity ->(_ctx, _args, _child_complexity) { 52 }
|
190
|
-
end
|
191
|
-
end.to_graphql
|
192
|
-
|
193
|
-
assert_equal 52, object.fields["complexityTest"].complexity.call(nil, nil, nil)
|
194
|
-
end
|
195
|
-
|
196
|
-
it "accepts an integer in the definition block" do
|
197
|
-
object = Class.new(Jazz::BaseObject) do
|
198
|
-
graphql_name "complexityKeyword"
|
199
|
-
|
200
|
-
field :complexityTest, String, null: true do
|
201
|
-
complexity 38
|
202
|
-
end
|
203
|
-
end.to_graphql
|
204
|
-
|
205
|
-
assert_equal 38, object.fields["complexityTest"].complexity
|
206
|
-
end
|
207
|
-
|
208
|
-
it 'fails if the complexity is not numeric and not a proc' do
|
209
|
-
err = assert_raises(RuntimeError) do
|
210
|
-
Class.new(Jazz::BaseObject) do
|
211
|
-
graphql_name "complexityKeyword"
|
212
|
-
|
213
|
-
field :complexityTest, String, null: true do
|
214
|
-
complexity 'One hundred and eighty'
|
215
|
-
end
|
216
|
-
end.to_graphql
|
217
|
-
end
|
218
|
-
|
219
|
-
assert_match /^Invalid complexity:/, err.message
|
220
|
-
end
|
221
|
-
|
222
|
-
it 'fails if the proc does not accept 3 parameters' do
|
223
|
-
err = assert_raises(RuntimeError) do
|
224
|
-
Class.new(Jazz::BaseObject) do
|
225
|
-
graphql_name "complexityKeyword"
|
226
|
-
|
227
|
-
field :complexityTest, String, null: true do
|
228
|
-
complexity ->(one, two) { 52 }
|
229
|
-
end
|
230
|
-
end.to_graphql
|
231
|
-
end
|
232
|
-
|
233
|
-
assert_match /^A complexity proc should always accept 3 parameters/, err.message
|
234
|
-
end
|
235
|
-
end
|
236
|
-
end
|
237
|
-
|
238
|
-
describe "build type errors" do
|
239
|
-
it "includes the full name" do
|
240
|
-
thing = Class.new(GraphQL::Schema::Object) do
|
241
|
-
graphql_name "Thing"
|
242
|
-
# `Set` is a class but not a GraphQL type
|
243
|
-
field :stuff, Set, null: false
|
244
|
-
end
|
245
|
-
|
246
|
-
err = assert_raises ArgumentError do
|
247
|
-
thing.fields["stuff"].type
|
248
|
-
end
|
249
|
-
|
250
|
-
assert_includes err.message, "Thing.stuff"
|
251
|
-
assert_includes err.message, "Unexpected class/module"
|
252
|
-
end
|
253
|
-
|
254
|
-
it "makes a suggestion when the type is false" do
|
255
|
-
err = assert_raises ArgumentError do
|
256
|
-
Class.new(GraphQL::Schema::Object) do
|
257
|
-
graphql_name "Thing"
|
258
|
-
# False might come from an invalid `!`
|
259
|
-
field :stuff, false, null: false
|
260
|
-
end
|
261
|
-
end
|
262
|
-
|
263
|
-
assert_includes err.message, "Thing.stuff"
|
264
|
-
assert_includes err.message, "Received `false` instead of a type, maybe a `!` should be replaced with `null: true` (for fields) or `required: true` (for arguments)"
|
265
|
-
end
|
266
|
-
|
267
|
-
it "makes a suggestion when the type is a GraphQL::Field" do
|
268
|
-
err = assert_raises ArgumentError do
|
269
|
-
Class.new(GraphQL::Schema::Object) do
|
270
|
-
graphql_name "Thing"
|
271
|
-
# Previously, field was a valid second argument
|
272
|
-
field :stuff, GraphQL::Relay::Node.field, null: false
|
273
|
-
end
|
274
|
-
end
|
275
|
-
|
276
|
-
assert_includes err.message, "use the `field:` keyword for this instead"
|
277
|
-
end
|
278
|
-
end
|
279
|
-
|
280
|
-
describe "mutation" do
|
281
|
-
it "passes when not including extra arguments" do
|
282
|
-
mutation_class = Class.new(GraphQL::Schema::Mutation) do
|
283
|
-
graphql_name "Thing"
|
284
|
-
field :stuff, String, null: false
|
285
|
-
end
|
286
|
-
|
287
|
-
obj = Class.new(GraphQL::Schema::Object) do
|
288
|
-
field(:my_field, mutation: mutation_class, null: true)
|
289
|
-
end
|
290
|
-
assert_equal obj.fields["myField"].mutation, mutation_class
|
291
|
-
end
|
292
|
-
end
|
293
|
-
|
294
|
-
describe '#deprecation_reason' do
|
295
|
-
it "reads and writes" do
|
296
|
-
object_class = Class.new(GraphQL::Schema::Object) do
|
297
|
-
graphql_name "Thing"
|
298
|
-
field :stuff, String, null: false, deprecation_reason: "Broken"
|
299
|
-
end
|
300
|
-
field = object_class.fields["stuff"]
|
301
|
-
assert_equal "Broken", field.deprecation_reason
|
302
|
-
field.deprecation_reason += "!!"
|
303
|
-
assert_equal "Broken!!", field.deprecation_reason
|
304
|
-
end
|
305
|
-
end
|
306
|
-
|
307
|
-
describe "#original_name" do
|
308
|
-
it "is exactly the same as the passed in name" do
|
309
|
-
field = GraphQL::Schema::Field.from_options(
|
310
|
-
:my_field,
|
311
|
-
String,
|
312
|
-
null: false,
|
313
|
-
camelize: true
|
314
|
-
)
|
315
|
-
|
316
|
-
assert_equal :my_field, field.original_name
|
317
|
-
end
|
318
|
-
end
|
319
|
-
end
|