-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathdataloader_spec.rb
More file actions
1790 lines (1518 loc) · 52.6 KB
/
dataloader_spec.rb
File metadata and controls
1790 lines (1518 loc) · 52.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# frozen_string_literal: true
require "spec_helper"
require "fiber"
if defined?(Console) && defined?(Async)
Console.logger.disable(Async::Task)
end
describe GraphQL::Dataloader do
class BatchedCallsCounter
def initialize
@count = 0
end
def increment
@count += 1
end
attr_reader :count
end
class FiberSchema < GraphQL::Schema
module Database
extend self
DATA = {}
[
{ id: "1", name: "Wheat", type: "Grain" },
{ id: "2", name: "Corn", type: "Grain" },
{ id: "3", name: "Butter", type: "Dairy" },
{ id: "4", name: "Baking Soda", type: "LeaveningAgent" },
{ id: "5", name: "Cornbread", type: "Recipe", ingredient_ids: ["1", "2", "3", "4"] },
{ id: "6", name: "Grits", type: "Recipe", ingredient_ids: ["2", "3", "7"] },
{ id: "7", name: "Cheese", type: "Dairy" },
].each { |d| DATA[d[:id]] = d }
def log
@log ||= []
end
def mget(ids)
log << [:mget, ids.sort]
ids.map { |id| DATA[id] }
end
def find_by(attribute, values)
log << [:find_by, attribute, values.sort]
values.map { |v| DATA.each_value.find { |dv| dv[attribute] == v } }
end
end
class DataObject < GraphQL::Dataloader::Source
def initialize(column = :id)
@column = column
end
def fetch(keys)
if @column == :id
Database.mget(keys)
else
Database.find_by(@column, keys)
end
end
end
class ToString < GraphQL::Dataloader::Source
def fetch(keys)
keys.map(&:to_s)
end
end
class NestedDataObject < GraphQL::Dataloader::Source
def fetch(ids)
@dataloader.with(DataObject).load_all(ids)
end
end
class SlowDataObject < GraphQL::Dataloader::Source
def initialize(batch_key)
# This is just so that I can force different instances in test
@batch_key = batch_key
end
def fetch(keys)
t = Thread.new {
sleep 0.5
Database.mget(keys)
}
dataloader.yield
t.value
end
end
class CustomBatchKeySource < GraphQL::Dataloader::Source
def initialize(batch_key)
@batch_key = batch_key
end
def self.batch_key_for(batch_key)
Database.log << [:batch_key_for, batch_key]
# Ignore it altogether
:all_the_same
end
def fetch(keys)
Database.mget(keys)
end
end
class KeywordArgumentSource < GraphQL::Dataloader::Source
def initialize(column:)
@column = column
end
def fetch(keys)
if @column == :id
Database.mget(keys)
else
Database.find_by(@column, keys)
end
end
end
class AuthorizedSource < GraphQL::Dataloader::Source
def initialize(counter)
@counter = counter
end
def fetch(recipes)
@counter&.increment
recipes.map { true }
end
end
class ErrorSource < GraphQL::Dataloader::Source
def fetch(ids)
raise GraphQL::Error, "Source error on: #{ids.inspect}"
end
end
class BaseField < GraphQL::Schema::Field
end
class BaseObject < GraphQL::Schema::Object
field_class(BaseField)
end
module BaseInterface
include GraphQL::Schema::Interface
field_class(BaseField)
end
module Ingredient
include BaseInterface
field :name, String, null: false, hash_key: :name
field :id, ID, null: false, hash_key: :id
field :name_by_scoped_context, String, resolve_legacy_instance_method: true
def name_by_scoped_context
context[:ingredient_name]
end
end
class Grain < BaseObject
implements Ingredient
end
class LeaveningAgent < BaseObject
implements Ingredient
end
class Dairy < BaseObject
implements Ingredient
end
class Recipe < BaseObject
def self.authorized?(obj, ctx)
ctx.dataloader.with(AuthorizedSource, ctx[:batched_calls_counter]).load(obj)
end
field :name, String, null: false, hash_key: :name
field :ingredients, [Ingredient], null: false, resolve_batch: true
def self.ingredients(objects, context)
objects
.map { |obj| context.dataloader.with(DataObject).request_all(obj[:ingredient_ids]) }
.map(&:load)
end
def ingredients
ingredients = dataloader.with(DataObject).load_all(object[:ingredient_ids])
ingredients
end
field :slow_ingredients, [Ingredient], null: false, resolve_legacy_instance_method: true
def slow_ingredients
# Use `object[:id]` here to force two different instances of the loader in the test
dataloader.with(SlowDataObject, object[:id]).load_all(object[:ingredient_ids])
end
end
class Cookbook < BaseObject
field :featured_recipe, Recipe, resolve_legacy_instance_method: true
def featured_recipe
-> { Database.mget([object[:featured_recipe]]).first }
end
end
class Query < BaseObject
field :recipes, [Recipe], null: false, resolve_static: true
def self.recipes(context)
Database.mget(["5", "6"])
end
def recipes
self.class.recipes(context)
end
field :ingredient, Ingredient, resolve_legacy_instance_method: true do
argument :id, ID
end
def ingredient(id:)
dataloader.with(DataObject).load(id)
end
field :ingredient_by_name, Ingredient, resolve_legacy_instance_method: true do
argument :name, String
end
def ingredient_by_name(name:)
ing = dataloader.with(DataObject, :name).load(name)
context.scoped_set!(:ingredient_name, "Scoped:#{name}")
ing
end
field :nested_ingredient, Ingredient, resolve_legacy_instance_method: true do
argument :id, ID
end
def nested_ingredient(id:)
dataloader.with(NestedDataObject).load(id)
end
field :slow_recipe, Recipe, resolve_legacy_instance_method: true do
argument :id, ID
end
def slow_recipe(id:)
dataloader.with(SlowDataObject, id).load(id)
end
field :recipe, Recipe, resolve_legacy_instance_method: true do
argument :id, ID, loads: Recipe, as: :recipe
end
def recipe(recipe:)
recipe
end
field :recipe_by_id_using_load, Recipe, resolve_legacy_instance_method: true do
argument :id, ID, required: false
end
def recipe_by_id_using_load(id:)
dataloader.with(DataObject).load(id)
end
field :recipes_by_id_using_load_all, [Recipe], resolve_legacy_instance_method: true do
argument :ids, [ID, null: true]
end
def recipes_by_id_using_load_all(ids:)
dataloader.with(DataObject).load_all(ids)
end
field :recipes_by_id, [Recipe], resolve_static: true do
argument :ids, [ID], loads: Recipe, as: :recipes
end
def self.recipes_by_id(context, recipes:)
recipes
end
def recipes_by_id(recipes:)
recipes
end
field :key_ingredient, Ingredient, resolve_legacy_instance_method: true do
argument :id, ID
end
def key_ingredient(id:)
dataloader.with(KeywordArgumentSource, column: :id).load(id)
end
class RecipeIngredientInput < GraphQL::Schema::InputObject
argument :id, ID
argument :ingredient_number, Int
end
field :recipe_ingredient, Ingredient, resolve_legacy_instance_method: true do
argument :recipe, RecipeIngredientInput
end
def recipe_ingredient(recipe:)
recipe_object = dataloader.with(DataObject).load(recipe[:id])
ingredient_idx = recipe[:ingredient_number] - 1
ingredient_id = recipe_object[:ingredient_ids][ingredient_idx]
dataloader.with(DataObject).load(ingredient_id)
end
field :common_ingredients, [Ingredient], resolve_legacy_instance_method: true do
argument :recipe_1_id, ID
argument :recipe_2_id, ID
end
def common_ingredients(recipe_1_id:, recipe_2_id:)
req1 = dataloader.with(DataObject).request(recipe_1_id)
req2 = dataloader.with(DataObject).request(recipe_2_id)
recipe1 = req1.load
recipe2 = req2.load
common_ids = recipe1[:ingredient_ids] & recipe2[:ingredient_ids]
dataloader.with(DataObject).load_all(common_ids)
end
field :common_ingredients_with_load, [Ingredient], null: false, resolve_batch: true do
argument :recipe_1_id, ID, loads: Recipe
argument :recipe_2_id, ID, loads: Recipe
end
def self.common_ingredients_with_load(objects, context, recipe_1:, recipe_2:)
common_ids = recipe_1[:ingredient_ids] & recipe_2[:ingredient_ids]
results = context.dataloader.with(DataObject).load_all(common_ids)
Array.new(objects.size, results)
end
def common_ingredients_with_load(recipe_1:, recipe_2:)
self.class.common_ingredients_with_load([object], context, recipe_1: recipe_1, recipe_2: recipe_2).first
end
field :common_ingredients_from_input_object, [Ingredient], null: false, resolve_batch: true do
class CommonIngredientsInput < GraphQL::Schema::InputObject
argument :recipe_1_id, ID, loads: Recipe
argument :recipe_2_id, ID, loads: Recipe
end
argument :input, CommonIngredientsInput
end
def common_ingredients_from_input_object(input:)
self.class.common_ingredients_from_input_object([object], context, input: input).first
end
def self.common_ingredients_from_input_object(objects, context, input:)
recipe_1 = input[:recipe_1]
recipe_2 = input[:recipe_2]
common_ids = recipe_1[:ingredient_ids] & recipe_2[:ingredient_ids]
results = context.dataloader.with(DataObject).load_all(common_ids)
Array.new(objects.size, results)
end
field :ingredient_with_custom_batch_key, Ingredient, resolve_legacy_instance_method: true do
argument :id, ID
argument :batch_key, String
end
def ingredient_with_custom_batch_key(id:, batch_key:)
dataloader.with(CustomBatchKeySource, batch_key).load(id)
end
field :recursive_ingredient_name, String, resolve_legacy_instance_method: true do
argument :id, ID
end
def recursive_ingredient_name(id:)
res = context.schema.execute("{ ingredient(id: #{id}) { name } }")
res["data"]["ingredient"]["name"]
end
field :test_error, String, resolve_legacy_instance_method: true do
argument :source, Boolean, required: false, default_value: false
end
def test_error(source:)
if source
dataloader.with(ErrorSource).load(1)
else
raise GraphQL::Error, "Field error"
end
end
class LookaheadInput < GraphQL::Schema::InputObject
argument :id, ID
argument :batch_key, String
end
field :lookahead_ingredient, Ingredient, extras: [:lookahead], resolve_legacy_instance_method: true do
argument :input, LookaheadInput
end
def lookahead_ingredient(input:, lookahead:)
lookahead.arguments # forces a dataloader.run_isolated call
dataloader.with(CustomBatchKeySource, input[:batch_key]).load(input[:id])
end
field :cookbooks, [Cookbook], resolve_legacy_instance_method: true
def cookbooks
[
{ featured_recipe: "5" },
{ featured_recipe: "6" },
]
end
end
query(Query)
class Mutation1 < GraphQL::Schema::Mutation
argument :argument_1, String, prepare: ->(val, ctx) {
raise FieldTestError
}
field :value, String, hash_key: :value
def resolve(argument_1:)
{ value: argument_1 }
end
end
class Mutation2 < GraphQL::Schema::Mutation
argument :argument_2, String, prepare: ->(val, ctx) {
raise FieldTestError
}
field :value, String, hash_key: :value
def resolve(argument_2:)
{ value: argument_2 }
end
end
class Mutation3 < GraphQL::Schema::Mutation
argument :label, String
type String
def resolve(label:)
log = context[:mutation_log] ||= []
log << "begin #{label}"
dataloader.with(DataObject).load(1)
log << "end #{label}"
label
end
end
class GetCache < GraphQL::Schema::Mutation
type String
def resolve
dataloader.with(ToString).load(1)
end
end
class Mutation < BaseObject
field :mutation_1, mutation: Mutation1
field :mutation_2, mutation: Mutation2
field :mutation_3, mutation: Mutation3
field :set_cache, String, resolve_legacy_instance_method: true do
argument :input, String
end
def set_cache(input:)
dataloader.with(ToString).merge({ 1 => input })
input
end
field :get_cache, mutation: GetCache
end
mutation(Mutation)
def self.object_from_id(id, ctx)
ctx.dataloader.with(DataObject).load(id)
end
def self.resolve_type(type, obj, ctx)
get_type(obj[:type])
end
orphan_types(Grain, Dairy, Recipe, LeaveningAgent)
use GraphQL::Dataloader
use GraphQL::Execution::Next if TESTING_EXEC_NEXT
lazy_resolve Proc, :call
class FieldTestError < StandardError; end
rescue_from(FieldTestError) do |err, obj, args, ctx, field|
errs = ctx[:errors] ||= []
errs << "FieldTestError @ #{ctx[:current_path]}, #{field.path} / #{ctx[:current_field].path}"
nil
end
end
class UsageAnalyzer < GraphQL::Analysis::Analyzer
def initialize(query)
@query = query
@fields = Set.new
end
def on_enter_field(node, parent, visitor)
args = @query.arguments_for(node, visitor.field_definition)
# This bug has been around for a while,
# see https://github.com/rmosolgo/graphql-ruby/issues/3321
if args.is_a?(GraphQL::Execution::Lazy)
args = args.value
end
@fields << [node.name, args.keys]
end
def result
@fields
end
end
def database_log
FiberSchema::Database.log
end
before do
database_log.clear
end
ALL_FIBERS = []
class PartsSchema < GraphQL::Schema
class FieldSource < GraphQL::Dataloader::Source
DATA = [
{"id" => 1, "name" => "a"},
{"id" => 2, "name" => "b"},
{"id" => 3, "name" => "c"},
{"id" => 4, "name" => "d"},
]
def fetch(fields)
@previously_fetched ||= Set.new
fields.each do |f|
if !@previously_fetched.add?(f)
raise "Duplicate fetch for #{f.inspect}"
end
end
Array.new(fields.size, DATA)
end
end
class StringFilter < GraphQL::Schema::InputObject
argument :equal_to_any_of, [String]
end
class ComponentFilter < GraphQL::Schema::InputObject
argument :name, StringFilter
end
class FetchObjects < GraphQL::Schema::Resolver
argument :filter, ComponentFilter, required: false
def resolve(**_kwargs)
context.dataloader.with(FieldSource).load("#{field.path}/#{object&.fetch("id")}")
end
end
class Component < GraphQL::Schema::Object
field :name, String
end
class Part < GraphQL::Schema::Object
field :components, [Component], resolver: FetchObjects
end
class Manufacturer < GraphQL::Schema::Object
field :parts, [Part], resolver: FetchObjects
end
class Query < GraphQL::Schema::Object
field :manufacturers, [Manufacturer], resolver: FetchObjects
end
query(Query)
use GraphQL::Dataloader
use GraphQL::Execution::Next if TESTING_EXEC_NEXT
end
module DataloaderAssertions
module FiberCounting
class << self
attr_accessor :starting_fiber_count, :last_spawn_fiber_count, :last_max_fiber_count
def current_fiber_count
count_active_fibers - starting_fiber_count
end
def count_active_fibers
GC.start
ObjectSpace.each_object(Fiber).count
end
end
def initialize(*args, **kwargs, &block)
super
FiberCounting.starting_fiber_count = FiberCounting.count_active_fibers
FiberCounting.last_max_fiber_count = 0
FiberCounting.last_spawn_fiber_count = 0
end
def spawn_fiber
result = super
update_fiber_counts
result
end
def spawn_source_task(parent_task, condition, trace)
result = super
if result
update_fiber_counts
end
result
end
private
def update_fiber_counts
FiberCounting.last_spawn_fiber_count += 1
current_count = FiberCounting.current_fiber_count
if current_count > FiberCounting.last_max_fiber_count
FiberCounting.last_max_fiber_count = current_count
end
end
end
def self.included(child_class)
child_class.class_eval do
let(:schema) { make_schema_from(FiberSchema) }
let(:parts_schema) { make_schema_from(PartsSchema) }
def exec_query(query_string, schema: self.schema, context: nil, variables: nil)
if TESTING_EXEC_NEXT
schema.execute_next(query_string, context: context, variables: variables)
else
schema.execute(query_string, context: context, variables: variables)
end
end
it "Works with request(...)" do
res = exec_query <<-GRAPHQL
{
commonIngredients(recipe1Id: 5, recipe2Id: 6) {
name
}
}
GRAPHQL
expected_data = {
"data" => {
"commonIngredients" => [
{ "name" => "Corn" },
{ "name" => "Butter" },
]
}
}
assert_graphql_equal expected_data, res
assert_equal [[:mget, ["5", "6"]], [:mget, ["2", "3"]]], database_log
end
it "runs mutations sequentially" do
res = exec_query <<-GRAPHQL
mutation {
first: mutation3(label: "first")
second: mutation3(label: "second")
}
GRAPHQL
assert_equal({ "first" => "first", "second" => "second" }, res["data"])
assert_equal ["begin first", "end first", "begin second", "end second"], res.context[:mutation_log]
end
it "clears the cache between mutations" do
res = exec_query <<-GRAPHQL
mutation {
setCache(input: "Salad")
getCache
}
GRAPHQL
assert_equal({"setCache" => "Salad", "getCache" => "1"}, res["data"])
end
it "batch-loads" do
res = exec_query <<-GRAPHQL
{
i1: ingredient(id: 1) { id name }
i2: ingredient(id: 2) { name }
__typename
r1: recipe(id: 5) {
# This loads Ingredients 3 and 4
ingredients { name }
}
# This loads Ingredient 7
ri1: recipeIngredient(recipe: { id: 6, ingredientNumber: 3 }) {
name
}
}
GRAPHQL
expected_data = {
"i1" => { "id" => "1", "name" => "Wheat" },
"i2" => { "name" => "Corn" },
"__typename" => "Query",
"r1" => {
"ingredients" => [
{ "name" => "Wheat" },
{ "name" => "Corn" },
{ "name" => "Butter" },
{ "name" => "Baking Soda" },
],
},
"ri1" => {
"name" => "Cheese",
},
}
assert_graphql_equal(expected_data, res["data"])
expected_log = [
[:mget, [
"1", "2", # The first 2 ingredients
"5", # The first recipe
"6", # recipeIngredient recipeId
]],
[:mget, [
"7", # recipeIngredient ingredient_id
]],
[:mget, [
"3", "4", # The two unfetched ingredients the first recipe
]],
]
assert_equal expected_log, database_log
end
it "caches and batch-loads across a multiplex" do
context = {}
result = schema.multiplex([
{ query: "{ i1: ingredient(id: 1) { name } i2: ingredient(id: 2) { name } }", },
{ query: "{ i2: ingredient(id: 2) { name } r1: recipe(id: 5) { ingredients { name } } }", },
{ query: "{ i1: ingredient(id: 1) { name } ri1: recipeIngredient(recipe: { id: 5, ingredientNumber: 2 }) { name } }", },
], context: context)
expected_result = [
{"data"=>{"i1"=>{"name"=>"Wheat"}, "i2"=>{"name"=>"Corn"}}},
{"data"=>{"i2"=>{"name"=>"Corn"}, "r1"=>{"ingredients"=>[{"name"=>"Wheat"}, {"name"=>"Corn"}, {"name"=>"Butter"}, {"name"=>"Baking Soda"}]}}},
{"data"=>{"i1"=>{"name"=>"Wheat"}, "ri1"=>{"name"=>"Corn"}}},
]
assert_graphql_equal expected_result, result
expected_log = [
[:mget, ["1", "2", "5"]],
[:mget, ["3", "4"]],
]
assert_equal expected_log, database_log
end
it "works with calls within sources" do
res = exec_query <<-GRAPHQL
{
i1: nestedIngredient(id: 1) { name }
i2: nestedIngredient(id: 2) { name }
}
GRAPHQL
expected_data = { "i1" => { "name" => "Wheat" }, "i2" => { "name" => "Corn" } }
assert_graphql_equal expected_data, res["data"]
assert_equal [[:mget, ["1", "2"]]], database_log
end
it "works with batch parameters" do
res = exec_query <<-GRAPHQL
{
i1: ingredientByName(name: "Butter") { id }
i2: ingredientByName(name: "Corn") { id }
i3: ingredientByName(name: "Gummi Bears") { id }
}
GRAPHQL
expected_data = {
"i1" => { "id" => "3" },
"i2" => { "id" => "2" },
"i3" => nil,
}
assert_graphql_equal expected_data, res["data"]
assert_equal [[:find_by, :name, ["Butter", "Corn", "Gummi Bears"]]], database_log
end
it "works with manual parallelism" do
start = Time.now.to_f
exec_query <<-GRAPHQL
{
i1: slowRecipe(id: 5) { slowIngredients { name } }
i2: slowRecipe(id: 6) { slowIngredients { name } }
}
GRAPHQL
finish = Time.now.to_f
# For some reason Async adds some overhead to this manual parallelism.
# But who cares, you wouldn't use Thread#join in that case
delta = schema.dataloader_class == GraphQL::Dataloader ? 0.1 : 0.5
# Each load slept for 0.5 second, so sequentially, this would have been 2s sequentially
assert_in_delta 1, finish - start, delta, "Load threads are executed in parallel"
expected_log = [
# These were separated because of different recipe IDs:
[:mget, ["5"]],
[:mget, ["6"]],
# These were cached separately because of different recipe IDs:
[:mget, ["2", "3", "7"]],
[:mget, ["1", "2", "3", "4"]],
]
# Sort them because threads may have returned in slightly different order
assert_equal expected_log.sort, database_log.sort
end
it "Works with multiple-field selections and __typename" do
query_str = <<-GRAPHQL
{
ingredient(id: 1) {
__typename
name
}
}
GRAPHQL
res = exec_query(query_str)
expected_data = {
"ingredient" => {
"__typename" => "Grain",
"name" => "Wheat",
}
}
assert_graphql_equal expected_data, res["data"]
end
it "Works when the parent field didn't yield" do
query_str = <<-GRAPHQL
{
recipes {
ingredients {
name
}
}
}
GRAPHQL
res = exec_query(query_str)
expected_data = {
"recipes" =>[
{ "ingredients" => [
{"name"=>"Wheat"},
{"name"=>"Corn"},
{"name"=>"Butter"},
{"name"=>"Baking Soda"}
]},
{ "ingredients" => [
{"name"=>"Corn"},
{"name"=>"Butter"},
{"name"=>"Cheese"}
]},
]
}
assert_graphql_equal expected_data, res["data"]
expected_log = [
[:mget, ["5", "6"]],
[:mget, ["1", "2", "3", "4", "7"]],
]
assert_equal expected_log, database_log
end
it "loads arguments in batches, even with request" do
query_str = <<-GRAPHQL
{
commonIngredientsWithLoad(recipe1Id: 5, recipe2Id: 6) {
name
}
}
GRAPHQL
res = exec_query(query_str)
expected_data = {
"commonIngredientsWithLoad" => [
{"name"=>"Corn"},
{"name"=>"Butter"},
]
}
assert_graphql_equal expected_data, res["data"]
expected_log = [
[:mget, ["5", "6"]],
[:mget, ["2", "3"]],
]
assert_equal expected_log, database_log
end
it "works with sources that use keyword arguments in the initializer" do
query_str = <<-GRAPHQL
{
keyIngredient(id: 1) {
__typename
name
}
}
GRAPHQL
res = exec_query(query_str)
expected_data = {
"keyIngredient" => {
"__typename" => "Grain",
"name" => "Wheat",
}
}
assert_graphql_equal expected_data, res["data"]
end
it "Works with analyzing arguments with `loads:`, even with .request" do
query_str = <<-GRAPHQL
{
commonIngredientsWithLoad(recipe1Id: 5, recipe2Id: 6) {
name
}
}
GRAPHQL
query = GraphQL::Query.new(schema, query_str)
results = GraphQL::Analysis.analyze_query(query, [UsageAnalyzer])
expected_results = [
["commonIngredientsWithLoad", [:recipe_1, :recipe_2]],
["name", []],
]
normalized_results = results.first.to_a
normalized_results.each do |key, values|
values.sort!
end
assert_equal expected_results, results.first.to_a
end
it "Works with input objects, load and request" do
query_str = <<-GRAPHQL
{
commonIngredientsFromInputObject(input: { recipe1Id: 5, recipe2Id: 6 }) {
name
}
}
GRAPHQL
res = exec_query(query_str)
expected_data = {
"commonIngredientsFromInputObject" => [
{"name"=>"Corn"},
{"name"=>"Butter"},
]
}
assert_graphql_equal expected_data, res["data"]
expected_log = [
[:mget, ["5", "6"]],
[:mget, ["2", "3"]],
]
assert_equal expected_log, database_log
end
it "batches calls in .authorized?" do
query_str = "{ r1: recipe(id: 5) { name } r2: recipe(id: 6) { name } }"
context = { batched_calls_counter: BatchedCallsCounter.new }
exec_query(query_str, context: context)
assert_equal 1, context[:batched_calls_counter].count
query_str = "{ recipes { name } }"
context = { batched_calls_counter: BatchedCallsCounter.new }
exec_query(query_str, context: context)
assert_equal 1, context[:batched_calls_counter].count
query_str = "{ recipesById(ids: [5, 6]) { name } }"
context = { batched_calls_counter: BatchedCallsCounter.new }
exec_query(query_str, context: context)
assert_equal 1, context[:batched_calls_counter].count
end
it "batches nested object calls in .authorized? after using lazy_resolve" do
query_str = "{ cookbooks { featuredRecipe { name } } }"
context = { batched_calls_counter: BatchedCallsCounter.new }
result = exec_query(query_str, context: context)
assert_equal ["Cornbread", "Grits"], result["data"]["cookbooks"].map { |c| c["featuredRecipe"]["name"] }
refute result.key?("errors")
assert_equal 1, context[:batched_calls_counter].count
end
it "works when passing nil into source" do
query_str = <<-GRAPHQL
query($id: ID) {
recipe: recipeByIdUsingLoad(id: $id) {
name
}
}