-
Notifications
You must be signed in to change notification settings - Fork 225
/
Copy pathtest_client.rb
841 lines (724 loc) · 22.9 KB
/
test_client.rb
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
# frozen_string_literal: true
require "graphql"
require "graphql/client"
require "json"
require "minitest/autorun"
class TestClient < Minitest::Test
module NodeType
include GraphQL::Schema::Interface
field :id, ID, null: false
end
module AdminUser
include GraphQL::Schema::Interface
field :password, String, null: false
end
class UserType < GraphQL::Schema::Object
implements NodeType
implements AdminUser
field :id, ID, null: false
field :first_name, String, null: false
field :last_name, String, null: false
field :name, String, null: false
field :login, String, null: false
field :login_url, String, null: false
field :profile_name, String, null: false
field :is_cool, Boolean, null: false
field :profile_pic, String, null: true do
argument :size, Int, required: false
end
field :repositories, "[TestClient::RepositoryType]", null: false
field :friends, [UserType], null: false do
argument :first, Int, required: false
end
field :mutual_friends, [UserType], null: false do
argument :first, Int, required: false
end
end
class OrganizationType < GraphQL::Schema::Object
implements NodeType
field :name, String, null: false
end
class RepositoryType < GraphQL::Schema::Object
field :name, String, null: false
field :owner, UserType, null: false
field :star_count, Integer, null: false
field :watchers, [UserType], null: false
end
class QueryType < GraphQL::Schema::Object
field :viewer, UserType, null: false
field :node, NodeType, null: true do
argument :id, ID, required: false
end
field :user, UserType, null: true do
argument :id, ID, required: true
end
field :organization, OrganizationType, null: true do
argument :id, ID, required: true
end
end
class StarResult < GraphQL::Schema::Object
field :repository, RepositoryType, null: false
end
class MutationType < GraphQL::Schema::Object
field :star, StarResult, null: false do
argument :repository_id, ID, required: true
end
end
class Schema < GraphQL::Schema
query(QueryType)
mutation(MutationType)
end
module Temp
end
def setup
@client = GraphQL::Client.new(schema: Schema)
@client.document_tracking_enabled = true
end
def teardown
Temp.constants.each do |sym|
Temp.send(:remove_const, sym)
end
end
def test_client_parse_anonymous_operation
Temp.const_set :UserQuery, @client.parse(<<-'GRAPHQL')
{
viewer {
id
firstName
lastName
}
}
GRAPHQL
assert_kind_of GraphQL::Client::OperationDefinition, Temp::UserQuery
assert_equal "TestClient::Temp::UserQuery", Temp::UserQuery.name
assert_equal "TestClient__Temp__UserQuery", Temp::UserQuery.definition_name
assert_kind_of GraphQL::Language::Nodes::OperationDefinition, Temp::UserQuery.definition_node
assert_equal "TestClient__Temp__UserQuery", Temp::UserQuery.definition_node.name
assert_equal "query", Temp::UserQuery.definition_node.operation_type
query_string = <<-'GRAPHQL'.gsub(/^ /, "").chomp
query TestClient__Temp__UserQuery {
viewer {
id
firstName
lastName
}
}
GRAPHQL
assert_equal(query_string, @client.document.to_query_string)
assert_equal(query_string, Temp::UserQuery.document.to_query_string)
end
def test_client_parse_anonymous_query
Temp.const_set :UserQuery, @client.parse(<<-'GRAPHQL')
query {
viewer {
id
firstName
lastName
}
}
GRAPHQL
assert_kind_of GraphQL::Client::OperationDefinition, Temp::UserQuery
assert_equal "TestClient::Temp::UserQuery", Temp::UserQuery.name
assert_equal "TestClient__Temp__UserQuery", Temp::UserQuery.definition_name
assert_kind_of GraphQL::Language::Nodes::OperationDefinition, Temp::UserQuery.definition_node
assert_equal "TestClient__Temp__UserQuery", Temp::UserQuery.definition_node.name
assert_equal "query", Temp::UserQuery.definition_node.operation_type
query_string = <<-'GRAPHQL'.gsub(/^ /, "").chomp
query TestClient__Temp__UserQuery {
viewer {
id
firstName
lastName
}
}
GRAPHQL
assert_equal(query_string, @client.document.to_query_string)
assert_equal(query_string, Temp::UserQuery.document.to_query_string)
end
def test_client_parse_query_document
Temp.const_set :UserDocument, @client.parse(<<-'GRAPHQL')
query GetUser {
viewer {
id
firstName
lastName
}
}
GRAPHQL
assert_kind_of GraphQL::Client::OperationDefinition, Temp::UserDocument::GetUser
assert_equal "TestClient::Temp::UserDocument", Temp::UserDocument.name
assert_equal "TestClient::Temp::UserDocument::GetUser", Temp::UserDocument::GetUser.name
assert_equal "TestClient__Temp__UserDocument__GetUser", Temp::UserDocument::GetUser.definition_name
assert_kind_of GraphQL::Language::Nodes::OperationDefinition, Temp::UserDocument::GetUser.definition_node
assert_equal "TestClient__Temp__UserDocument__GetUser", Temp::UserDocument::GetUser.definition_node.name
assert_equal "query", Temp::UserDocument::GetUser.definition_node.operation_type
query_string = <<-'GRAPHQL'.gsub(/^ /, "").chomp
query TestClient__Temp__UserDocument__GetUser {
viewer {
id
firstName
lastName
}
}
GRAPHQL
assert_equal(query_string, @client.document.to_query_string)
assert_equal(query_string, Temp::UserDocument::GetUser.document.to_query_string)
end
def test_client_parse_anonymous_mutation
Temp.const_set :StarMutation, @client.parse(<<-'GRAPHQL')
mutation {
star(repositoryId: 12345) {
repository {
starCount
}
}
}
GRAPHQL
query_string = <<-'GRAPHQL'.gsub(/^ /, "").chomp
mutation TestClient__Temp__StarMutation {
star(repositoryId: 12345) {
repository {
starCount
}
}
}
GRAPHQL
assert_kind_of GraphQL::Client::OperationDefinition, Temp::StarMutation
assert_equal "TestClient::Temp::StarMutation", Temp::StarMutation.name
assert_equal "TestClient__Temp__StarMutation", Temp::StarMutation.definition_name
assert_kind_of GraphQL::Language::Nodes::OperationDefinition, Temp::StarMutation.definition_node
assert_equal "TestClient__Temp__StarMutation", Temp::StarMutation.definition_node.name
assert_equal "mutation", Temp::StarMutation.definition_node.operation_type
assert_equal(query_string, @client.document.to_query_string)
assert_equal(query_string, Temp::StarMutation.document.to_query_string)
end
def test_client_parse_mutation_document
Temp.const_set :StarDocument, @client.parse(<<-'GRAPHQL')
mutation StarRepo {
star(repositoryId: 12345) {
repository {
starCount
}
}
}
GRAPHQL
query_string = <<-'GRAPHQL'.gsub(/^ /, "").chomp
mutation TestClient__Temp__StarDocument__StarRepo {
star(repositoryId: 12345) {
repository {
starCount
}
}
}
GRAPHQL
assert_kind_of GraphQL::Client::OperationDefinition, Temp::StarDocument::StarRepo
assert_equal "TestClient::Temp::StarDocument", Temp::StarDocument.name
assert_equal "TestClient::Temp::StarDocument::StarRepo", Temp::StarDocument::StarRepo.name
assert_equal "TestClient__Temp__StarDocument__StarRepo", Temp::StarDocument::StarRepo.definition_name
assert_kind_of GraphQL::Language::Nodes::OperationDefinition, Temp::StarDocument::StarRepo.definition_node
assert_equal "TestClient__Temp__StarDocument__StarRepo", Temp::StarDocument::StarRepo.definition_node.name
assert_equal "mutation", Temp::StarDocument::StarRepo.definition_node.operation_type
assert_equal(query_string, @client.document.to_query_string)
assert_equal(query_string, Temp::StarDocument::StarRepo.document.to_query_string)
end
def test_client_parse_anonymous_fragment
Temp.const_set :UserFragment, @client.parse(<<-'GRAPHQL')
fragment on User {
id
firstName
lastName
}
GRAPHQL
assert_kind_of GraphQL::Client::FragmentDefinition, Temp::UserFragment
assert_equal "TestClient::Temp::UserFragment", Temp::UserFragment.name
assert_equal "TestClient__Temp__UserFragment", Temp::UserFragment.definition_name
assert_kind_of GraphQL::Language::Nodes::FragmentDefinition, Temp::UserFragment.definition_node
assert_equal "TestClient__Temp__UserFragment", Temp::UserFragment.definition_node.name
query_string = <<-'GRAPHQL'.gsub(/^ /, "").chomp
fragment TestClient__Temp__UserFragment on User {
id
firstName
lastName
}
GRAPHQL
assert_equal(query_string, Temp::UserFragment.document.to_query_string)
assert_equal(query_string, @client.document.to_query_string)
assert_equal "TestClient::Temp::UserFragment", Temp::UserFragment.name
end
def test_client_parse_fragment_document
Temp.const_set :UserDocument, @client.parse(<<-'GRAPHQL')
fragment UserProfile on User {
id
firstName
lastName
}
GRAPHQL
query_string = <<-'GRAPHQL'.gsub(/^ /, "").chomp
fragment TestClient__Temp__UserDocument__UserProfile on User {
id
firstName
lastName
}
GRAPHQL
assert_equal(query_string, Temp::UserDocument::UserProfile.document.to_query_string)
assert_equal(query_string, @client.document.to_query_string)
end
def test_client_parse_query_fragment_document
Temp.const_set :StandardProfilePic, @client.parse(<<-'GRAPHQL')
fragment on User {
profilePic(size: 50)
}
GRAPHQL
Temp.const_set :UserDocument, @client.parse(<<-'GRAPHQL')
query NestedFragments {
user(id: 4) {
friends(first: 10) {
...FriendFields
}
mutualFriends(first: 10) {
...FriendFields
}
}
}
fragment FriendFields on User {
id
name
...TestClient::Temp::StandardProfilePic
}
GRAPHQL
assert_equal(<<-'GRAPHQL'.gsub(/^ /, "").chomp, @client.document.to_query_string)
fragment TestClient__Temp__StandardProfilePic on User {
profilePic(size: 50)
}
query TestClient__Temp__UserDocument__NestedFragments {
user(id: 4) {
friends(first: 10) {
...TestClient__Temp__UserDocument__FriendFields
}
mutualFriends(first: 10) {
...TestClient__Temp__UserDocument__FriendFields
}
}
}
fragment TestClient__Temp__UserDocument__FriendFields on User {
id
name
...TestClient__Temp__StandardProfilePic
}
GRAPHQL
assert_equal(<<-'GRAPHQL'.gsub(/^ /, "").chomp, Temp::UserDocument::NestedFragments.document.to_query_string)
query TestClient__Temp__UserDocument__NestedFragments {
user(id: 4) {
friends(first: 10) {
...TestClient__Temp__UserDocument__FriendFields
}
mutualFriends(first: 10) {
...TestClient__Temp__UserDocument__FriendFields
}
}
}
fragment TestClient__Temp__UserDocument__FriendFields on User {
id
name
...TestClient__Temp__StandardProfilePic
}
fragment TestClient__Temp__StandardProfilePic on User {
profilePic(size: 50)
}
GRAPHQL
assert_equal(<<-'GRAPHQL'.gsub(/^ /, "").chomp, Temp::UserDocument::FriendFields.document.to_query_string)
fragment TestClient__Temp__UserDocument__FriendFields on User {
id
name
...TestClient__Temp__StandardProfilePic
}
fragment TestClient__Temp__StandardProfilePic on User {
profilePic(size: 50)
}
GRAPHQL
query_string = <<-'GRAPHQL'.gsub(/^ /, "").chomp
fragment TestClient__Temp__StandardProfilePic on User {
profilePic(size: 50)
}
GRAPHQL
assert_equal(query_string, Temp::StandardProfilePic.document.to_query_string)
end
def test_client_parse_query_external_fragments_document
Temp.const_set :ProfilePictureFragment, @client.parse(<<-'GRAPHQL')
fragment on User {
profilePic(size: 50)
}
GRAPHQL
Temp.const_set :FriendFragment, @client.parse(<<-'GRAPHQL')
fragment on User {
id
name
...TestClient::Temp::ProfilePictureFragment
}
GRAPHQL
Temp.const_set :UserQuery, @client.parse(<<-'GRAPHQL')
query {
user(id: 4) {
friends(first: 10) {
...TestClient::Temp::FriendFragment
}
mutualFriends(first: 10) {
...TestClient::Temp::FriendFragment
}
}
}
GRAPHQL
assert_equal(<<-'GRAPHQL'.gsub(/^ /, "").chomp, @client.document.to_query_string)
fragment TestClient__Temp__ProfilePictureFragment on User {
profilePic(size: 50)
}
fragment TestClient__Temp__FriendFragment on User {
id
name
...TestClient__Temp__ProfilePictureFragment
}
query TestClient__Temp__UserQuery {
user(id: 4) {
friends(first: 10) {
...TestClient__Temp__FriendFragment
}
mutualFriends(first: 10) {
...TestClient__Temp__FriendFragment
}
}
}
GRAPHQL
assert_equal(<<-'GRAPHQL'.gsub(/^ /, "").chomp, Temp::UserQuery.document.to_query_string)
query TestClient__Temp__UserQuery {
user(id: 4) {
friends(first: 10) {
...TestClient__Temp__FriendFragment
}
mutualFriends(first: 10) {
...TestClient__Temp__FriendFragment
}
}
}
fragment TestClient__Temp__FriendFragment on User {
id
name
...TestClient__Temp__ProfilePictureFragment
}
fragment TestClient__Temp__ProfilePictureFragment on User {
profilePic(size: 50)
}
GRAPHQL
end
def test_client_parse_query_external_document_fragment
Temp.const_set :ProfileFragments, @client.parse(<<-'GRAPHQL')
fragment ProfilePic on User {
profilePic(size: 50)
}
fragment FriendFields on User {
id
name
...ProfilePic
}
GRAPHQL
Temp.const_set :UserQuery, @client.parse(<<-'GRAPHQL')
query {
user(id: 4) {
friends(first: 10) {
...TestClient::Temp::ProfileFragments::FriendFields
}
mutualFriends(first: 10) {
...TestClient::Temp::ProfileFragments::FriendFields
}
}
}
GRAPHQL
assert_equal(<<-'GRAPHQL'.gsub(/^ /, "").chomp, @client.document.to_query_string)
fragment TestClient__Temp__ProfileFragments__ProfilePic on User {
profilePic(size: 50)
}
fragment TestClient__Temp__ProfileFragments__FriendFields on User {
id
name
...TestClient__Temp__ProfileFragments__ProfilePic
}
query TestClient__Temp__UserQuery {
user(id: 4) {
friends(first: 10) {
...TestClient__Temp__ProfileFragments__FriendFields
}
mutualFriends(first: 10) {
...TestClient__Temp__ProfileFragments__FriendFields
}
}
}
GRAPHQL
assert_equal(<<-'GRAPHQL'.gsub(/^ /, "").chomp, Temp::UserQuery.document.to_query_string)
query TestClient__Temp__UserQuery {
user(id: 4) {
friends(first: 10) {
...TestClient__Temp__ProfileFragments__FriendFields
}
mutualFriends(first: 10) {
...TestClient__Temp__ProfileFragments__FriendFields
}
}
}
fragment TestClient__Temp__ProfileFragments__ProfilePic on User {
profilePic(size: 50)
}
fragment TestClient__Temp__ProfileFragments__FriendFields on User {
id
name
...TestClient__Temp__ProfileFragments__ProfilePic
}
GRAPHQL
end
def test_client_parse_multiple_queries
Temp.const_set :FriendFragment, @client.parse(<<-'GRAPHQL')
fragment on User {
id
name
}
GRAPHQL
Temp.const_set :FriendsQuery, @client.parse(<<-'GRAPHQL')
query {
user(id: 4) {
friends(first: 10) {
...TestClient::Temp::FriendFragment
}
}
}
GRAPHQL
Temp.const_set :MutualFriendsQuery, @client.parse(<<-'GRAPHQL')
query {
user(id: 4) {
mutualFriends(first: 10) {
...TestClient::Temp::FriendFragment
}
}
}
GRAPHQL
assert_equal(<<-'GRAPHQL'.gsub(/^ /, "").chomp, @client.document.to_query_string)
fragment TestClient__Temp__FriendFragment on User {
id
name
}
query TestClient__Temp__FriendsQuery {
user(id: 4) {
friends(first: 10) {
...TestClient__Temp__FriendFragment
}
}
}
query TestClient__Temp__MutualFriendsQuery {
user(id: 4) {
mutualFriends(first: 10) {
...TestClient__Temp__FriendFragment
}
}
}
GRAPHQL
assert_equal(<<-'GRAPHQL'.gsub(/^ /, "").chomp, Temp::FriendsQuery.document.to_query_string)
query TestClient__Temp__FriendsQuery {
user(id: 4) {
friends(first: 10) {
...TestClient__Temp__FriendFragment
}
}
}
fragment TestClient__Temp__FriendFragment on User {
id
name
}
GRAPHQL
assert_equal(<<-'GRAPHQL'.gsub(/^ /, "").chomp, Temp::MutualFriendsQuery.document.to_query_string)
query TestClient__Temp__MutualFriendsQuery {
user(id: 4) {
mutualFriends(first: 10) {
...TestClient__Temp__FriendFragment
}
}
}
fragment TestClient__Temp__FriendFragment on User {
id
name
}
GRAPHQL
end
def test_client_parse_query_external_top_level_fragments_document
Object.const_set :TopLevelUserFragment, @client.parse(<<-'GRAPHQL')
fragment on User {
profilePic(size: 50)
}
GRAPHQL
Temp.const_set :FriendFragment, @client.parse(<<-'GRAPHQL')
fragment on User {
id
name
...TopLevelUserFragment
}
GRAPHQL
Temp.const_set :UserQuery, @client.parse(<<-'GRAPHQL')
query {
user(id: 4) {
friends(first: 10) {
...TestClient::Temp::FriendFragment
}
mutualFriends(first: 10) {
...TestClient::Temp::FriendFragment
}
}
}
GRAPHQL
assert_equal(<<-'GRAPHQL'.gsub(/^ /, "").chomp, @client.document.to_query_string)
fragment TopLevelUserFragment on User {
profilePic(size: 50)
}
fragment TestClient__Temp__FriendFragment on User {
id
name
...TopLevelUserFragment
}
query TestClient__Temp__UserQuery {
user(id: 4) {
friends(first: 10) {
...TestClient__Temp__FriendFragment
}
mutualFriends(first: 10) {
...TestClient__Temp__FriendFragment
}
}
}
GRAPHQL
assert_equal(<<-'GRAPHQL'.gsub(/^ /, "").chomp, Temp::UserQuery.document.to_query_string)
query TestClient__Temp__UserQuery {
user(id: 4) {
friends(first: 10) {
...TestClient__Temp__FriendFragment
}
mutualFriends(first: 10) {
...TestClient__Temp__FriendFragment
}
}
}
fragment TestClient__Temp__FriendFragment on User {
id
name
...TopLevelUserFragment
}
fragment TopLevelUserFragment on User {
profilePic(size: 50)
}
GRAPHQL
end
def test_local_definition
user_query = @client.parse(<<-'GRAPHQL')
{
viewer {
id
}
}
GRAPHQL
assert_nil user_query.name
assert_equal "GraphQL__Client__OperationDefinition_#{user_query.object_id}", user_query.definition_name
# rubocop:disable GraphQL/Heredoc
query_string = <<-GRAPHQL.gsub(/^ /, "").chomp
query GraphQL__Client__OperationDefinition_#{user_query.object_id} {
viewer {
id
}
}
GRAPHQL
# rubocop:enable GraphQL/Heredoc
assert_equal(query_string, user_query.document.to_query_string)
skip "anonymous definition should not be tracked in document"
assert_equal("", @client.document.to_query_string)
end
def test_undefine_definition
Temp.const_set :UserQuery, @client.parse(<<-'GRAPHQL')
{
viewer {
id
}
}
GRAPHQL
definition = Temp::UserQuery
assert_equal "TestClient::Temp::UserQuery", definition.name
assert_equal "TestClient__Temp__UserQuery", definition.definition_name
query_string = <<-'GRAPHQL'.gsub(/^ /, "").chomp
query TestClient__Temp__UserQuery {
viewer {
id
}
}
GRAPHQL
assert_equal(query_string, @client.document.to_query_string)
Temp.send :remove_const, :UserQuery
skip "removed definition should not be tracked in document"
end
def test_replace_constant
old_query = @client.parse(<<-'GRAPHQL')
{
viewer {
id
}
}
GRAPHQL
Temp.const_set :UserQuery, old_query
# Access UserQuery.name
Temp::UserQuery.definition_name
new_query = @client.parse(<<-'GRAPHQL')
{
viewer {
name
}
}
GRAPHQL
Temp.send :remove_const, :UserQuery
Temp.const_set :UserQuery, new_query
query_string = <<-'GRAPHQL'.gsub(/^ /, "").chomp
query TestClient__Temp__UserQuery {
viewer {
name
}
}
GRAPHQL
assert_equal(query_string, new_query.document.to_query_string)
assert_equal <<-'GRAPHQL'.gsub(/^ /, "").chomp, old_query.document.to_query_string
query TestClient__Temp__UserQuery {
viewer {
id
}
}
GRAPHQL
skip "removed definition should not be tracked in document"
assert_equal(query_string, @client.document.to_query_string)
end
def test_spread_definition_defined_by_other_client
@client2 = GraphQL::Client.new(schema: Schema)
Temp.const_set :UserFragment, @client2.parse(<<-'GRAPHQL')
fragment on User {
login
}
GRAPHQL
Temp.const_set :RepositoryFragment, @client.parse(<<-'GRAPHQL')
fragment on Repository {
name
owner {
...TestClient::Temp::UserFragment
}
}
GRAPHQL
assert_equal <<-'GRAPHQL'.gsub(/^ /, "").chomp, Temp::RepositoryFragment.document.to_query_string
fragment TestClient__Temp__RepositoryFragment on Repository {
name
owner {
...TestClient__Temp__UserFragment
}
}
fragment TestClient__Temp__UserFragment on User {
login
}
GRAPHQL
end
end