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,33 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require "spec_helper"
|
3
|
-
|
4
|
-
describe GraphQL::Types::Relay::BaseEdge do
|
5
|
-
module NonNullableDummy
|
6
|
-
class NonNullableNode < GraphQL::Schema::Object; end
|
7
|
-
|
8
|
-
class NonNullableNodeEdgeType < GraphQL::Types::Relay::BaseEdge
|
9
|
-
node_type(NonNullableNode, null: false)
|
10
|
-
end
|
11
|
-
|
12
|
-
class NonNullableNodeEdgeConnectionType < GraphQL::Types::Relay::BaseConnection
|
13
|
-
edge_type(NonNullableNodeEdgeType, nodes_field: false)
|
14
|
-
end
|
15
|
-
|
16
|
-
class Query < GraphQL::Schema::Object
|
17
|
-
field :connection, NonNullableNodeEdgeConnectionType, null: false
|
18
|
-
end
|
19
|
-
|
20
|
-
class Schema < GraphQL::Schema
|
21
|
-
query Query
|
22
|
-
end
|
23
|
-
end
|
24
|
-
|
25
|
-
it "runs the introspection query and the result contains a edge field that has non-nullable node" do
|
26
|
-
res = NonNullableDummy::Schema.execute(GraphQL::Introspection::INTROSPECTION_QUERY)
|
27
|
-
assert res
|
28
|
-
edge_type = res["data"]["__schema"]["types"].find { |t| t["name"] == "NonNullableNodeEdge" }
|
29
|
-
node_field = edge_type["fields"].find { |f| f["name"] == "node" }
|
30
|
-
assert_equal "NON_NULL", node_field["type"]["kind"]
|
31
|
-
assert_equal "NonNullableNode", node_field["type"]["ofType"]["name"]
|
32
|
-
end
|
33
|
-
end
|
@@ -1,211 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require "spec_helper"
|
3
|
-
|
4
|
-
describe GraphQL::UnionType do
|
5
|
-
let(:type_1) { OpenStruct.new(kind: GraphQL::TypeKinds::OBJECT)}
|
6
|
-
let(:type_2) { OpenStruct.new(kind: GraphQL::TypeKinds::OBJECT)}
|
7
|
-
let(:type_3) { OpenStruct.new(kind: GraphQL::TypeKinds::SCALAR)}
|
8
|
-
let(:union) {
|
9
|
-
types = [type_1, type_2]
|
10
|
-
GraphQL::UnionType.define {
|
11
|
-
name("MyUnion")
|
12
|
-
description("Some items")
|
13
|
-
possible_types(types)
|
14
|
-
}
|
15
|
-
}
|
16
|
-
|
17
|
-
it "has a name" do
|
18
|
-
assert_equal("MyUnion", union.name)
|
19
|
-
end
|
20
|
-
|
21
|
-
it '#include? returns true if type in in possible_types' do
|
22
|
-
assert union.include?(type_1)
|
23
|
-
end
|
24
|
-
|
25
|
-
it '#include? returns false if type is not in possible_types' do
|
26
|
-
assert_equal(false, union.include?(type_3))
|
27
|
-
end
|
28
|
-
|
29
|
-
it '#resolve_type raises error if resolved type is not in possible_types' do
|
30
|
-
test_str = 'Hello world'
|
31
|
-
union.resolve_type = ->(value, ctx) {
|
32
|
-
"This is not the types you are looking for"
|
33
|
-
}
|
34
|
-
fake_ctx = OpenStruct.new(query: GraphQL::Query.new(Dummy::Schema, ""))
|
35
|
-
|
36
|
-
assert_raises(RuntimeError) {
|
37
|
-
union.resolve_type(test_str, fake_ctx)
|
38
|
-
}
|
39
|
-
end
|
40
|
-
|
41
|
-
describe "#resolve_type" do
|
42
|
-
let(:result) { Dummy::Schema.execute(query_string) }
|
43
|
-
let(:query_string) {%|
|
44
|
-
{
|
45
|
-
allAnimal {
|
46
|
-
type: __typename
|
47
|
-
... on Cow {
|
48
|
-
cowName: name
|
49
|
-
}
|
50
|
-
... on Goat {
|
51
|
-
goatName: name
|
52
|
-
}
|
53
|
-
}
|
54
|
-
|
55
|
-
allAnimalAsCow {
|
56
|
-
type: __typename
|
57
|
-
... on Cow {
|
58
|
-
name
|
59
|
-
}
|
60
|
-
}
|
61
|
-
}
|
62
|
-
|}
|
63
|
-
|
64
|
-
it 'returns correct types for general schema and specific union' do
|
65
|
-
expected_result = {
|
66
|
-
# When using Query#resolve_type
|
67
|
-
"allAnimal" => [
|
68
|
-
{ "type" => "Cow", "cowName" => "Billy" },
|
69
|
-
{ "type" => "Goat", "goatName" => "Gilly" }
|
70
|
-
],
|
71
|
-
|
72
|
-
# When using UnionType#resolve_type
|
73
|
-
"allAnimalAsCow" => [
|
74
|
-
{ "type" => "Cow", "name" => "Billy" },
|
75
|
-
{ "type" => "Cow", "name" => "Gilly" }
|
76
|
-
]
|
77
|
-
}
|
78
|
-
assert_equal expected_result, result["data"]
|
79
|
-
end
|
80
|
-
end
|
81
|
-
|
82
|
-
describe "typecasting from union to union" do
|
83
|
-
let(:result) { Dummy::Schema.execute(query_string) }
|
84
|
-
let(:query_string) {%|
|
85
|
-
{
|
86
|
-
allDairy {
|
87
|
-
dairyName: __typename
|
88
|
-
... on Beverage {
|
89
|
-
bevName: __typename
|
90
|
-
... on Milk {
|
91
|
-
flavors
|
92
|
-
}
|
93
|
-
}
|
94
|
-
}
|
95
|
-
}
|
96
|
-
|}
|
97
|
-
|
98
|
-
it "casts if the object belongs to both unions" do
|
99
|
-
expected_result = [
|
100
|
-
{"dairyName"=>"Cheese"},
|
101
|
-
{"dairyName"=>"Cheese"},
|
102
|
-
{"dairyName"=>"Cheese"},
|
103
|
-
{"dairyName"=>"Milk", "bevName"=>"Milk", "flavors"=>["Natural", "Chocolate", "Strawberry"]},
|
104
|
-
]
|
105
|
-
assert_equal expected_result, result["data"]["allDairy"]
|
106
|
-
end
|
107
|
-
end
|
108
|
-
|
109
|
-
describe "list of union type" do
|
110
|
-
describe "fragment spreads" do
|
111
|
-
let(:result) { Dummy::Schema.execute(query_string) }
|
112
|
-
let(:query_string) {%|
|
113
|
-
{
|
114
|
-
allDairy {
|
115
|
-
__typename
|
116
|
-
... milkFields
|
117
|
-
... cheeseFields
|
118
|
-
}
|
119
|
-
}
|
120
|
-
fragment milkFields on Milk {
|
121
|
-
id
|
122
|
-
source
|
123
|
-
origin
|
124
|
-
flavors
|
125
|
-
}
|
126
|
-
|
127
|
-
fragment cheeseFields on Cheese {
|
128
|
-
id
|
129
|
-
source
|
130
|
-
origin
|
131
|
-
flavor
|
132
|
-
}
|
133
|
-
|}
|
134
|
-
|
135
|
-
it "resolves the right fragment on the right item" do
|
136
|
-
all_dairy = result["data"]["allDairy"]
|
137
|
-
cheeses = all_dairy.first(3)
|
138
|
-
cheeses.each do |cheese|
|
139
|
-
assert_equal "Cheese", cheese["__typename"]
|
140
|
-
assert_equal ["__typename", "id", "source", "origin", "flavor"], cheese.keys
|
141
|
-
end
|
142
|
-
|
143
|
-
milks = all_dairy.last(1)
|
144
|
-
milks.each do |milk|
|
145
|
-
assert_equal "Milk", milk["__typename"]
|
146
|
-
assert_equal ["__typename", "id", "source", "origin", "flavors"], milk.keys
|
147
|
-
end
|
148
|
-
end
|
149
|
-
end
|
150
|
-
end
|
151
|
-
|
152
|
-
describe "#dup" do
|
153
|
-
it "copies possible types without affecting the original" do
|
154
|
-
union.possible_types # load the internal cache
|
155
|
-
union_2 = union.dup
|
156
|
-
union_2.possible_types << type_3
|
157
|
-
assert_equal 2, union.possible_types.size
|
158
|
-
assert_equal 3, union_2.possible_types.size
|
159
|
-
end
|
160
|
-
end
|
161
|
-
|
162
|
-
describe "#get_possible_type" do
|
163
|
-
let(:query_string) {%|
|
164
|
-
{
|
165
|
-
__type(name: "Beverage") {
|
166
|
-
name
|
167
|
-
}
|
168
|
-
}
|
169
|
-
|}
|
170
|
-
|
171
|
-
let(:query) { GraphQL::Query.new(Dummy::Schema, query_string) }
|
172
|
-
let(:union) { Dummy::Beverage.graphql_definition }
|
173
|
-
|
174
|
-
it "returns the type definition if the type exists and is a possible type of the union" do
|
175
|
-
assert union.get_possible_type("Milk", query.context)
|
176
|
-
end
|
177
|
-
|
178
|
-
it "returns nil if the type is not found in the schema" do
|
179
|
-
assert_nil union.get_possible_type("Foo", query.context)
|
180
|
-
end
|
181
|
-
|
182
|
-
it "returns nil if the type is not a possible type of the union" do
|
183
|
-
assert_nil union.get_possible_type("Cheese", query.context)
|
184
|
-
end
|
185
|
-
end
|
186
|
-
|
187
|
-
describe "#possible_type?" do
|
188
|
-
let(:query_string) {%|
|
189
|
-
{
|
190
|
-
__type(name: "Beverage") {
|
191
|
-
name
|
192
|
-
}
|
193
|
-
}
|
194
|
-
|}
|
195
|
-
|
196
|
-
let(:query) { GraphQL::Query.new(Dummy::Schema, query_string) }
|
197
|
-
let(:union) { Dummy::Beverage.graphql_definition }
|
198
|
-
|
199
|
-
it "returns true if the type exists and is a possible type of the union" do
|
200
|
-
assert union.possible_type?("Milk", query.context)
|
201
|
-
end
|
202
|
-
|
203
|
-
it "returns false if the type is not found in the schema" do
|
204
|
-
refute union.possible_type?("Foo", query.context)
|
205
|
-
end
|
206
|
-
|
207
|
-
it "returns false if the type is not a possible type of the union" do
|
208
|
-
refute union.possible_type?("Cheese", query.context)
|
209
|
-
end
|
210
|
-
end
|
211
|
-
end
|
@@ -1,583 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require "spec_helper"
|
4
|
-
require './lib/graphql/upgrader/member.rb'
|
5
|
-
|
6
|
-
describe GraphQL::Upgrader::Member do
|
7
|
-
def upgrade(old)
|
8
|
-
GraphQL::Upgrader::Member.new(old).upgrade
|
9
|
-
end
|
10
|
-
|
11
|
-
describe 'field arguments' do
|
12
|
-
it 'upgrades' do
|
13
|
-
old = %{argument :status, !TodoStatus, "Restrict items to this status"}
|
14
|
-
new = %{argument :status, TodoStatus, "Restrict items to this status", required: true}
|
15
|
-
|
16
|
-
assert_equal new, upgrade(old)
|
17
|
-
end
|
18
|
-
end
|
19
|
-
|
20
|
-
describe "property / method upgrade" do
|
21
|
-
it 'upgrades the property definition to method' do
|
22
|
-
old = %{field :name, String, property: :full_name}
|
23
|
-
new = %{field :name, String, method: :full_name, null: true}
|
24
|
-
|
25
|
-
assert_equal new, upgrade(old)
|
26
|
-
end
|
27
|
-
|
28
|
-
it 'upgrades the property definition in a block to method' do
|
29
|
-
old = %{field :name, String do\n property :full_name\nend}
|
30
|
-
new = %{field :name, String, method: :full_name, null: true}
|
31
|
-
assert_equal new, upgrade(old)
|
32
|
-
end
|
33
|
-
|
34
|
-
it "removes property when redundant" do
|
35
|
-
old = %{field :name, String do\n property "name" \nend}
|
36
|
-
new = %{field :name, String, null: true}
|
37
|
-
assert_equal new, upgrade(old)
|
38
|
-
|
39
|
-
old = %{field :name, String, property: :name}
|
40
|
-
new = %{field :name, String, null: true}
|
41
|
-
assert_equal new, upgrade(old)
|
42
|
-
|
43
|
-
end
|
44
|
-
end
|
45
|
-
|
46
|
-
describe "hash_key" do
|
47
|
-
it "it moves configuration to kwarg" do
|
48
|
-
old = %{field :name, String do\n hash_key :full_name\nend}
|
49
|
-
new = %{field :name, String, hash_key: :full_name, null: true}
|
50
|
-
assert_equal new, upgrade(old)
|
51
|
-
end
|
52
|
-
|
53
|
-
it "removes it if it's redundant" do
|
54
|
-
old = %{field :name, String do\n hash_key :name\nend}
|
55
|
-
new = %{field :name, String, null: true}
|
56
|
-
assert_equal new, upgrade(old)
|
57
|
-
|
58
|
-
old = %{field :name, String, hash_key: :name}
|
59
|
-
new = %{field :name, String, null: true}
|
60
|
-
assert_equal new, upgrade(old)
|
61
|
-
|
62
|
-
old = %{field :name, String do\n hash_key "name"\nend}
|
63
|
-
new = %{field :name, String, null: true}
|
64
|
-
assert_equal new, upgrade(old)
|
65
|
-
end
|
66
|
-
end
|
67
|
-
|
68
|
-
describe 'name' do
|
69
|
-
it 'removes the name field if it can be inferred from the class' do
|
70
|
-
old = %{
|
71
|
-
UserType = GraphQL::ObjectType.define do
|
72
|
-
name "User"
|
73
|
-
end
|
74
|
-
}
|
75
|
-
new = %{
|
76
|
-
class UserType < Types::BaseObject
|
77
|
-
end
|
78
|
-
}
|
79
|
-
assert_equal new, upgrade(old)
|
80
|
-
end
|
81
|
-
|
82
|
-
it 'removes the name field if it can be inferred from the class and under a module' do
|
83
|
-
old = %{
|
84
|
-
Types::UserType = GraphQL::ObjectType.define do
|
85
|
-
name "User"
|
86
|
-
end
|
87
|
-
}
|
88
|
-
new = %{
|
89
|
-
class Types::UserType < Types::BaseObject
|
90
|
-
end
|
91
|
-
}
|
92
|
-
assert_equal new, upgrade(old)
|
93
|
-
end
|
94
|
-
|
95
|
-
it 'upgrades the name into graphql_name if it can\'t be inferred from the class' do
|
96
|
-
old = %{
|
97
|
-
TeamType = GraphQL::ObjectType.define do
|
98
|
-
name "User"
|
99
|
-
end
|
100
|
-
}
|
101
|
-
new = %{
|
102
|
-
class TeamType < Types::BaseObject
|
103
|
-
graphql_name "User"
|
104
|
-
end
|
105
|
-
}
|
106
|
-
assert_equal new, upgrade(old)
|
107
|
-
|
108
|
-
old = %{
|
109
|
-
UserInterface = GraphQL::InterfaceType.define do
|
110
|
-
name "User"
|
111
|
-
end
|
112
|
-
}
|
113
|
-
new = %{
|
114
|
-
module UserInterface
|
115
|
-
include Types::BaseInterface
|
116
|
-
graphql_name "User"
|
117
|
-
end
|
118
|
-
}
|
119
|
-
|
120
|
-
assert_equal new, upgrade(old)
|
121
|
-
|
122
|
-
old = %{
|
123
|
-
UserEnum = GraphQL::EnumType.define do
|
124
|
-
name "User"
|
125
|
-
end
|
126
|
-
}
|
127
|
-
new = %{
|
128
|
-
class UserEnum < Types::BaseEnum
|
129
|
-
graphql_name "User"
|
130
|
-
end
|
131
|
-
}
|
132
|
-
assert_equal new, upgrade(old)
|
133
|
-
end
|
134
|
-
end
|
135
|
-
|
136
|
-
describe 'definition' do
|
137
|
-
it 'upgrades the .define into class based definition' do
|
138
|
-
old = %{UserType = GraphQL::ObjectType.define do
|
139
|
-
end}
|
140
|
-
new = %{class UserType < Types::BaseObject
|
141
|
-
end}
|
142
|
-
assert_equal new, upgrade(old)
|
143
|
-
|
144
|
-
old = <<-RUBY
|
145
|
-
UserInterface = GraphQL::InterfaceType.define do
|
146
|
-
end
|
147
|
-
RUBY
|
148
|
-
new = <<-RUBY
|
149
|
-
module UserInterface
|
150
|
-
include Types::BaseInterface
|
151
|
-
end
|
152
|
-
RUBY
|
153
|
-
|
154
|
-
assert_equal new, upgrade(old)
|
155
|
-
|
156
|
-
old = %{UserUnion = GraphQL::UnionType.define do
|
157
|
-
end}
|
158
|
-
new = %{class UserUnion < Types::BaseUnion
|
159
|
-
end}
|
160
|
-
assert_equal new, upgrade(old)
|
161
|
-
|
162
|
-
old = %{UserEnum = GraphQL::EnumType.define do
|
163
|
-
end}
|
164
|
-
new = %{class UserEnum < Types::BaseEnum
|
165
|
-
end}
|
166
|
-
assert_equal new, upgrade(old)
|
167
|
-
|
168
|
-
old = %{UserInput = GraphQL::InputObjectType.define do
|
169
|
-
end}
|
170
|
-
new = %{class UserInput < Types::BaseInputObject
|
171
|
-
end}
|
172
|
-
assert_equal new, upgrade(old)
|
173
|
-
|
174
|
-
old = %{UserScalar = GraphQL::ScalarType.define do
|
175
|
-
end}
|
176
|
-
new = %{class UserScalar < Types::BaseScalar
|
177
|
-
end}
|
178
|
-
assert_equal new, upgrade(old)
|
179
|
-
end
|
180
|
-
|
181
|
-
it 'upgrades including the module' do
|
182
|
-
old = %{Module::UserType = GraphQL::ObjectType.define do
|
183
|
-
end}
|
184
|
-
new = %{class Module::UserType < Types::BaseObject
|
185
|
-
end}
|
186
|
-
assert_equal new, upgrade(old)
|
187
|
-
end
|
188
|
-
end
|
189
|
-
|
190
|
-
describe 'fields' do
|
191
|
-
it 'underscorizes field name' do
|
192
|
-
old = %{field :firstName, !types.String}
|
193
|
-
new = %{field :first_name, String, null: false}
|
194
|
-
assert_equal new, upgrade(old)
|
195
|
-
end
|
196
|
-
|
197
|
-
describe "resolve proc to method" do
|
198
|
-
it "converts object and context" do
|
199
|
-
old = %{
|
200
|
-
field :firstName, !types.String do
|
201
|
-
resolve ->(obj, arg, ctx) {
|
202
|
-
ctx.something
|
203
|
-
other_ctx # test combined identifiers
|
204
|
-
|
205
|
-
obj[ctx] + obj
|
206
|
-
obj.given_name
|
207
|
-
}
|
208
|
-
end
|
209
|
-
}
|
210
|
-
new = %{
|
211
|
-
field :first_name, String, null: false
|
212
|
-
|
213
|
-
def first_name
|
214
|
-
context.something
|
215
|
-
other_ctx # test combined identifiers
|
216
|
-
|
217
|
-
object[context] + object
|
218
|
-
object.given_name
|
219
|
-
end
|
220
|
-
}
|
221
|
-
assert_equal new, upgrade(old)
|
222
|
-
end
|
223
|
-
|
224
|
-
it "handles `_` var names" do
|
225
|
-
old = %{
|
226
|
-
field :firstName, !types.String do
|
227
|
-
resolve ->(obj, _, _) {
|
228
|
-
obj.given_name
|
229
|
-
}
|
230
|
-
end
|
231
|
-
}
|
232
|
-
new = %{
|
233
|
-
field :first_name, String, null: false
|
234
|
-
|
235
|
-
def first_name
|
236
|
-
object.given_name
|
237
|
-
end
|
238
|
-
}
|
239
|
-
assert_equal new, upgrade(old)
|
240
|
-
end
|
241
|
-
|
242
|
-
it "creates **arguments if necessary" do
|
243
|
-
old = %{
|
244
|
-
field :firstName, !types.String do
|
245
|
-
argument :ctx, types.String, default_value: "abc"
|
246
|
-
resolve ->(obj, args, ctx) {
|
247
|
-
args[:ctx]
|
248
|
-
}
|
249
|
-
end
|
250
|
-
}
|
251
|
-
new = %{
|
252
|
-
field :first_name, String, null: false do
|
253
|
-
argument :ctx, String, default_value: "abc", required: false
|
254
|
-
end
|
255
|
-
|
256
|
-
def first_name(**args)
|
257
|
-
args[:ctx]
|
258
|
-
end
|
259
|
-
}
|
260
|
-
assert_equal new, upgrade(old)
|
261
|
-
end
|
262
|
-
|
263
|
-
it "fixes argument access: string -> sym, camel -> underscore" do
|
264
|
-
old = %{
|
265
|
-
field :firstName, !types.String do
|
266
|
-
argument :someArg, types.String, default_value: "abc"
|
267
|
-
argument :someArg2, types.String, default_value: "abc"
|
268
|
-
resolve ->(obj, args, ctx) {
|
269
|
-
args["someArg"] if args.key?("someArg")
|
270
|
-
args[:someArg2]
|
271
|
-
}
|
272
|
-
end
|
273
|
-
}
|
274
|
-
new = %{
|
275
|
-
field :first_name, String, null: false do
|
276
|
-
argument :some_arg, String, default_value: "abc", required: false
|
277
|
-
argument :some_arg2, String, default_value: "abc", required: false
|
278
|
-
end
|
279
|
-
|
280
|
-
def first_name(**args)
|
281
|
-
args[:some_arg] if args.key?(:some_arg)
|
282
|
-
args[:some_arg2]
|
283
|
-
end
|
284
|
-
}
|
285
|
-
assert_equal new, upgrade(old)
|
286
|
-
end
|
287
|
-
end
|
288
|
-
|
289
|
-
|
290
|
-
it 'upgrades to the new definition' do
|
291
|
-
old = %{field :name, !types.String}
|
292
|
-
new = %{field :name, String, null: false}
|
293
|
-
assert_equal new, upgrade(old)
|
294
|
-
|
295
|
-
old = %{field :name, types.String.to_non_null_type}
|
296
|
-
new = %{field :name, String, null: false}
|
297
|
-
assert_equal new, upgrade(old)
|
298
|
-
|
299
|
-
old = %{field :name, !types.String, "description", method: :name_full}
|
300
|
-
new = %{field :name, String, "description", method: :name_full, null: false}
|
301
|
-
assert_equal new, upgrade(old)
|
302
|
-
|
303
|
-
old = %{field :name, -> { !types.String }}
|
304
|
-
new = %{field :name, String, null: false}
|
305
|
-
assert_equal new, upgrade(old)
|
306
|
-
|
307
|
-
old = %{field :name, -> { types.String.to_non_null_type }}
|
308
|
-
new = %{field :name, String, null: false}
|
309
|
-
assert_equal new, upgrade(old)
|
310
|
-
|
311
|
-
old = %{connection :name, Name.connection_type, "names"}
|
312
|
-
new = %{field :name, Name.connection_type, "names", null: true, connection: true}
|
313
|
-
assert_equal new, upgrade(old)
|
314
|
-
|
315
|
-
old = %{connection :name, !Name.connection_type, "names"}
|
316
|
-
new = %{field :name, Name.connection_type, "names", null: false, connection: true}
|
317
|
-
assert_equal new, upgrade(old)
|
318
|
-
|
319
|
-
old = %{connection :name, Name.connection_type.to_non_null_type, "names"}
|
320
|
-
new = %{field :name, Name.connection_type, "names", null: false, connection: true}
|
321
|
-
assert_equal new, upgrade(old)
|
322
|
-
|
323
|
-
old = %{field :names, types[!types.String]}
|
324
|
-
new = %{field :names, [String], null: true}
|
325
|
-
assert_equal new, upgrade(old)
|
326
|
-
|
327
|
-
old = %{field :names, types[types.String.to_non_null_type]}
|
328
|
-
new = %{field :names, [String], null: true}
|
329
|
-
assert_equal new, upgrade(old)
|
330
|
-
|
331
|
-
old = %{field :names, !types[types.String]}
|
332
|
-
new = %{field :names, [String, null: true], null: false}
|
333
|
-
assert_equal new, upgrade(old)
|
334
|
-
|
335
|
-
old = %{
|
336
|
-
field :name, types.String do
|
337
|
-
end
|
338
|
-
}
|
339
|
-
new = %{
|
340
|
-
field :name, String, null: true
|
341
|
-
}
|
342
|
-
assert_equal new, upgrade(old)
|
343
|
-
|
344
|
-
old = %{
|
345
|
-
field :name, !types.String do
|
346
|
-
description "abc"
|
347
|
-
end
|
348
|
-
|
349
|
-
field :name2, !types.Int do
|
350
|
-
description "def"
|
351
|
-
end
|
352
|
-
}
|
353
|
-
new = %{
|
354
|
-
field :name, String, description: "abc", null: false
|
355
|
-
|
356
|
-
field :name2, Integer, description: "def", null: false
|
357
|
-
}
|
358
|
-
assert_equal new, upgrade(old)
|
359
|
-
|
360
|
-
old = %{
|
361
|
-
field :name, types.String.to_non_null_type do
|
362
|
-
description "abc"
|
363
|
-
end
|
364
|
-
|
365
|
-
field :name2, types.Int.to_non_null_type do
|
366
|
-
description "def"
|
367
|
-
end
|
368
|
-
}
|
369
|
-
new = %{
|
370
|
-
field :name, String, description: "abc", null: false
|
371
|
-
|
372
|
-
field :name2, Integer, description: "def", null: false
|
373
|
-
}
|
374
|
-
assert_equal new, upgrade(old)
|
375
|
-
|
376
|
-
old = %{
|
377
|
-
field :name, -> { !types.String } do
|
378
|
-
end
|
379
|
-
}
|
380
|
-
new = %{
|
381
|
-
field :name, String, null: false
|
382
|
-
}
|
383
|
-
assert_equal new, upgrade(old)
|
384
|
-
|
385
|
-
old = %{
|
386
|
-
field :name, -> { types.String.to_non_null_type } do
|
387
|
-
end
|
388
|
-
}
|
389
|
-
new = %{
|
390
|
-
field :name, String, null: false
|
391
|
-
}
|
392
|
-
assert_equal new, upgrade(old)
|
393
|
-
|
394
|
-
old = %{
|
395
|
-
field :name do
|
396
|
-
type -> { String }
|
397
|
-
end
|
398
|
-
}
|
399
|
-
new = %{
|
400
|
-
field :name, String, null: true
|
401
|
-
}
|
402
|
-
assert_equal new, upgrade(old)
|
403
|
-
|
404
|
-
old = %{
|
405
|
-
field :name do
|
406
|
-
type !String
|
407
|
-
end
|
408
|
-
|
409
|
-
field :name2 do
|
410
|
-
type !String
|
411
|
-
end
|
412
|
-
}
|
413
|
-
new = %{
|
414
|
-
field :name, String, null: false
|
415
|
-
|
416
|
-
field :name2, String, null: false
|
417
|
-
}
|
418
|
-
assert_equal new, upgrade(old)
|
419
|
-
|
420
|
-
old = %{
|
421
|
-
field :name do
|
422
|
-
type String.to_non_null_type
|
423
|
-
end
|
424
|
-
|
425
|
-
field :name2 do
|
426
|
-
type String.to_non_null_type
|
427
|
-
end
|
428
|
-
}
|
429
|
-
new = %{
|
430
|
-
field :name, String, null: false
|
431
|
-
|
432
|
-
field :name2, String, null: false
|
433
|
-
}
|
434
|
-
assert_equal new, upgrade(old)
|
435
|
-
|
436
|
-
old = %{
|
437
|
-
field :name, -> { types.String },
|
438
|
-
"newline description" do
|
439
|
-
end
|
440
|
-
}
|
441
|
-
new = %{
|
442
|
-
field :name, String, "newline description", null: true
|
443
|
-
}
|
444
|
-
assert_equal new, upgrade(old)
|
445
|
-
|
446
|
-
old = %{
|
447
|
-
field :name, -> { !types.String },
|
448
|
-
"newline description" do
|
449
|
-
end
|
450
|
-
}
|
451
|
-
new = %{
|
452
|
-
field :name, String, "newline description", null: false
|
453
|
-
}
|
454
|
-
assert_equal new, upgrade(old)
|
455
|
-
|
456
|
-
old = %{
|
457
|
-
field :name, -> { types.String.to_non_null_type },
|
458
|
-
"newline description" do
|
459
|
-
end
|
460
|
-
}
|
461
|
-
new = %{
|
462
|
-
field :name, String, "newline description", null: false
|
463
|
-
}
|
464
|
-
assert_equal new, upgrade(old)
|
465
|
-
|
466
|
-
old = %{
|
467
|
-
field :name, String,
|
468
|
-
field: SomeField do
|
469
|
-
end
|
470
|
-
}
|
471
|
-
new = %{
|
472
|
-
field :name, String, field: SomeField, null: true
|
473
|
-
}
|
474
|
-
assert_equal new, upgrade(old)
|
475
|
-
end
|
476
|
-
end
|
477
|
-
|
478
|
-
describe 'multi-line field with property/method' do
|
479
|
-
it 'upgrades without breaking syntax' do
|
480
|
-
old = %{
|
481
|
-
field :is_example_field, types.Boolean,
|
482
|
-
property: :example_field?
|
483
|
-
}
|
484
|
-
new = %{
|
485
|
-
field :is_example_field, Boolean, method: :example_field?, null: true
|
486
|
-
}
|
487
|
-
|
488
|
-
assert_equal new, upgrade(old)
|
489
|
-
end
|
490
|
-
end
|
491
|
-
|
492
|
-
describe 'multi-line connection with property/method' do
|
493
|
-
it 'upgrades without breaking syntax' do
|
494
|
-
old = %{
|
495
|
-
connection :example_connection, -> { ExampleConnectionType },
|
496
|
-
property: :example_connections
|
497
|
-
}
|
498
|
-
new = %{
|
499
|
-
field :example_connection, ExampleConnectionType, method: :example_connections, null: true, connection: true
|
500
|
-
}
|
501
|
-
|
502
|
-
assert_equal new, upgrade(old)
|
503
|
-
end
|
504
|
-
end
|
505
|
-
|
506
|
-
describe 'input_field' do
|
507
|
-
it 'upgrades to argument' do
|
508
|
-
old = %{input_field :id, !types.ID}
|
509
|
-
new = %{argument :id, ID, required: true}
|
510
|
-
assert_equal new, upgrade(old)
|
511
|
-
end
|
512
|
-
end
|
513
|
-
|
514
|
-
describe 'implements' do
|
515
|
-
it 'upgrades interfaces to implements' do
|
516
|
-
old = %{
|
517
|
-
interfaces [Types::SearchableType, Types::CommentableType]
|
518
|
-
interfaces [Types::ShareableType]
|
519
|
-
}
|
520
|
-
new = %{
|
521
|
-
implements Types::SearchableType
|
522
|
-
implements Types::CommentableType
|
523
|
-
implements Types::ShareableType
|
524
|
-
}
|
525
|
-
assert_equal new, upgrade(old)
|
526
|
-
end
|
527
|
-
end
|
528
|
-
|
529
|
-
describe "fixtures" do
|
530
|
-
class ActiveRecordTypeToClassTransform < GraphQL::Upgrader::Transform
|
531
|
-
def initialize
|
532
|
-
@find_pattern = /^( +)([a-zA-Z_0-9:]*) = define_active_record_type\(-> ?\{ ?:{0,2}([a-zA-Z_0-9:]*) ?\} ?\) do/
|
533
|
-
@replace_pattern = "\\1class \\2 < Platform::Objects::Base\n\\1 model_name \"\\3\""
|
534
|
-
end
|
535
|
-
|
536
|
-
def apply(input_text)
|
537
|
-
input_text.sub(@find_pattern, @replace_pattern)
|
538
|
-
end
|
539
|
-
end
|
540
|
-
|
541
|
-
# Modify the default output to match the custom structure
|
542
|
-
class InputObjectsToInputsTransform < GraphQL::Upgrader::Transform
|
543
|
-
def apply(input_text)
|
544
|
-
input_text.gsub("Platform::InputObjects::", "Platform::Inputs::")
|
545
|
-
end
|
546
|
-
end
|
547
|
-
|
548
|
-
def custom_upgrade(original_text)
|
549
|
-
# Replace the default one with a custom one:
|
550
|
-
type_transforms = GraphQL::Upgrader::Member::DEFAULT_TYPE_TRANSFORMS.map { |t|
|
551
|
-
if t == GraphQL::Upgrader::TypeDefineToClassTransform
|
552
|
-
GraphQL::Upgrader::TypeDefineToClassTransform.new(base_class_pattern: "Platform::\\3s::Base")
|
553
|
-
else
|
554
|
-
t
|
555
|
-
end
|
556
|
-
}
|
557
|
-
|
558
|
-
type_transforms.unshift(ActiveRecordTypeToClassTransform)
|
559
|
-
type_transforms.push(InputObjectsToInputsTransform)
|
560
|
-
field_transforms = GraphQL::Upgrader::Member::DEFAULT_FIELD_TRANSFORMS.dup
|
561
|
-
field_transforms.unshift(GraphQL::Upgrader::ConfigurationToKwargTransform.new(kwarg: "visibility"))
|
562
|
-
upgrader = GraphQL::Upgrader::Member.new(original_text, type_transforms: type_transforms, field_transforms: field_transforms)
|
563
|
-
upgrader.upgrade
|
564
|
-
end
|
565
|
-
|
566
|
-
original_files = Dir.glob("spec/fixtures/upgrader/*.original.rb")
|
567
|
-
original_files.each do |original_file|
|
568
|
-
transformed_file = original_file.sub(".original.", ".transformed.")
|
569
|
-
original_text = File.read(original_file)
|
570
|
-
expected_text = File.read(transformed_file)
|
571
|
-
|
572
|
-
it "transforms #{original_file} -> #{transformed_file}" do
|
573
|
-
transformed_text = custom_upgrade(original_text)
|
574
|
-
assert_equal(expected_text, transformed_text)
|
575
|
-
end
|
576
|
-
|
577
|
-
it "is idempotent on #{transformed_file}" do
|
578
|
-
retransformed_text = custom_upgrade(expected_text)
|
579
|
-
assert_equal(expected_text, retransformed_text)
|
580
|
-
end
|
581
|
-
end
|
582
|
-
end
|
583
|
-
end
|