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,837 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
require 'spec_helper'
|
3
|
-
|
4
|
-
describe GraphQL::Relay::RelationConnection do
|
5
|
-
def get_names(result)
|
6
|
-
ships = result["data"]["empire"]["bases"]["edges"]
|
7
|
-
ships.map { |e| e["node"]["name"] }
|
8
|
-
end
|
9
|
-
|
10
|
-
def get_page_info(result)
|
11
|
-
result["data"]["empire"]["bases"]["pageInfo"]
|
12
|
-
end
|
13
|
-
|
14
|
-
def get_first_cursor(result)
|
15
|
-
result["data"]["empire"]["bases"]["edges"].first["cursor"]
|
16
|
-
end
|
17
|
-
|
18
|
-
def get_last_cursor(result)
|
19
|
-
result["data"]["empire"]["bases"]["edges"].last["cursor"]
|
20
|
-
end
|
21
|
-
|
22
|
-
describe "results" do
|
23
|
-
let(:query_string) {%|
|
24
|
-
query getShips($first: Int, $after: String, $last: Int, $before: String, $nameIncludes: String){
|
25
|
-
empire {
|
26
|
-
bases(first: $first, after: $after, last: $last, before: $before, nameIncludes: $nameIncludes) {
|
27
|
-
... basesConnection
|
28
|
-
}
|
29
|
-
}
|
30
|
-
}
|
31
|
-
|
32
|
-
fragment basesConnection on BasesConnectionWithTotalCount {
|
33
|
-
totalCount,
|
34
|
-
edges {
|
35
|
-
cursor
|
36
|
-
node {
|
37
|
-
name
|
38
|
-
}
|
39
|
-
},
|
40
|
-
pageInfo {
|
41
|
-
hasNextPage
|
42
|
-
hasPreviousPage
|
43
|
-
startCursor
|
44
|
-
endCursor
|
45
|
-
}
|
46
|
-
}
|
47
|
-
|}
|
48
|
-
|
49
|
-
it 'limits the result' do
|
50
|
-
result = star_wars_query(query_string, "first" => 2)
|
51
|
-
assert_equal(2, get_names(result).length)
|
52
|
-
assert_equal(true, get_page_info(result)["hasNextPage"])
|
53
|
-
assert_equal(false, get_page_info(result)["hasPreviousPage"])
|
54
|
-
assert_equal("MQ", get_page_info(result)["startCursor"])
|
55
|
-
assert_equal("Mg", get_page_info(result)["endCursor"])
|
56
|
-
assert_equal("MQ", get_first_cursor(result))
|
57
|
-
assert_equal("Mg", get_last_cursor(result))
|
58
|
-
|
59
|
-
result = star_wars_query(query_string, "first" => 3)
|
60
|
-
assert_equal(3, get_names(result).length)
|
61
|
-
assert_equal(false, get_page_info(result)["hasNextPage"])
|
62
|
-
assert_equal(false, get_page_info(result)["hasPreviousPage"])
|
63
|
-
assert_equal("MQ", get_page_info(result)["startCursor"])
|
64
|
-
assert_equal("Mw", get_page_info(result)["endCursor"])
|
65
|
-
assert_equal("MQ", get_first_cursor(result))
|
66
|
-
assert_equal("Mw", get_last_cursor(result))
|
67
|
-
end
|
68
|
-
|
69
|
-
it "uses unscope(:order) count(*) when the relation has some complicated SQL" do
|
70
|
-
query_s = <<-GRAPHQL
|
71
|
-
query getShips($first: Int, $after: String, $complexOrder: Boolean){
|
72
|
-
empire {
|
73
|
-
bases(first: $first, after: $after, complexOrder: $complexOrder) {
|
74
|
-
edges {
|
75
|
-
node {
|
76
|
-
name
|
77
|
-
}
|
78
|
-
}
|
79
|
-
pageInfo {
|
80
|
-
hasNextPage
|
81
|
-
}
|
82
|
-
}
|
83
|
-
}
|
84
|
-
}
|
85
|
-
GRAPHQL
|
86
|
-
result = nil
|
87
|
-
log = with_active_record_log do
|
88
|
-
result = star_wars_query(query_s, "first" => 1, "after" => "MQ==", "complexOrder" => true)
|
89
|
-
end
|
90
|
-
|
91
|
-
conn = result["data"]["empire"]["bases"]
|
92
|
-
assert_equal(1, conn["edges"].size)
|
93
|
-
assert_equal(true, conn["pageInfo"]["hasNextPage"])
|
94
|
-
|
95
|
-
log_entries = log.split("\n")
|
96
|
-
assert_equal 2, log_entries.size, "It ran 2 sql queries"
|
97
|
-
edges_query, has_next_page_query = log_entries
|
98
|
-
assert_includes edges_query, "ORDER BY bases.name", "The query for edges _is_ ordered"
|
99
|
-
refute_includes has_next_page_query, "ORDER BY bases.name", "The count query **does not** have an order"
|
100
|
-
end
|
101
|
-
|
102
|
-
it 'provides custom fields on the connection type' do
|
103
|
-
result = star_wars_query(query_string, "first" => 2)
|
104
|
-
assert_equal(
|
105
|
-
StarWars::Base.where(faction_id: 2).count,
|
106
|
-
result["data"]["empire"]["bases"]["totalCount"]
|
107
|
-
)
|
108
|
-
end
|
109
|
-
|
110
|
-
it "makes one sql query for items and another for count" do
|
111
|
-
query_str = <<-GRAPHQL
|
112
|
-
{
|
113
|
-
empire {
|
114
|
-
bases(first: 2) {
|
115
|
-
totalCount
|
116
|
-
edges {
|
117
|
-
cursor
|
118
|
-
node {
|
119
|
-
name
|
120
|
-
}
|
121
|
-
}
|
122
|
-
}
|
123
|
-
}
|
124
|
-
}
|
125
|
-
GRAPHQL
|
126
|
-
result = nil
|
127
|
-
log = with_active_record_log do
|
128
|
-
result = star_wars_query(query_str, "first" => 2)
|
129
|
-
end
|
130
|
-
assert_equal 2, log.scan("\n").count, "Two log entries"
|
131
|
-
assert_equal 3, result["data"]["empire"]["bases"]["totalCount"]
|
132
|
-
assert_equal 2, result["data"]["empire"]["bases"]["edges"].size
|
133
|
-
end
|
134
|
-
|
135
|
-
it "provides bidirectional_pagination" do
|
136
|
-
result = star_wars_query(query_string, "first" => 1)
|
137
|
-
last_cursor = get_last_cursor(result)
|
138
|
-
|
139
|
-
result = star_wars_query(query_string, "first" => 1, "after" => last_cursor)
|
140
|
-
assert_equal true, get_page_info(result)["hasNextPage"]
|
141
|
-
assert_equal false, get_page_info(result)["hasPreviousPage"]
|
142
|
-
|
143
|
-
result = with_bidirectional_pagination {
|
144
|
-
star_wars_query(query_string, "first" => 1, "after" => last_cursor)
|
145
|
-
}
|
146
|
-
assert_equal true, get_page_info(result)["hasNextPage"]
|
147
|
-
assert_equal true, get_page_info(result)["hasPreviousPage"]
|
148
|
-
|
149
|
-
last_cursor = get_last_cursor(result)
|
150
|
-
result = with_bidirectional_pagination {
|
151
|
-
star_wars_query(query_string, "last" => 1, "before" => last_cursor)
|
152
|
-
}
|
153
|
-
assert_equal true, get_page_info(result)["hasNextPage"]
|
154
|
-
assert_equal false, get_page_info(result)["hasPreviousPage"]
|
155
|
-
|
156
|
-
result = star_wars_query(query_string, "first" => 100)
|
157
|
-
last_cursor = get_last_cursor(result)
|
158
|
-
|
159
|
-
result = star_wars_query(query_string, "last" => 1, "before" => last_cursor)
|
160
|
-
assert_equal false, get_page_info(result)["hasNextPage"]
|
161
|
-
assert_equal true, get_page_info(result)["hasPreviousPage"]
|
162
|
-
|
163
|
-
result = with_bidirectional_pagination {
|
164
|
-
star_wars_query(query_string, "last" => 1, "before" => last_cursor)
|
165
|
-
}
|
166
|
-
assert_equal true, get_page_info(result)["hasNextPage"]
|
167
|
-
assert_equal true, get_page_info(result)["hasPreviousPage"]
|
168
|
-
end
|
169
|
-
|
170
|
-
it 'slices the result' do
|
171
|
-
result = star_wars_query(query_string, "first" => 2)
|
172
|
-
assert_equal(["Death Star", "Shield Generator"], get_names(result))
|
173
|
-
|
174
|
-
# After the last result, find the next 2:
|
175
|
-
last_cursor = get_last_cursor(result)
|
176
|
-
|
177
|
-
result = star_wars_query(query_string, "after" => last_cursor, "first" => 2)
|
178
|
-
assert_equal(["Headquarters"], get_names(result))
|
179
|
-
|
180
|
-
last_cursor = get_last_cursor(result)
|
181
|
-
|
182
|
-
result = star_wars_query(query_string, "before" => last_cursor, "last" => 1)
|
183
|
-
assert_equal(["Shield Generator"], get_names(result))
|
184
|
-
|
185
|
-
result = star_wars_query(query_string, "before" => last_cursor, "last" => 2)
|
186
|
-
assert_equal(["Death Star", "Shield Generator"], get_names(result))
|
187
|
-
|
188
|
-
result = star_wars_query(query_string, "before" => last_cursor, "last" => 10)
|
189
|
-
assert_equal(["Death Star", "Shield Generator"], get_names(result))
|
190
|
-
|
191
|
-
result = star_wars_query(query_string, "last" => 2)
|
192
|
-
assert_equal(["Shield Generator", "Headquarters"], get_names(result))
|
193
|
-
|
194
|
-
result = star_wars_query(query_string, "last" => 10)
|
195
|
-
assert_equal(["Death Star", "Shield Generator", "Headquarters"], get_names(result))
|
196
|
-
assert_equal(false, result["data"]["empire"]["bases"]["pageInfo"]["hasNextPage"])
|
197
|
-
assert_equal(false, result["data"]["empire"]["bases"]["pageInfo"]["hasPreviousPage"])
|
198
|
-
end
|
199
|
-
|
200
|
-
it 'works with before and after specified together' do
|
201
|
-
result = star_wars_query(query_string, "first" => 2)
|
202
|
-
assert_equal(["Death Star", "Shield Generator"], get_names(result))
|
203
|
-
|
204
|
-
first_cursor = get_last_cursor(result)
|
205
|
-
|
206
|
-
# There is no records between before and after if they point to the same cursor
|
207
|
-
result = star_wars_query(query_string, "before" => first_cursor, "after" => first_cursor, "last" => 2)
|
208
|
-
assert_equal([], get_names(result))
|
209
|
-
|
210
|
-
result = star_wars_query(query_string, "after" => first_cursor, "first" => 2)
|
211
|
-
assert_equal(["Headquarters"], get_names(result))
|
212
|
-
|
213
|
-
second_cursor = get_last_cursor(result)
|
214
|
-
|
215
|
-
result = star_wars_query(query_string, "after" => first_cursor, "before" => second_cursor, "first" => 3)
|
216
|
-
assert_equal([], get_names(result))
|
217
|
-
end
|
218
|
-
|
219
|
-
it 'handles cursors above the bounds of the array' do
|
220
|
-
overreaching_cursor = Base64.strict_encode64("100")
|
221
|
-
result = star_wars_query(query_string, "after" => overreaching_cursor, "first" => 2)
|
222
|
-
assert_equal([], get_names(result))
|
223
|
-
end
|
224
|
-
|
225
|
-
it 'handles cursors below the bounds of the array' do
|
226
|
-
underreaching_cursor = Base64.strict_encode64("1")
|
227
|
-
result = star_wars_query(query_string, "before" => underreaching_cursor, "first" => 2)
|
228
|
-
assert_equal([], get_names(result))
|
229
|
-
end
|
230
|
-
|
231
|
-
|
232
|
-
it 'handles grouped connections with only last argument' do
|
233
|
-
grouped_conn_query = <<-GRAPHQL
|
234
|
-
query {
|
235
|
-
newestBasesGroupedByFaction(last: 2) {
|
236
|
-
edges {
|
237
|
-
node {
|
238
|
-
name
|
239
|
-
}
|
240
|
-
}
|
241
|
-
}
|
242
|
-
}
|
243
|
-
GRAPHQL
|
244
|
-
|
245
|
-
result = star_wars_query(grouped_conn_query)
|
246
|
-
names = result['data']['newestBasesGroupedByFaction']['edges'].map { |edge| edge['node']['name'] }
|
247
|
-
assert_equal(['Headquarters', 'Secret Hideout'], names)
|
248
|
-
end
|
249
|
-
|
250
|
-
it "applies custom arguments" do
|
251
|
-
result = star_wars_query(query_string, "first" => 1, "nameIncludes" => "ea")
|
252
|
-
assert_equal(["Death Star"], get_names(result))
|
253
|
-
|
254
|
-
after = get_last_cursor(result)
|
255
|
-
|
256
|
-
result = star_wars_query(query_string, "first" => 2, "nameIncludes" => "ea", "after" => after )
|
257
|
-
assert_equal(["Headquarters"], get_names(result))
|
258
|
-
before = get_last_cursor(result)
|
259
|
-
|
260
|
-
result = star_wars_query(query_string, "last" => 1, "nameIncludes" => "ea", "before" => before)
|
261
|
-
assert_equal(["Death Star"], get_names(result))
|
262
|
-
end
|
263
|
-
|
264
|
-
it 'works without first/last/after/before' do
|
265
|
-
result = star_wars_query(query_string)
|
266
|
-
|
267
|
-
assert_equal(3, result["data"]["empire"]["bases"]["edges"].length)
|
268
|
-
end
|
269
|
-
|
270
|
-
describe "applying max_page_size" do
|
271
|
-
let(:query_string) {%|
|
272
|
-
query getBases($first: Int, $after: String, $last: Int, $before: String){
|
273
|
-
empire {
|
274
|
-
bases: basesWithMaxLimitRelation(first: $first, after: $after, last: $last, before: $before) {
|
275
|
-
... basesConnection
|
276
|
-
}
|
277
|
-
}
|
278
|
-
}
|
279
|
-
|
280
|
-
fragment basesConnection on BaseConnection {
|
281
|
-
edges {
|
282
|
-
cursor
|
283
|
-
node {
|
284
|
-
name
|
285
|
-
}
|
286
|
-
},
|
287
|
-
pageInfo {
|
288
|
-
hasNextPage
|
289
|
-
hasPreviousPage
|
290
|
-
startCursor
|
291
|
-
endCursor
|
292
|
-
}
|
293
|
-
}
|
294
|
-
|}
|
295
|
-
|
296
|
-
it "applies to queries by `first`" do
|
297
|
-
result = star_wars_query(query_string, "first" => 100)
|
298
|
-
assert_equal(2, result["data"]["empire"]["bases"]["edges"].size)
|
299
|
-
assert_equal(true, result["data"]["empire"]["bases"]["pageInfo"]["hasNextPage"])
|
300
|
-
|
301
|
-
# Max page size is applied _without_ `first`, also
|
302
|
-
result = star_wars_query(query_string)
|
303
|
-
assert_equal(2, result["data"]["empire"]["bases"]["edges"].size)
|
304
|
-
assert_equal(false, result["data"]["empire"]["bases"]["pageInfo"]["hasNextPage"], "hasNextPage is false when first is not specified")
|
305
|
-
end
|
306
|
-
|
307
|
-
it "applies to queries by `last`" do
|
308
|
-
second_to_last_two_names = ["Death Star", "Shield Generator"]
|
309
|
-
first_and_second_names = ["Yavin", "Echo Base"]
|
310
|
-
|
311
|
-
last_cursor = "Ng=="
|
312
|
-
result = star_wars_query(query_string, "last" => 100, "before" => last_cursor)
|
313
|
-
assert_equal(second_to_last_two_names, get_names(result))
|
314
|
-
assert_equal(true, result["data"]["empire"]["bases"]["pageInfo"]["hasPreviousPage"])
|
315
|
-
|
316
|
-
result = star_wars_query(query_string, "before" => last_cursor)
|
317
|
-
assert_equal(first_and_second_names, get_names(result))
|
318
|
-
assert_equal(false, result["data"]["empire"]["bases"]["pageInfo"]["hasPreviousPage"], "hasPreviousPage is false when last is not specified")
|
319
|
-
|
320
|
-
third_cursor = "Mw"
|
321
|
-
result = star_wars_query(query_string, "last" => 100, "before" => third_cursor)
|
322
|
-
assert_equal(first_and_second_names, get_names(result))
|
323
|
-
|
324
|
-
result = star_wars_query(query_string, "before" => third_cursor)
|
325
|
-
assert_equal(first_and_second_names, get_names(result))
|
326
|
-
end
|
327
|
-
end
|
328
|
-
|
329
|
-
describe "applying default_max_page_size" do
|
330
|
-
let(:query_string) {%|
|
331
|
-
query getBases($first: Int, $after: String, $last: Int, $before: String){
|
332
|
-
empire {
|
333
|
-
bases: basesWithDefaultMaxLimitRelation(first: $first, after: $after, last: $last, before: $before) {
|
334
|
-
... basesConnection
|
335
|
-
}
|
336
|
-
}
|
337
|
-
}
|
338
|
-
|
339
|
-
fragment basesConnection on BaseConnection {
|
340
|
-
edges {
|
341
|
-
cursor
|
342
|
-
node {
|
343
|
-
name
|
344
|
-
}
|
345
|
-
},
|
346
|
-
pageInfo {
|
347
|
-
hasNextPage
|
348
|
-
hasPreviousPage
|
349
|
-
startCursor
|
350
|
-
endCursor
|
351
|
-
}
|
352
|
-
}
|
353
|
-
|}
|
354
|
-
|
355
|
-
it "applies to queries by `first`" do
|
356
|
-
result = star_wars_query(query_string, "first" => 100)
|
357
|
-
assert_equal(3, result["data"]["empire"]["bases"]["edges"].size)
|
358
|
-
assert_equal(true, result["data"]["empire"]["bases"]["pageInfo"]["hasNextPage"])
|
359
|
-
|
360
|
-
# Max page size is applied _without_ `first`, also
|
361
|
-
result = star_wars_query(query_string)
|
362
|
-
assert_equal(3, result["data"]["empire"]["bases"]["edges"].size)
|
363
|
-
assert_equal(false, result["data"]["empire"]["bases"]["pageInfo"]["hasNextPage"], "hasNextPage is false when first is not specified")
|
364
|
-
end
|
365
|
-
|
366
|
-
it "applies to queries by `last`" do
|
367
|
-
second_to_last_three_names = ["Secret Hideout", "Death Star", "Shield Generator"]
|
368
|
-
first_second_and_third_names = ["Yavin", "Echo Base", "Secret Hideout"]
|
369
|
-
|
370
|
-
last_cursor = "Ng=="
|
371
|
-
result = star_wars_query(query_string, "last" => 100, "before" => last_cursor)
|
372
|
-
assert_equal(second_to_last_three_names, get_names(result))
|
373
|
-
assert_equal(true, result["data"]["empire"]["bases"]["pageInfo"]["hasPreviousPage"])
|
374
|
-
|
375
|
-
result = star_wars_query(query_string, "before" => last_cursor)
|
376
|
-
assert_equal(first_second_and_third_names, get_names(result))
|
377
|
-
assert_equal(false, result["data"]["empire"]["bases"]["pageInfo"]["hasPreviousPage"], "hasPreviousPage is false when last is not specified")
|
378
|
-
|
379
|
-
fourth_cursor = "NA=="
|
380
|
-
result = star_wars_query(query_string, "last" => 100, "before" => fourth_cursor)
|
381
|
-
assert_equal(first_second_and_third_names, get_names(result))
|
382
|
-
|
383
|
-
result = star_wars_query(query_string, "before" => fourth_cursor)
|
384
|
-
assert_equal(first_second_and_third_names, get_names(result))
|
385
|
-
end
|
386
|
-
end
|
387
|
-
end
|
388
|
-
|
389
|
-
describe "applying a max_page_size bigger than the results" do
|
390
|
-
let(:query_string) {%|
|
391
|
-
query getBases($first: Int, $after: String, $last: Int, $before: String){
|
392
|
-
empire {
|
393
|
-
bases: basesWithLargeMaxLimitRelation(first: $first, after: $after, last: $last, before: $before) {
|
394
|
-
... basesConnection
|
395
|
-
}
|
396
|
-
}
|
397
|
-
}
|
398
|
-
|
399
|
-
fragment basesConnection on BaseConnection {
|
400
|
-
edges {
|
401
|
-
cursor
|
402
|
-
node {
|
403
|
-
name
|
404
|
-
}
|
405
|
-
},
|
406
|
-
pageInfo {
|
407
|
-
hasNextPage
|
408
|
-
hasPreviousPage
|
409
|
-
startCursor
|
410
|
-
endCursor
|
411
|
-
}
|
412
|
-
}
|
413
|
-
|}
|
414
|
-
|
415
|
-
it "applies to queries by `first`" do
|
416
|
-
result = star_wars_query(query_string, "first" => 100)
|
417
|
-
assert_equal(6, result["data"]["empire"]["bases"]["edges"].size)
|
418
|
-
assert_equal(false, result["data"]["empire"]["bases"]["pageInfo"]["hasNextPage"])
|
419
|
-
|
420
|
-
# Max page size is applied _without_ `first`, also
|
421
|
-
result = star_wars_query(query_string)
|
422
|
-
assert_equal(6, result["data"]["empire"]["bases"]["edges"].size)
|
423
|
-
assert_equal(false, result["data"]["empire"]["bases"]["pageInfo"]["hasNextPage"], "hasNextPage is false when first is not specified")
|
424
|
-
end
|
425
|
-
|
426
|
-
it "applies to queries by `last`" do
|
427
|
-
all_names = ["Yavin", "Echo Base", "Secret Hideout", "Death Star", "Shield Generator", "Headquarters"]
|
428
|
-
|
429
|
-
last_cursor = "Ng=="
|
430
|
-
result = star_wars_query(query_string, "last" => 100, "before" => last_cursor)
|
431
|
-
assert_equal(all_names[0..4], get_names(result))
|
432
|
-
assert_equal(false, result["data"]["empire"]["bases"]["pageInfo"]["hasPreviousPage"])
|
433
|
-
|
434
|
-
result = star_wars_query(query_string, "last" => 100)
|
435
|
-
assert_equal(all_names, get_names(result))
|
436
|
-
assert_equal(false, result["data"]["empire"]["bases"]["pageInfo"]["hasPreviousPage"])
|
437
|
-
|
438
|
-
result = star_wars_query(query_string, "before" => last_cursor)
|
439
|
-
assert_equal(all_names[0..4], get_names(result))
|
440
|
-
assert_equal(false, result["data"]["empire"]["bases"]["pageInfo"]["hasPreviousPage"], "hasPreviousPage is false when last is not specified")
|
441
|
-
|
442
|
-
fourth_cursor = "NA=="
|
443
|
-
result = star_wars_query(query_string, "last" => 100, "before" => fourth_cursor)
|
444
|
-
assert_equal(all_names[0..2], get_names(result))
|
445
|
-
|
446
|
-
result = star_wars_query(query_string, "before" => fourth_cursor)
|
447
|
-
assert_equal(all_names[0..2], get_names(result))
|
448
|
-
end
|
449
|
-
end
|
450
|
-
|
451
|
-
describe "without a block" do
|
452
|
-
let(:query_string) {%|
|
453
|
-
{
|
454
|
-
empire {
|
455
|
-
basesClone(first: 10) {
|
456
|
-
edges {
|
457
|
-
node {
|
458
|
-
name
|
459
|
-
}
|
460
|
-
}
|
461
|
-
}
|
462
|
-
}
|
463
|
-
}|}
|
464
|
-
it "uses default resolve" do
|
465
|
-
result = star_wars_query(query_string)
|
466
|
-
bases = result["data"]["empire"]["basesClone"]["edges"]
|
467
|
-
assert_equal(3, bases.length)
|
468
|
-
end
|
469
|
-
end
|
470
|
-
|
471
|
-
describe "custom ordering" do
|
472
|
-
let(:query_string) {%|
|
473
|
-
query getBases {
|
474
|
-
empire {
|
475
|
-
basesByName(first: 30) { ... basesFields }
|
476
|
-
bases(first: 30) { ... basesFields2 }
|
477
|
-
}
|
478
|
-
}
|
479
|
-
fragment basesFields on BaseConnection {
|
480
|
-
edges {
|
481
|
-
node {
|
482
|
-
name
|
483
|
-
}
|
484
|
-
}
|
485
|
-
}
|
486
|
-
fragment basesFields2 on BasesConnectionWithTotalCount {
|
487
|
-
edges {
|
488
|
-
node {
|
489
|
-
name
|
490
|
-
}
|
491
|
-
}
|
492
|
-
}
|
493
|
-
|}
|
494
|
-
|
495
|
-
def get_names(result, field_name)
|
496
|
-
bases = result["data"]["empire"][field_name]["edges"]
|
497
|
-
bases.map { |b| b["node"]["name"] }
|
498
|
-
end
|
499
|
-
|
500
|
-
it "applies the default value" do
|
501
|
-
result = star_wars_query(query_string)
|
502
|
-
bases_by_id = ["Death Star", "Shield Generator", "Headquarters"]
|
503
|
-
bases_by_name = ["Death Star", "Headquarters", "Shield Generator"]
|
504
|
-
|
505
|
-
assert_equal(bases_by_id, get_names(result, "bases"))
|
506
|
-
assert_equal(bases_by_name, get_names(result, "basesByName"))
|
507
|
-
end
|
508
|
-
end
|
509
|
-
|
510
|
-
describe "with a Sequel::Dataset" do
|
511
|
-
def get_names(result)
|
512
|
-
ships = result["data"]["empire"]["basesAsSequelDataset"]["edges"]
|
513
|
-
ships.map { |e| e["node"]["name"] }
|
514
|
-
end
|
515
|
-
|
516
|
-
def get_page_info(result)
|
517
|
-
result["data"]["empire"]["basesAsSequelDataset"]["pageInfo"]
|
518
|
-
end
|
519
|
-
|
520
|
-
def get_first_cursor(result)
|
521
|
-
result["data"]["empire"]["basesAsSequelDataset"]["edges"].first["cursor"]
|
522
|
-
end
|
523
|
-
|
524
|
-
def get_last_cursor(result)
|
525
|
-
result["data"]["empire"]["basesAsSequelDataset"]["edges"].last["cursor"]
|
526
|
-
end
|
527
|
-
|
528
|
-
describe "results" do
|
529
|
-
let(:query_string) {%|
|
530
|
-
query getShips($first: Int, $after: String, $last: Int, $before: String, $nameIncludes: String){
|
531
|
-
empire {
|
532
|
-
basesAsSequelDataset(first: $first, after: $after, last: $last, before: $before, nameIncludes: $nameIncludes) {
|
533
|
-
... basesConnection
|
534
|
-
}
|
535
|
-
}
|
536
|
-
}
|
537
|
-
|
538
|
-
fragment basesConnection on BasesConnectionWithTotalCount {
|
539
|
-
totalCount,
|
540
|
-
edges {
|
541
|
-
cursor
|
542
|
-
node {
|
543
|
-
name
|
544
|
-
}
|
545
|
-
},
|
546
|
-
pageInfo {
|
547
|
-
hasNextPage
|
548
|
-
hasPreviousPage
|
549
|
-
startCursor
|
550
|
-
endCursor
|
551
|
-
}
|
552
|
-
}
|
553
|
-
|}
|
554
|
-
|
555
|
-
it 'limits the result' do
|
556
|
-
result = star_wars_query(query_string, "first" => 2)
|
557
|
-
assert_equal(2, get_names(result).length)
|
558
|
-
assert_equal(true, get_page_info(result)["hasNextPage"])
|
559
|
-
assert_equal(false, get_page_info(result)["hasPreviousPage"])
|
560
|
-
assert_equal("MQ", get_page_info(result)["startCursor"])
|
561
|
-
assert_equal("Mg", get_page_info(result)["endCursor"])
|
562
|
-
assert_equal("MQ", get_first_cursor(result))
|
563
|
-
assert_equal("Mg", get_last_cursor(result))
|
564
|
-
|
565
|
-
result = star_wars_query(query_string, "first" => 3)
|
566
|
-
assert_equal(3, get_names(result).length)
|
567
|
-
assert_equal(false, get_page_info(result)["hasNextPage"])
|
568
|
-
assert_equal(false, get_page_info(result)["hasPreviousPage"])
|
569
|
-
assert_equal("MQ", get_page_info(result)["startCursor"])
|
570
|
-
assert_equal("Mw", get_page_info(result)["endCursor"])
|
571
|
-
assert_equal("MQ", get_first_cursor(result))
|
572
|
-
assert_equal("Mw", get_last_cursor(result))
|
573
|
-
end
|
574
|
-
|
575
|
-
it 'provides custom fields on the connection type' do
|
576
|
-
result = star_wars_query(query_string, "first" => 2)
|
577
|
-
assert_equal(
|
578
|
-
StarWars::Base.where(faction_id: 2).count,
|
579
|
-
result["data"]["empire"]["basesAsSequelDataset"]["totalCount"]
|
580
|
-
)
|
581
|
-
end
|
582
|
-
|
583
|
-
it 'slices the result' do
|
584
|
-
result = star_wars_query(query_string, "first" => 2)
|
585
|
-
assert_equal(["Death Star", "Shield Generator"], get_names(result))
|
586
|
-
|
587
|
-
# After the last result, find the next 2:
|
588
|
-
last_cursor = get_last_cursor(result)
|
589
|
-
|
590
|
-
result = star_wars_query(query_string, "after" => last_cursor, "first" => 2)
|
591
|
-
assert_equal(["Headquarters"], get_names(result))
|
592
|
-
|
593
|
-
last_cursor = get_last_cursor(result)
|
594
|
-
|
595
|
-
result = star_wars_query(query_string, "before" => last_cursor, "last" => 1)
|
596
|
-
assert_equal(["Shield Generator"], get_names(result))
|
597
|
-
|
598
|
-
result = star_wars_query(query_string, "before" => last_cursor, "last" => 2)
|
599
|
-
assert_equal(["Death Star", "Shield Generator"], get_names(result))
|
600
|
-
|
601
|
-
result = star_wars_query(query_string, "before" => last_cursor, "last" => 10)
|
602
|
-
assert_equal(["Death Star", "Shield Generator"], get_names(result))
|
603
|
-
|
604
|
-
end
|
605
|
-
|
606
|
-
it 'handles cursors above the bounds of the array' do
|
607
|
-
overreaching_cursor = Base64.strict_encode64("100")
|
608
|
-
result = star_wars_query(query_string, "after" => overreaching_cursor, "first" => 2)
|
609
|
-
assert_equal([], get_names(result))
|
610
|
-
end
|
611
|
-
|
612
|
-
it 'handles cursors below the bounds of the array' do
|
613
|
-
underreaching_cursor = Base64.strict_encode64("1")
|
614
|
-
result = star_wars_query(query_string, "before" => underreaching_cursor, "first" => 2)
|
615
|
-
assert_equal([], get_names(result))
|
616
|
-
end
|
617
|
-
|
618
|
-
it "applies custom arguments" do
|
619
|
-
result = star_wars_query(query_string, "first" => 1, "nameIncludes" => "ea")
|
620
|
-
assert_equal(["Death Star"], get_names(result))
|
621
|
-
|
622
|
-
after = get_last_cursor(result)
|
623
|
-
|
624
|
-
result = star_wars_query(query_string, "first" => 2, "nameIncludes" => "ea", "after" => after )
|
625
|
-
assert_equal(["Headquarters"], get_names(result))
|
626
|
-
before = get_last_cursor(result)
|
627
|
-
|
628
|
-
result = star_wars_query(query_string, "last" => 1, "nameIncludes" => "ea", "before" => before)
|
629
|
-
assert_equal(["Death Star"], get_names(result))
|
630
|
-
end
|
631
|
-
|
632
|
-
it "makes one sql query for items and another for count" do
|
633
|
-
query_str = <<-GRAPHQL
|
634
|
-
{
|
635
|
-
empire {
|
636
|
-
basesAsSequelDataset(first: 2) {
|
637
|
-
totalCount
|
638
|
-
edges {
|
639
|
-
cursor
|
640
|
-
node {
|
641
|
-
name
|
642
|
-
}
|
643
|
-
}
|
644
|
-
}
|
645
|
-
}
|
646
|
-
}
|
647
|
-
GRAPHQL
|
648
|
-
result = nil
|
649
|
-
io = StringIO.new
|
650
|
-
begin
|
651
|
-
StarWars::DB.loggers << Logger.new(io)
|
652
|
-
result = star_wars_query(query_str, "first" => 2)
|
653
|
-
ensure
|
654
|
-
StarWars::DB.loggers.pop
|
655
|
-
end
|
656
|
-
assert_equal 2, io.string.scan("SELECT").count
|
657
|
-
assert_equal 3, result["data"]["empire"]["basesAsSequelDataset"]["totalCount"]
|
658
|
-
assert_equal 2, result["data"]["empire"]["basesAsSequelDataset"]["edges"].size
|
659
|
-
end
|
660
|
-
end
|
661
|
-
end
|
662
|
-
|
663
|
-
describe "#cursor_from_node" do
|
664
|
-
let(:connection) { GraphQL::Relay::RelationConnection.new(StarWars::Base.where(faction_id: 1), {}) }
|
665
|
-
|
666
|
-
it "returns the cursor for a node in the connection" do
|
667
|
-
assert_equal "MQ", connection.cursor_from_node(StarWars::Base.all[0])
|
668
|
-
assert_equal "Mg", connection.cursor_from_node(StarWars::Base.all[1])
|
669
|
-
end
|
670
|
-
|
671
|
-
it "raises when the node isn't found" do
|
672
|
-
err = assert_raises(RuntimeError) {
|
673
|
-
connection.cursor_from_node(:not_found)
|
674
|
-
}
|
675
|
-
assert_includes err.message, "item not found"
|
676
|
-
end
|
677
|
-
end
|
678
|
-
|
679
|
-
it "is chosen for a relation" do
|
680
|
-
relation = StarWars::Base.where(faction_id: 1)
|
681
|
-
assert relation.is_a?(ActiveRecord::Relation)
|
682
|
-
connection = GraphQL::Relay::BaseConnection.connection_for_nodes(relation)
|
683
|
-
assert_equal GraphQL::Relay::RelationConnection, connection
|
684
|
-
end
|
685
|
-
|
686
|
-
describe "for an ActiveRecord::Relation" do
|
687
|
-
describe "#has_next_page" do
|
688
|
-
it "handles joined, aliased relations" do
|
689
|
-
relation = StarWars::Base.select("id AS crazy_id")
|
690
|
-
connection = GraphQL::Relay::RelationConnection.new(relation, { first: 1 })
|
691
|
-
assert connection.has_next_page
|
692
|
-
end
|
693
|
-
end
|
694
|
-
|
695
|
-
describe "#edge_nodes" do
|
696
|
-
it "returns the nodes for the current page" do
|
697
|
-
# Offset
|
698
|
-
connection = GraphQL::Relay::RelationConnection.new(StarWars::Base.offset(2), {})
|
699
|
-
assert_equal [StarWars::Base.find(3), StarWars::Base.find(4), StarWars::Base.find(5), StarWars::Base.find(6)], connection.edge_nodes,
|
700
|
-
|
701
|
-
cursor1 = connection.cursor_from_node(StarWars::Base.find(3))
|
702
|
-
cursor2 = connection.cursor_from_node(StarWars::Base.find(4))
|
703
|
-
cursor3 = connection.cursor_from_node(StarWars::Base.find(5))
|
704
|
-
cursor4 = connection.cursor_from_node(StarWars::Base.find(6))
|
705
|
-
|
706
|
-
connection = GraphQL::Relay::RelationConnection.new(StarWars::Base.offset(2), { first: 3 })
|
707
|
-
assert_equal [StarWars::Base.find(3), StarWars::Base.find(4), StarWars::Base.find(5)], connection.edge_nodes
|
708
|
-
|
709
|
-
assert_equal cursor1, connection.cursor_from_node(StarWars::Base.find(3))
|
710
|
-
assert_equal cursor2, connection.cursor_from_node(StarWars::Base.find(4))
|
711
|
-
assert_equal cursor3, connection.cursor_from_node(StarWars::Base.find(5))
|
712
|
-
|
713
|
-
connection = GraphQL::Relay::RelationConnection.new(StarWars::Base.offset(2), { last: 3 })
|
714
|
-
assert_equal [StarWars::Base.find(4), StarWars::Base.find(5), StarWars::Base.find(6)], connection.edge_nodes
|
715
|
-
|
716
|
-
assert_equal cursor2, connection.cursor_from_node(StarWars::Base.find(4))
|
717
|
-
assert_equal cursor3, connection.cursor_from_node(StarWars::Base.find(5))
|
718
|
-
assert_equal cursor4, connection.cursor_from_node(StarWars::Base.find(6))
|
719
|
-
|
720
|
-
connection = GraphQL::Relay::RelationConnection.new(StarWars::Base.offset(2), { last: 2 })
|
721
|
-
assert_equal [StarWars::Base.find(5), StarWars::Base.find(6)], connection.edge_nodes
|
722
|
-
|
723
|
-
assert_equal cursor3, connection.cursor_from_node(StarWars::Base.find(5))
|
724
|
-
assert_equal cursor4, connection.cursor_from_node(StarWars::Base.find(6))
|
725
|
-
|
726
|
-
connection = GraphQL::Relay::RelationConnection.new(StarWars::Base.offset(2), { first: 3, last: 1 })
|
727
|
-
assert_equal [StarWars::Base.find(5)], connection.edge_nodes
|
728
|
-
|
729
|
-
assert_equal cursor3, connection.cursor_from_node(StarWars::Base.find(5))
|
730
|
-
|
731
|
-
connection = GraphQL::Relay::RelationConnection.new(StarWars::Base.offset(2), { first: 2, last: 1 })
|
732
|
-
assert_equal [StarWars::Base.find(4)], connection.edge_nodes
|
733
|
-
|
734
|
-
assert_equal cursor2, connection.cursor_from_node(StarWars::Base.find(4))
|
735
|
-
|
736
|
-
connection = GraphQL::Relay::RelationConnection.new(StarWars::Base.offset(2), { after: cursor1 })
|
737
|
-
assert_equal [StarWars::Base.find(4), StarWars::Base.find(5), StarWars::Base.find(6)], connection.edge_nodes
|
738
|
-
|
739
|
-
assert_equal cursor2, connection.cursor_from_node(StarWars::Base.find(4))
|
740
|
-
assert_equal cursor3, connection.cursor_from_node(StarWars::Base.find(5))
|
741
|
-
assert_equal cursor4, connection.cursor_from_node(StarWars::Base.find(6))
|
742
|
-
|
743
|
-
connection = GraphQL::Relay::RelationConnection.new(StarWars::Base.offset(2), { after: cursor1, before: cursor1 })
|
744
|
-
assert_equal [], connection.edge_nodes
|
745
|
-
|
746
|
-
connection = GraphQL::Relay::RelationConnection.new(StarWars::Base.offset(2), { after: cursor1, before: cursor3 })
|
747
|
-
assert_equal [StarWars::Base.find(4)], connection.edge_nodes
|
748
|
-
|
749
|
-
assert_equal cursor2, connection.cursor_from_node(StarWars::Base.find(4))
|
750
|
-
|
751
|
-
connection = GraphQL::Relay::RelationConnection.new(StarWars::Base.offset(2), { after: cursor1, before: cursor4 })
|
752
|
-
assert_equal [StarWars::Base.find(4), StarWars::Base.find(5)], connection.edge_nodes
|
753
|
-
|
754
|
-
assert_equal cursor2, connection.cursor_from_node(StarWars::Base.find(4))
|
755
|
-
assert_equal cursor3, connection.cursor_from_node(StarWars::Base.find(5))
|
756
|
-
|
757
|
-
|
758
|
-
# Limit
|
759
|
-
connection = GraphQL::Relay::RelationConnection.new(StarWars::Base.limit(5), {})
|
760
|
-
assert_equal [StarWars::Base.find(1), StarWars::Base.find(2), StarWars::Base.find(3), StarWars::Base.find(4), StarWars::Base.find(5)], connection.edge_nodes
|
761
|
-
|
762
|
-
cursor1 = connection.cursor_from_node(StarWars::Base.find(1))
|
763
|
-
cursor2 = connection.cursor_from_node(StarWars::Base.find(2))
|
764
|
-
cursor3 = connection.cursor_from_node(StarWars::Base.find(3))
|
765
|
-
cursor4 = connection.cursor_from_node(StarWars::Base.find(4))
|
766
|
-
|
767
|
-
connection = GraphQL::Relay::RelationConnection.new(StarWars::Base.limit(5), { first: 2 })
|
768
|
-
assert_equal [StarWars::Base.find(1), StarWars::Base.find(2)], connection.edge_nodes
|
769
|
-
|
770
|
-
assert_equal cursor1, connection.cursor_from_node(StarWars::Base.find(1))
|
771
|
-
assert_equal cursor2, connection.cursor_from_node(StarWars::Base.find(2))
|
772
|
-
|
773
|
-
connection = GraphQL::Relay::RelationConnection.new(StarWars::Base.limit(5), { first: 2, last: 1 })
|
774
|
-
assert_equal [StarWars::Base.find(2)], connection.edge_nodes
|
775
|
-
|
776
|
-
assert_equal cursor2, connection.cursor_from_node(StarWars::Base.find(2))
|
777
|
-
|
778
|
-
connection = GraphQL::Relay::RelationConnection.new(StarWars::Base.limit(5), { after: cursor2, first: 2 })
|
779
|
-
assert_equal [StarWars::Base.find(3), StarWars::Base.find(4)], connection.edge_nodes
|
780
|
-
|
781
|
-
assert_equal cursor3, connection.cursor_from_node(StarWars::Base.find(3))
|
782
|
-
assert_equal cursor4, connection.cursor_from_node(StarWars::Base.find(4))
|
783
|
-
|
784
|
-
connection = GraphQL::Relay::RelationConnection.new(StarWars::Base.limit(5), { after: cursor2, first: 2, last: 1 })
|
785
|
-
assert_equal [StarWars::Base.find(4)], connection.edge_nodes
|
786
|
-
|
787
|
-
assert_equal cursor4, connection.cursor_from_node(StarWars::Base.find(4))
|
788
|
-
|
789
|
-
connection = GraphQL::Relay::RelationConnection.new(StarWars::Base.limit(5), { first: 2, last: 5 })
|
790
|
-
assert_equal [StarWars::Base.find(1), StarWars::Base.find(2)], connection.edge_nodes
|
791
|
-
|
792
|
-
assert_equal cursor1, connection.cursor_from_node(StarWars::Base.find(1))
|
793
|
-
assert_equal cursor2, connection.cursor_from_node(StarWars::Base.find(2))
|
794
|
-
|
795
|
-
connection = GraphQL::Relay::RelationConnection.new(StarWars::Base.limit(5), { first: 1, last: 5 })
|
796
|
-
assert_equal [StarWars::Base.find(1)], connection.edge_nodes
|
797
|
-
|
798
|
-
assert_equal cursor1, connection.cursor_from_node(StarWars::Base.find(1))
|
799
|
-
|
800
|
-
connection = GraphQL::Relay::RelationConnection.new(StarWars::Base.limit(5), { after: cursor1, before: cursor1 })
|
801
|
-
assert_equal [], connection.edge_nodes
|
802
|
-
|
803
|
-
connection = GraphQL::Relay::RelationConnection.new(StarWars::Base.limit(5), { after: cursor1, before: cursor3 })
|
804
|
-
assert_equal [StarWars::Base.find(2)], connection.edge_nodes
|
805
|
-
|
806
|
-
assert_equal cursor2, connection.cursor_from_node(StarWars::Base.find(2))
|
807
|
-
|
808
|
-
connection = GraphQL::Relay::RelationConnection.new(StarWars::Base.limit(5), { after: cursor1, before: cursor4 })
|
809
|
-
assert_equal [StarWars::Base.find(2), StarWars::Base.find(3)], connection.edge_nodes
|
810
|
-
|
811
|
-
assert_equal cursor2, connection.cursor_from_node(StarWars::Base.find(2))
|
812
|
-
assert_equal cursor3, connection.cursor_from_node(StarWars::Base.find(3))
|
813
|
-
|
814
|
-
connection = GraphQL::Relay::RelationConnection.new(StarWars::Base.limit(5), { last: 2, before: cursor4 })
|
815
|
-
assert_equal [StarWars::Base.find(2), StarWars::Base.find(3)], connection.edge_nodes
|
816
|
-
|
817
|
-
assert_equal cursor2, connection.cursor_from_node(StarWars::Base.find(2))
|
818
|
-
assert_equal cursor3, connection.cursor_from_node(StarWars::Base.find(3))
|
819
|
-
|
820
|
-
|
821
|
-
# Limit and offset
|
822
|
-
connection = GraphQL::Relay::RelationConnection.new(StarWars::Base.offset(2).limit(3), { first: 2 })
|
823
|
-
assert_equal [StarWars::Base.find(3), StarWars::Base.find(4)], connection.edge_nodes
|
824
|
-
|
825
|
-
connection = GraphQL::Relay::RelationConnection.new(StarWars::Base.offset(2).limit(3), { first: 2, last: 1 })
|
826
|
-
assert_equal [StarWars::Base.find(4)], connection.edge_nodes
|
827
|
-
|
828
|
-
connection = GraphQL::Relay::RelationConnection.new(StarWars::Base.offset(2).limit(3), { first: 2, last: 5 })
|
829
|
-
assert_equal [StarWars::Base.find(3), StarWars::Base.find(4)], connection.edge_nodes
|
830
|
-
|
831
|
-
connection = GraphQL::Relay::RelationConnection.new(StarWars::Base.offset(2).limit(3), { first: 1, last: 5 })
|
832
|
-
assert_equal [StarWars::Base.find(3)], connection.edge_nodes
|
833
|
-
|
834
|
-
end
|
835
|
-
end
|
836
|
-
end
|
837
|
-
end
|