-
Notifications
You must be signed in to change notification settings - Fork 157
Expand file tree
/
Copy pathastprinter_test.go
More file actions
1271 lines (1179 loc) · 31.1 KB
/
astprinter_test.go
File metadata and controls
1271 lines (1179 loc) · 31.1 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
package astprinter
import (
"bytes"
"os"
"testing"
"github.com/jensneuse/diffview"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/wundergraph/graphql-go-tools/v2/pkg/internal/unsafeparser"
"github.com/wundergraph/graphql-go-tools/v2/pkg/operationreport"
"github.com/wundergraph/graphql-go-tools/v2/pkg/testing/goldie"
)
func must(t *testing.T, err error) {
t.Helper()
if report, ok := err.(operationreport.Report); ok {
if report.HasErrors() {
t.Fatalf("report has errors %s", report.Error())
}
}
require.NoError(t, err)
}
func runWithIndent(t *testing.T, raw string, expected string, indent bool) {
t.Helper()
doc := unsafeparser.ParseGraphqlDocumentString(raw)
buff := &bytes.Buffer{}
printer := Printer{}
if indent {
printer.indent = []byte(" ")
}
must(t, printer.Print(&doc, buff))
actual := buff.String()
assert.Equal(t, expected, actual)
}
func runIndent(t *testing.T, raw string, expected string) {
runWithIndent(t, raw, expected, true)
}
func run(t *testing.T, raw string, expected string) {
runWithIndent(t, raw, expected, false)
}
func TestPrint(t *testing.T) {
t.Run("simple", func(t *testing.T) {
run(t, "query o($id: String!){user(id: $id){id name birthday}}",
"query o($id: String!){user(id: $id){id name birthday}}")
})
t.Run("complex", func(t *testing.T) {
run(t, `
subscription sub {
...multipleSubscriptions
}
fragment multipleSubscriptions on Subscription {
... {
newMessage {
body
}
}
... on Subscription {
typedInlineFragment
}
newMessage {
body
sender
}
disallowedSecondRootField
}`,
"subscription sub {...multipleSubscriptions} fragment multipleSubscriptions on Subscription {...{newMessage {body}} ... on Subscription {typedInlineFragment} newMessage {body sender} disallowedSecondRootField}")
})
t.Run("multiline comments indentation", func(t *testing.T) {
run(t, `"""
the following lines test indentation
one tab
two spaces
two tabs
no indentation
example from issue:
{
user(id: 1) {
userID
friends
}
}
"""
type Query`,
`"""
the following lines test indentation
one tab
two spaces
two tabs
no indentation
example from issue:
{
user(id: 1) {
userID
friends
}
}
"""
type Query `)
})
t.Run("directive definition", func(t *testing.T) {
run(t, `
"""
directive @cache
"""
directive @cache(
"maxAge defines the maximum time in seconds a response will be understood 'fresh', defaults to 300 (5 minutes)"
maxAge: Int! = 300
"""
vary defines the headers to append to the cache key
In addition to all possible headers you can also select a custom claim for authenticated requests
Examples: 'jwt.sub', 'jwt.team' to vary the cache key based on 'sub' or 'team' fields on the jwt.
"""
vary: [String]! = []
) on QUERY directive @include(if: Boolean!) repeatable on FIELD
`,
`"""
directive @cache
"""
directive @cache("maxAge defines the maximum time in seconds a response will be understood 'fresh', defaults to 300 (5 minutes)"
maxAge: Int! = 300 """
vary defines the headers to append to the cache key
In addition to all possible headers you can also select a custom claim for authenticated requests
Examples: 'jwt.sub', 'jwt.team' to vary the cache key based on 'sub' or 'team' fields on the jwt.
"""
vary: [String]! = []) on QUERY directive @include(if: Boolean!) repeatable on FIELD`)
})
t.Run("fragment definition with directives", func(t *testing.T) {
run(t, `
fragment foo on Dog @fragmentDefinition {
name
}
`, `fragment foo on Dog @fragmentDefinition {name}`)
})
t.Run("anonymous query", func(t *testing.T) {
run(t, ` {
dog {
...aliasedLyingFieldTargetNotDefined
}
}`, "{dog {...aliasedLyingFieldTargetNotDefined}}")
})
t.Run("arguments", func(t *testing.T) {
run(t, `
query argOnRequiredArg($catCommand: CatCommand @include(if: true), $complex: Boolean = true) {
dog {
doesKnowCommand(dogCommand: $catCommand)
}
}`, `query argOnRequiredArg($catCommand: CatCommand @include(if: true), $complex: Boolean = true){dog {doesKnowCommand(dogCommand: $catCommand)}}`)
})
t.Run("spacing", func(t *testing.T) {
run(t, `query($representations: [_Any!]!){_entities (representations: $representations){... on User {reviews {body product {upc __typename}}}}}`,
`query($representations: [_Any!]!){_entities(representations: $representations){... on User {reviews {body product {upc __typename}}}}}`)
})
t.Run("directives", func(t *testing.T) {
t.Run("no indentation", func(t *testing.T) {
t.Run("on field with selections", func(t *testing.T) {
run(t, `
query directivesQuery @foo(bar: BAZ) {
dog @include(if: true, or: false) {
doesKnowCommand(dogCommand: $catCommand)
}
}`, `query directivesQuery @foo(bar: BAZ) {dog @include(if: true, or: false) {doesKnowCommand(dogCommand: $catCommand)}}`)
})
t.Run("on field with selections and selections after", func(t *testing.T) {
run(t, `
query directivesQuery @foo(bar: BAZ) {
dog @include(if: true, or: false) {
doesKnowCommand(dogCommand: $catCommand)
}
anotherField
}`, `query directivesQuery @foo(bar: BAZ) {dog @include(if: true, or: false) {doesKnowCommand(dogCommand: $catCommand)} anotherField}`)
})
t.Run("on inline fragment", func(t *testing.T) {
run(t, `
{
dog {
name: nickname
... @include(if: true) {
name
}
}
cat {
name @include(if: true)
nickname
}
}`, `{dog {name: nickname ... @include(if: true){name}} cat {name @include(if: true) nickname}}`)
})
t.Run("on fragment spread", func(t *testing.T) {
run(t, `
{
dog {
...NameFragment @include(if: true)
}
}
fragment NameFragment on Dog {
name
}
`, `{dog {...NameFragment @include(if: true)}} fragment NameFragment on Dog {name}`)
})
})
t.Run("with indentation", func(t *testing.T) {
t.Run("on field with selections", func(t *testing.T) {
runIndent(t, `
query directivesQuery @foo(bar: BAZ) {
dog @include(if: true, or: false) {
doesKnowCommand(dogCommand: $catCommand)
}
}`,
`query directivesQuery @foo(bar: BAZ) {
dog @include(if: true, or: false) {
doesKnowCommand(dogCommand: $catCommand)
}
}`)
})
t.Run("on field with selections and selections after", func(t *testing.T) {
runIndent(t, `
query directivesQuery @foo(bar: BAZ) {
dog @include(if: true, or: false) {
doesKnowCommand(dogCommand: $catCommand)
}
anotherField
}`,
`query directivesQuery @foo(bar: BAZ) {
dog @include(if: true, or: false) {
doesKnowCommand(dogCommand: $catCommand)
}
anotherField
}`)
})
t.Run("on field without selections", func(t *testing.T) {
runIndent(t, `
{
cat {
name @include(if: true)
nickname
}
}`,
`{
cat {
name @include(if: true)
nickname
}
}`)
})
t.Run("on inline fragment", func(t *testing.T) {
runIndent(t, `
{
dog {
... @include(if: true) {
name
}
}
}`,
`{
dog {
... @include(if: true) {
name
}
}
}`)
})
t.Run("on inline fragment and selections after", func(t *testing.T) {
runIndent(t, `
{
dog {
... @include(if: true) {
name
}
name: nickname
}
}`,
`{
dog {
... @include(if: true) {
name
}
name: nickname
}
}`)
})
t.Run("on fragment spread", func(t *testing.T) {
runIndent(t, `
{
dog {
...NameFragment @include(if: true)
}
}
fragment NameFragment on Dog {
name
}
`, `{
dog {
...NameFragment @include(if: true)
}
}
fragment NameFragment on Dog {
name
}`)
})
t.Run("on fragment spread and selections after", func(t *testing.T) {
runIndent(t, `
{
dog {
...NameFragment @include(if: true)
otherField
}
}
fragment NameFragment on Dog {
name
}
`, `{
dog {
...NameFragment @include(if: true)
otherField
}
}
fragment NameFragment on Dog {
name
}`)
})
})
})
t.Run("complex operation", func(t *testing.T) {
run(t, benchmarkTestOperation, benchmarkTestOperationFlat)
})
t.Run("schema definition", func(t *testing.T) {
run(t, `
schema {
query: Query
mutation: Mutation
subscription: Subscription
}`, `schema {query: Query mutation: Mutation subscription: Subscription}`)
})
t.Run("schema extension", func(t *testing.T) {
run(t, `
extend schema @foo {
query: Query
mutation: Mutation
subscription: Subscription
}`, `extend schema @foo {query: Query mutation: Mutation subscription: Subscription}`)
})
t.Run("schema extension only directives", func(t *testing.T) {
run(t, `extend schema @foo `, `extend schema @foo `)
})
t.Run("object type definition", func(t *testing.T) {
run(t, `
type Foo {
field: String
}`, `type Foo {field: String}`)
})
t.Run("object type extension", func(t *testing.T) {
run(t, `
extend type Foo @foo {
field: String
}`, `extend type Foo @foo {field: String}`)
})
t.Run("input object type definition", func(t *testing.T) {
run(t, `
input Foo {
field: String
field2: Boolean = true
}`, `input Foo {field: String field2: Boolean = true}`)
})
t.Run("input object type extension", func(t *testing.T) {
run(t, `
extend input Foo @foo {
field: String
}`, `extend input Foo @foo {field: String}`)
})
t.Run("interface type definition", func(t *testing.T) {
run(t, `
interface Foo {
field: String
field2: Boolean
}`, `interface Foo {field: String field2: Boolean}`)
})
t.Run("interface type extension", func(t *testing.T) {
run(t, `
extend interface Foo @foo {
field: String
}`, `extend interface Foo @foo {field: String}`)
})
t.Run("scalar type definition", func(t *testing.T) {
run(t, `scalar JSON`, `scalar JSON`)
})
t.Run("scalar type extension", func(t *testing.T) {
run(t, `extend scalar JSON @foo`, `extend scalar JSON @foo`)
})
t.Run("union type definition", func(t *testing.T) {
run(t, `union Foo = BAR | BAZ`, `union Foo = BAR | BAZ`)
})
t.Run("union type extension", func(t *testing.T) {
run(t, `extend union Foo @foo = BAR | BAZ`, `extend union Foo @foo = BAR | BAZ`)
})
t.Run("enum type definition", func(t *testing.T) {
run(t, `
enum Foo {
BAR
BAZ
}`, `enum Foo {BAR BAZ}`)
})
t.Run("enum type extension", func(t *testing.T) {
run(t, `
extend enum Foo @foo {
BAR
BAZ
}`, `extend enum Foo @foo {BAR BAZ}`)
})
t.Run("multiple operations with variables", func(t *testing.T) {
run(t, `
mutation AddToWatchlist($a: Int!, $b: String!){
addToWatchlist(movieID: $a, name: $b){
id
name
year
}
}
mutation AddWithInput($a: WatchlistInput!){
addToWatchlistWithInput(input: $a){
id
name
year
}
}`,
`mutation AddToWatchlist($a: Int!, $b: String!){addToWatchlist(movieID: $a, name: $b){id name year}} mutation AddWithInput($a: WatchlistInput!){addToWatchlistWithInput(input: $a){id name year}}`)
})
t.Run("ignore comments", func(t *testing.T) {
t.Run("operation", func(t *testing.T) {
run(t, `
query #comment
findUser#comment
(#comment
$userId#comment
:#comment
ID#comment
!#comment
#comment
)#comment
{#comment
user#comment
(#comment
id#comment
:#comment
$userId#comment
#comment
)#comment
#comment
{#comment
...#comment
UserFields#comment
... #comment
on #comment
User#comment
{#comment
email#comment
}#comment
}#comment
}#comment
fragment #comment
UserFields #comment
on #comment
User#comment
{#comment
id#comment
#username#comment
role#comment
}#comment`,
`query findUser($userId: ID!){user(id: $userId){...UserFields ... on User {email}}} fragment UserFields on User {id role}`)
})
t.Run("definition", func(t *testing.T) {
run(t, `
#comment
scalar #comment
Date #comment
schema #comment
{ #comment
query#comment
:#comment
#comment
Query#comment
#comment
}#comment
#comment
type#comment
Query#comment
{#comment
me#comment
:#comment
User#comment
!#comment
user(#comment
id#comment
:#comment
ID#comment
!#comment
)#comment
:#comment
User#comment
allUsers#comment
:#comment
[#comment
#comment
User#comment
]#comment
search#comment
(#comment
term#comment
:#comment
String#comment
!#comment
)#comment
:#comment
[#comment
SearchResult#comment
!#comment
]#comment
!#comment
myChats:#comment
[#comment
Chat#comment
!#comment
]!#comment
}
enum#comment
Role#comment
{#comment
#comment
USER#comment
,#comment
ADMIN#comment
,#comment
#comment
}#comment
interface#comment
Node {#comment
id#comment
:#comment
ID#comment
!#comment
}#comment
union #comment
SearchResult#comment
=#comment
User#comment
|#comment
Chat#comment
|#comment
ChatMessage#comment
type#comment
User#comment
implements#comment
Node#comment
{#comment
id#comment
:#comment
ID#comment
!#comment
username#comment
:#comment
String#comment
!#comment
email#comment
:#comment
String#comment
!#comment
role#comment
:#comment
Role#comment
!#comment
}#comment
type#comment
Chat#comment
implements#comment
Node#comment
{#comment
id#comment
:#comment
ID#comment
!#comment
users#comment
:#comment
[#comment
User#comment
!#comment
]!#comment
messages#comment
:#comment
[#comment
ChatMessage#comment
!#comment
]#comment
!#comment
#comment
}#comment
type#comment
ChatMessage#comment
implements#comment
Node#comment
{#comment
id#comment
:#comment
ID#comment
!#comment
content#comment
:#comment
String#comment
!#comment
time#comment
:#comment
Date#comment
!#comment
user#comment
:#comment
User#comment
!#comment
#comment
}#comment`,
`scalar Date schema {query: Query} type Query {me: User! user(id: ID!): User allUsers: [User] search(term: String!): [SearchResult!]! myChats: [Chat!]!} enum Role {USER ADMIN} interface Node {id: ID!} union SearchResult = User | Chat | ChatMessage type User implements Node {id: ID! username: String! email: String! role: Role!} type Chat implements Node {id: ID! users: [User!]! messages: [ChatMessage!]!} type ChatMessage implements Node {id: ID! content: String! time: Date! user: User!}`)
})
})
t.Run("transitive interfaces", func(t *testing.T) {
run(t, "interface I1 {id: ID!} interface I2 implements I1 {id: ID!} interface I3 implements I1 & I2 {id: ID!}",
"interface I1 {id: ID!} interface I2 implements I1 {id: ID!} interface I3 implements I1 & I2 {id: ID!}")
})
t.Run("operation with description", func(t *testing.T) {
t.Run("block string description", func(t *testing.T) {
run(t, `"""
This is a query description
"""
query GetUser {
user {
id
name
}
}`, `"""
This is a query description
"""
query GetUser {user {id name}}`)
})
t.Run("single line description", func(t *testing.T) {
run(t, `"This is a mutation description"
mutation CreateUser {
createUser {
id
}
}`, `"This is a mutation description"
mutation CreateUser {createUser {id}}`)
})
t.Run("subscription with description", func(t *testing.T) {
run(t, `"""
Subscribe to new messages
"""
subscription OnNewMessage {
newMessage {
body
}
}`, `"""
Subscribe to new messages
"""
subscription OnNewMessage {newMessage {body}}`)
})
t.Run("anonymous query without description", func(t *testing.T) {
run(t, `{
user {
id
}
}`, `{user {id}}`)
})
t.Run("operation with description and variables", func(t *testing.T) {
run(t, `"Get user by ID"
query GetUser($id: ID!) {
user(id: $id) {
id
name
}
}`, `"Get user by ID"
query GetUser($id: ID!){user(id: $id){id name}}`)
})
t.Run("operation with description and directives", func(t *testing.T) {
run(t, `"""
Query with directive
"""
query GetUser @cached {
user {
id
}
}`, `"""
Query with directive
"""
query GetUser @cached {user {id}}`)
})
})
t.Run("fragment with description", func(t *testing.T) {
t.Run("block string description", func(t *testing.T) {
run(t, `"""
User fields fragment
"""
fragment UserFields on User {
id
name
email
}`, `"""
User fields fragment
"""
fragment UserFields on User {id name email}`)
})
t.Run("single line description", func(t *testing.T) {
run(t, `"Basic user info"
fragment BasicUser on User {
id
name
}`, `"Basic user info"
fragment BasicUser on User {id name}`)
})
t.Run("fragment without description", func(t *testing.T) {
run(t, `fragment UserFields on User {
id
name
}`, `fragment UserFields on User {id name}`)
})
t.Run("fragment with description and directives", func(t *testing.T) {
run(t, `"""
Fragment with directive
"""
fragment UserFields on User @fragmentDefinition {
id
name
}`, `"""
Fragment with directive
"""
fragment UserFields on User @fragmentDefinition {id name}`)
})
})
t.Run("mixed operations and fragments with descriptions", func(t *testing.T) {
run(t, `"Get user query"
query GetUser {
user {
...UserFields
}
}
"""
User fields fragment
"""
fragment UserFields on User {
id
name
}`, `"Get user query"
query GetUser {user {...UserFields}} """
User fields fragment
"""
fragment UserFields on User {id name}`)
})
t.Run("variable descriptions", func(t *testing.T) {
t.Run("single-line description", func(t *testing.T) {
run(t, `query GetUser("The user ID" $id: ID!) {
user(id: $id) {
id
}
}`, `query GetUser("The user ID" $id: ID!){user(id: $id){id}}`)
})
t.Run("block string description", func(t *testing.T) {
run(t, `query GetUser("""The unique identifier""" $id: ID!) {
user(id: $id) {
id
}
}`, `query GetUser("""
The unique identifier
""" $id: ID!){user(id: $id){id}}`)
})
t.Run("multiple variables with mixed descriptions", func(t *testing.T) {
run(t, `query Search("The search query" $query: String!, $limit: Int) {
search(query: $query, limit: $limit) {
id
}
}`, `query Search("The search query" $query: String!, $limit: Int){search(query: $query, limit: $limit){id}}`)
})
t.Run("without description unchanged", func(t *testing.T) {
run(t, `query GetUser($id: ID!) {
user(id: $id) {
id
}
}`, `query GetUser($id: ID!){user(id: $id){id}}`)
})
t.Run("single-line operation with variable description", func(t *testing.T) {
run(t, `query GetUser("The user ID" $id: ID!) { user(id: $id) { id } }`,
`query GetUser("The user ID" $id: ID!){user(id: $id){id}}`)
})
})
}
func TestPrintArgumentWithBeforeAfterValue(t *testing.T) {
doc := unsafeparser.ParseGraphqlDocumentString(`
mutation ($email: String!) {
pge_queryRaw(query: "SELECT id, name, email from \"User\" where email = $1", parameters: [$email])
}
`)
doc.Arguments[1].PrintBeforeValue = []byte("\"")
doc.Arguments[1].PrintAfterValue = []byte("\"")
buff := bytes.Buffer{}
err := Print(&doc, &buff)
if err != nil {
t.Fatal(err)
}
out := buff.Bytes()
assert.Equal(t, "mutation($email: String!){pge_queryRaw(query: \"SELECT id, name, email from \\\"User\\\" where email = $1\", parameters: \"[$email]\")}", string(out))
}
func TestPrintSchemaDefinition(t *testing.T) {
doc := unsafeparser.ParseGraphqlDocumentFile("./testdata/starwars.schema.graphql")
buff := bytes.Buffer{}
err := PrintIndent(&doc, []byte(" "), &buff)
if err != nil {
t.Fatal(err)
}
out := buff.Bytes()
goldie.Assert(t, "starwars_schema_definition", out)
if t.Failed() {
fixture, err := os.ReadFile("./fixtures/starwars_schema_definition.golden")
if err != nil {
t.Fatal(err)
}
diffview.NewGoland().DiffViewBytes("starwars_schema_definition", fixture, out)
}
}
func TestPrintOperationDefinition(t *testing.T) {
operation := unsafeparser.ParseGraphqlDocumentFile("./testdata/introspectionquery.graphql")
buff := bytes.Buffer{}
err := PrintIndent(&operation, []byte(" "), &buff)
if err != nil {
t.Fatal(err)
}
out := buff.Bytes()
goldie.Assert(t, "introspectionquery", out)
if t.Failed() {
fixture, err := os.ReadFile("./fixtures/introspectionquery.golden")
if err != nil {
t.Fatal(err)
}
diffview.NewGoland().DiffViewBytes("introspectionquery", fixture, out)
}
}
func BenchmarkPrint(b *testing.B) {
must := func(err error) {
if err != nil {
panic(err)
}
}
doc := unsafeparser.ParseGraphqlDocumentString(benchmarkTestOperation)
buff := &bytes.Buffer{}
printer := Printer{}
b.ResetTimer()
b.ReportAllocs()
for i := 0; i < b.N; i++ {
buff.Reset()
must(printer.Print(&doc, buff))
}
}
const testDefinition = `
schema {
query: Query
subscription: Subscription
}
type Message {
body: String
sender: String
}
type Subscription {
newMessage: Message
disallowedSecondRootField: Boolean
}
input ComplexInput { name: String, owner: String }
input ComplexNonOptionalInput { name: String! }
type Query {
human: Human
pet: Pet
dog: Dog
cat: Cat
catOrDog: CatOrDog
dogOrHuman: DogOrHuman
humanOrAlien: HumanOrAlien
arguments: ValidArguments
findDog(complex: ComplexInput): Dog
findDogNonOptional(complex: ComplexNonOptionalInput): Dog
booleanList(booleanListArg: [Boolean!]): Boolean
extra: Extra
}
type ValidArguments {
multipleReqs(x: Int!, y: Int!): Int!
booleanArgField(booleanArg: Boolean): Boolean
floatArgField(floatArg: Float): Float
intArgField(intArg: Int): Int
nonNullBooleanArgField(nonNullBooleanArg: Boolean!): Boolean!
booleanListArgField(booleanListArg: [Boolean]!): [Boolean]
optionalNonNullBooleanArgField(optionalBooleanArg: Boolean! = false): Boolean!
}
enum DogCommand { SIT, DOWN, HEEL }
type Dog implements Pet {
name: String!
nickname: String
barkVolume: Int
doesKnowCommand(dogCommand: DogCommand!): Boolean!
isHousetrained(atOtherHomes: Boolean): Boolean!
owner: Human
extra: DogExtra
extras: [DogExtra]
mustExtra: DogExtra!
mustExtras: [DogExtra]!
mustMustExtras: [DogExtra!]!
}
type DogExtra {
string: String
strings: [String]
mustStrings: [String]!
bool: Int
}
interface Sentient {
name: String!
}
interface Pet {
name: String!
}
type Alien implements Sentient {
name: String!
homePlanet: String
}
type Human implements Sentient {
name: String!
}