forked from hasura/go-graphql-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
query_test.go
726 lines (697 loc) · 20.9 KB
/
query_test.go
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
package graphql
import (
"fmt"
"net/url"
"testing"
"time"
)
type cachedDirective struct {
ttl int
}
func (cd cachedDirective) Type() OptionType {
return OptionTypeOperationDirective
}
func (cd cachedDirective) String() string {
if cd.ttl <= 0 {
return "@cached"
}
return fmt.Sprintf("@cached(ttl: %d)", cd.ttl)
}
func TestConstructQuery(t *testing.T) {
tests := []struct {
options []Option
inV interface{}
inVariables map[string]interface{}
want string
}{
{
inV: struct {
Viewer struct {
Login String
CreatedAt DateTime
ID ID
DatabaseID Int
}
RateLimit struct {
Cost Int
Limit Int
Remaining Int
ResetAt DateTime
}
}{},
want: `{viewer{login,createdAt,id,databaseId},rateLimit{cost,limit,remaining,resetAt}}`,
},
{
options: []Option{OperationName("GetRepository"), cachedDirective{}},
inV: struct {
Repository struct {
DatabaseID Int
URL URI
Issue struct {
Comments struct {
Edges []struct {
Node struct {
Body String
Author struct {
Login String
}
Editor struct {
Login String
}
}
Cursor String
}
} `graphql:"comments(first:1after:\"Y3Vyc29yOjE5NTE4NDI1Ng==\")"`
} `graphql:"issue(number:1)"`
} `graphql:"repository(owner:\"shurcooL-test\"name:\"test-repo\")"`
}{},
want: `query GetRepository @cached {repository(owner:"shurcooL-test"name:"test-repo"){databaseId,url,issue(number:1){comments(first:1after:"Y3Vyc29yOjE5NTE4NDI1Ng=="){edges{node{body,author{login},editor{login}},cursor}}}}}`,
},
{
inV: func() interface{} {
type actor struct {
Login String
AvatarURL URI
URL URI
}
return struct {
Repository struct {
DatabaseID Int
URL URI
Issue struct {
Comments struct {
Edges []struct {
Node struct {
DatabaseID Int
Author actor
PublishedAt DateTime
LastEditedAt *DateTime
Editor *actor
Body String
ViewerCanUpdate Boolean
}
Cursor String
}
} `graphql:"comments(first:1)"`
} `graphql:"issue(number:1)"`
} `graphql:"repository(owner:\"shurcooL-test\"name:\"test-repo\")"`
}{}
}(),
want: `{repository(owner:"shurcooL-test"name:"test-repo"){databaseId,url,issue(number:1){comments(first:1){edges{node{databaseId,author{login,avatarUrl,url},publishedAt,lastEditedAt,editor{login,avatarUrl,url},body,viewerCanUpdate},cursor}}}}}`,
},
{
inV: func() interface{} {
type actor struct {
Login String
AvatarURL URI `graphql:"avatarUrl(size:72)"`
URL URI
}
return struct {
Repository struct {
Issue struct {
Author actor
PublishedAt DateTime
LastEditedAt *DateTime
Editor *actor
Body String
ReactionGroups []struct {
Content ReactionContent
Users struct {
TotalCount Int
}
ViewerHasReacted Boolean
}
ViewerCanUpdate Boolean
Comments struct {
Nodes []struct {
DatabaseID Int
Author actor
PublishedAt DateTime
LastEditedAt *DateTime
Editor *actor
Body String
ReactionGroups []struct {
Content ReactionContent
Users struct {
TotalCount Int
}
ViewerHasReacted Boolean
}
ViewerCanUpdate Boolean
}
PageInfo struct {
EndCursor String
HasNextPage Boolean
}
} `graphql:"comments(first:1)"`
} `graphql:"issue(number:1)"`
} `graphql:"repository(owner:\"shurcooL-test\"name:\"test-repo\")"`
}{}
}(),
want: `{repository(owner:"shurcooL-test"name:"test-repo"){issue(number:1){author{login,avatarUrl(size:72),url},publishedAt,lastEditedAt,editor{login,avatarUrl(size:72),url},body,reactionGroups{content,users{totalCount},viewerHasReacted},viewerCanUpdate,comments(first:1){nodes{databaseId,author{login,avatarUrl(size:72),url},publishedAt,lastEditedAt,editor{login,avatarUrl(size:72),url},body,reactionGroups{content,users{totalCount},viewerHasReacted},viewerCanUpdate},pageInfo{endCursor,hasNextPage}}}}}`,
},
{
inV: struct {
Repository struct {
Issue struct {
Body String
} `graphql:"issue(number: 1)"`
} `graphql:"repository(owner:\"shurcooL-test\"name:\"test-repo\")"`
}{},
want: `{repository(owner:"shurcooL-test"name:"test-repo"){issue(number: 1){body}}}`,
},
{
inV: struct {
Repository struct {
Issue struct {
Body String
} `graphql:"issue(number: $issueNumber)"`
} `graphql:"repository(owner: $repositoryOwner, name: $repositoryName)"`
}{},
inVariables: map[string]interface{}{
"repositoryOwner": String("shurcooL-test"),
"repositoryName": String("test-repo"),
"issueNumber": Int(1),
},
want: `query ($issueNumber:Int!$repositoryName:String!$repositoryOwner:String!){repository(owner: $repositoryOwner, name: $repositoryName){issue(number: $issueNumber){body}}}`,
},
{
options: []Option{OperationName("SearchRepository"), cachedDirective{100}},
inV: struct {
Repository struct {
Issue struct {
ReactionGroups []struct {
Users struct {
Nodes []struct {
Login String
}
} `graphql:"users(first:10)"`
}
} `graphql:"issue(number: $issueNumber)"`
} `graphql:"repository(owner: $repositoryOwner, name: $repositoryName)"`
}{},
inVariables: map[string]interface{}{
"repositoryOwner": String("shurcooL-test"),
"repositoryName": String("test-repo"),
"issueNumber": Int(1),
},
want: `query SearchRepository($issueNumber:Int!$repositoryName:String!$repositoryOwner:String!) @cached(ttl: 100) {repository(owner: $repositoryOwner, name: $repositoryName){issue(number: $issueNumber){reactionGroups{users(first:10){nodes{login}}}}}}`,
},
// check test above works with repository inner map
{
inV: func() interface{} {
type query struct {
Repository [][2]interface{} `graphql:"repository(owner: $repositoryOwner, name: $repositoryName)"`
}
type issue struct {
ReactionGroups []struct {
Users struct {
Nodes []struct {
Login String
}
} `graphql:"users(first:10)"`
}
}
return query{Repository: [][2]interface{}{
{"issue(number: $issueNumber)", issue{}},
}}
}(),
inVariables: map[string]interface{}{
"repositoryOwner": String("shurcooL-test"),
"repositoryName": String("test-repo"),
"issueNumber": Int(1),
},
want: `query ($issueNumber:Int!$repositoryName:String!$repositoryOwner:String!){repository(owner: $repositoryOwner, name: $repositoryName){issue(number: $issueNumber){reactionGroups{users(first:10){nodes{login}}}}}}`,
},
// check inner maps work inside slices
{
inV: func() interface{} {
type query struct {
Repository [][2]interface{} `graphql:"repository(owner: $repositoryOwner, name: $repositoryName)"`
}
type issue struct {
ReactionGroups []struct {
Users [][2]interface{} `graphql:"users(first:10)"`
}
}
type nodes []struct {
Login String
}
return query{Repository: [][2]interface{}{
{"issue(number: $issueNumber)", issue{
ReactionGroups: []struct {
Users [][2]interface{} `graphql:"users(first:10)"`
}{
{Users: [][2]interface{}{
{"nodes", nodes{}},
}},
},
}},
}}
}(),
inVariables: map[string]interface{}{
"repositoryOwner": String("shurcooL-test"),
"repositoryName": String("test-repo"),
"issueNumber": Int(1),
},
want: `query ($issueNumber:Int!$repositoryName:String!$repositoryOwner:String!){repository(owner: $repositoryOwner, name: $repositoryName){issue(number: $issueNumber){reactionGroups{users(first:10){nodes{login}}}}}}`,
},
// Embedded structs without graphql tag should be inlined in query.
{
inV: func() interface{} {
type actor struct {
Login String
AvatarURL URI
URL URI
}
type event struct { // Common fields for all events.
Actor actor
CreatedAt DateTime
}
type IssueComment struct {
Body String
}
return struct {
event // Should be inlined.
IssueComment `graphql:"... on IssueComment"` // Should not be, because of graphql tag.
CurrentTitle String
PreviousTitle String
Label struct {
Name String
Color String
}
}{}
}(),
want: `{actor{login,avatarUrl,url},createdAt,... on IssueComment{body},currentTitle,previousTitle,label{name,color}}`,
},
{
inV: struct {
Viewer struct {
Login string
CreatedAt time.Time
ID interface{}
DatabaseID int
}
}{},
want: `{viewer{login,createdAt,id,databaseId}}`,
},
{
inV: struct {
Viewer struct {
ID interface{}
Login string
CreatedAt time.Time
DatabaseID int
}
Tags map[string]interface{} `scalar:"true"`
}{},
want: `{viewer{id,login,createdAt,databaseId},tags}`,
},
{
inV: struct {
Viewer struct {
ID interface{}
Login string
CreatedAt time.Time
DatabaseID int
} `scalar:"true"`
}{},
want: `{viewer}`,
},
}
for _, tc := range tests {
got, err := constructQuery(tc.inV, tc.inVariables, tc.options...)
if err != nil {
t.Error(err)
} else if got != tc.want {
t.Errorf("\ngot: %q\nwant: %q\n", got, tc.want)
}
}
}
type CreateUser struct {
Login string
}
type DeleteUser struct {
Login string
}
func TestConstructMutation(t *testing.T) {
tests := []struct {
inV interface{}
inVariables map[string]interface{}
want string
}{
{
inV: struct {
AddReaction struct {
Subject struct {
ReactionGroups []struct {
Users struct {
TotalCount Int
}
}
}
} `graphql:"addReaction(input:$input)"`
}{},
inVariables: map[string]interface{}{
"input": AddReactionInput{
SubjectID: "MDU6SXNzdWUyMzE1MjcyNzk=",
Content: ReactionContentThumbsUp,
},
},
want: `mutation ($input:AddReactionInput!){addReaction(input:$input){subject{reactionGroups{users{totalCount}}}}}`,
},
{
inV: [][2]interface{}{
{"createUser(login:$login1)", &CreateUser{}},
{"deleteUser(login:$login2)", &DeleteUser{}},
},
inVariables: map[string]interface{}{
"login1": String("grihabor"),
"login2": String("diman"),
},
want: "mutation ($login1:String!$login2:String!){createUser(login:$login1){login}deleteUser(login:$login2){login}}",
},
}
for _, tc := range tests {
got, err := constructMutation(tc.inV, tc.inVariables)
if err != nil {
t.Error(err)
} else if got != tc.want {
t.Errorf("\ngot: %q\nwant: %q\n", got, tc.want)
}
}
}
func TestConstructSubscription(t *testing.T) {
tests := []struct {
name string
inV interface{}
inVariables map[string]interface{}
want string
}{
{
inV: struct {
Viewer struct {
Login String
CreatedAt DateTime
ID ID
DatabaseID Int
}
RateLimit struct {
Cost Int
Limit Int
Remaining Int
ResetAt DateTime
}
}{},
want: `subscription{viewer{login,createdAt,id,databaseId},rateLimit{cost,limit,remaining,resetAt}}`,
},
{
name: "GetRepository",
inV: struct {
Repository struct {
DatabaseID Int
URL URI
Issue struct {
Comments struct {
Edges []struct {
Node struct {
Body String
Author struct {
Login String
}
Editor struct {
Login String
}
}
Cursor String
}
} `graphql:"comments(first:1after:\"Y3Vyc29yOjE5NTE4NDI1Ng==\")"`
} `graphql:"issue(number:1)"`
} `graphql:"repository(owner:\"shurcooL-test\"name:\"test-repo\")"`
}{},
want: `subscription GetRepository{repository(owner:"shurcooL-test"name:"test-repo"){databaseId,url,issue(number:1){comments(first:1after:"Y3Vyc29yOjE5NTE4NDI1Ng=="){edges{node{body,author{login},editor{login}},cursor}}}}}`,
},
{
inV: func() interface{} {
type actor struct {
Login String
AvatarURL URI
URL URI
}
return struct {
Repository struct {
DatabaseID Int
URL URI
Issue struct {
Comments struct {
Edges []struct {
Node struct {
DatabaseID Int
Author actor
PublishedAt DateTime
LastEditedAt *DateTime
Editor *actor
Body String
ViewerCanUpdate Boolean
}
Cursor String
}
} `graphql:"comments(first:1)"`
} `graphql:"issue(number:1)"`
} `graphql:"repository(owner:\"shurcooL-test\"name:\"test-repo\")"`
}{}
}(),
want: `subscription{repository(owner:"shurcooL-test"name:"test-repo"){databaseId,url,issue(number:1){comments(first:1){edges{node{databaseId,author{login,avatarUrl,url},publishedAt,lastEditedAt,editor{login,avatarUrl,url},body,viewerCanUpdate},cursor}}}}}`,
},
{
inV: func() interface{} {
type actor struct {
Login String
AvatarURL URI `graphql:"avatarUrl(size:72)"`
URL URI
}
return struct {
Repository struct {
Issue struct {
Author actor
PublishedAt DateTime
LastEditedAt *DateTime
Editor *actor
Body String
ReactionGroups []struct {
Content ReactionContent
Users struct {
TotalCount Int
}
ViewerHasReacted Boolean
}
ViewerCanUpdate Boolean
Comments struct {
Nodes []struct {
DatabaseID Int
Author actor
PublishedAt DateTime
LastEditedAt *DateTime
Editor *actor
Body String
ReactionGroups []struct {
Content ReactionContent
Users struct {
TotalCount Int
}
ViewerHasReacted Boolean
}
ViewerCanUpdate Boolean
}
PageInfo struct {
EndCursor String
HasNextPage Boolean
}
} `graphql:"comments(first:1)"`
} `graphql:"issue(number:1)"`
} `graphql:"repository(owner:\"shurcooL-test\"name:\"test-repo\")"`
}{}
}(),
want: `subscription{repository(owner:"shurcooL-test"name:"test-repo"){issue(number:1){author{login,avatarUrl(size:72),url},publishedAt,lastEditedAt,editor{login,avatarUrl(size:72),url},body,reactionGroups{content,users{totalCount},viewerHasReacted},viewerCanUpdate,comments(first:1){nodes{databaseId,author{login,avatarUrl(size:72),url},publishedAt,lastEditedAt,editor{login,avatarUrl(size:72),url},body,reactionGroups{content,users{totalCount},viewerHasReacted},viewerCanUpdate},pageInfo{endCursor,hasNextPage}}}}}`,
},
{
inV: struct {
Repository struct {
Issue struct {
Body String
} `graphql:"issue(number: 1)"`
} `graphql:"repository(owner:\"shurcooL-test\"name:\"test-repo\")"`
}{},
want: `subscription{repository(owner:"shurcooL-test"name:"test-repo"){issue(number: 1){body}}}`,
},
{
inV: struct {
Repository struct {
Issue struct {
Body String
} `graphql:"issue(number: $issueNumber)"`
} `graphql:"repository(owner: $repositoryOwner, name: $repositoryName)"`
}{},
inVariables: map[string]interface{}{
"repositoryOwner": String("shurcooL-test"),
"repositoryName": String("test-repo"),
"issueNumber": Int(1),
},
want: `subscription ($issueNumber:Int!$repositoryName:String!$repositoryOwner:String!){repository(owner: $repositoryOwner, name: $repositoryName){issue(number: $issueNumber){body}}}`,
},
{
name: "SearchRepository",
inV: struct {
Repository struct {
Issue struct {
ReactionGroups []struct {
Users struct {
Nodes []struct {
Login String
}
} `graphql:"users(first:10)"`
}
} `graphql:"issue(number: $issueNumber)"`
} `graphql:"repository(owner: $repositoryOwner, name: $repositoryName)"`
}{},
inVariables: map[string]interface{}{
"repositoryOwner": String("shurcooL-test"),
"repositoryName": String("test-repo"),
"issueNumber": Int(1),
},
want: `subscription SearchRepository($issueNumber:Int!$repositoryName:String!$repositoryOwner:String!){repository(owner: $repositoryOwner, name: $repositoryName){issue(number: $issueNumber){reactionGroups{users(first:10){nodes{login}}}}}}`,
},
// Embedded structs without graphql tag should be inlined in query.
{
inV: func() interface{} {
type actor struct {
Login String
AvatarURL URI
URL URI
}
type event struct { // Common fields for all events.
Actor actor
CreatedAt DateTime
}
type IssueComment struct {
Body String
}
return struct {
event // Should be inlined.
IssueComment `graphql:"... on IssueComment"` // Should not be, because of graphql tag.
CurrentTitle String
PreviousTitle String
Label struct {
Name String
Color String
}
}{}
}(),
want: `subscription{actor{login,avatarUrl,url},createdAt,... on IssueComment{body},currentTitle,previousTitle,label{name,color}}`,
},
{
inV: struct {
Viewer struct {
Login string
CreatedAt time.Time
ID interface{}
DatabaseID int
}
}{},
want: `subscription{viewer{login,createdAt,id,databaseId}}`,
},
}
for _, tc := range tests {
got, err := constructSubscription(tc.inV, tc.inVariables, OperationName(tc.name))
if err != nil {
t.Error(err)
} else if got != tc.want {
t.Errorf("\ngot: %q\nwant: %q\n", got, tc.want)
}
}
}
func TestQueryArguments(t *testing.T) {
tests := []struct {
in map[string]interface{}
want string
}{
{
in: map[string]interface{}{"a": Int(123), "b": NewBoolean(true)},
want: "$a:Int!$b:Boolean",
},
{
in: map[string]interface{}{
"required": []IssueState{IssueStateOpen, IssueStateClosed},
"optional": &[]IssueState{IssueStateOpen, IssueStateClosed},
},
want: "$optional:[IssueState!]$required:[IssueState!]!",
},
{
in: map[string]interface{}{
"required": []IssueState(nil),
"optional": (*[]IssueState)(nil),
},
want: "$optional:[IssueState!]$required:[IssueState!]!",
},
{
in: map[string]interface{}{
"required": [...]IssueState{IssueStateOpen, IssueStateClosed},
"optional": &[...]IssueState{IssueStateOpen, IssueStateClosed},
},
want: "$optional:[IssueState!]$required:[IssueState!]!",
},
{
in: map[string]interface{}{"id": ID("someID")},
want: "$id:ID!",
},
{
in: map[string]interface{}{"ids": []ID{"someID", "anotherID"}},
want: `$ids:[ID!]!`,
},
{
in: map[string]interface{}{"ids": &[]ID{"someID", "anotherID"}},
want: `$ids:[ID!]`,
},
}
for i, tc := range tests {
got := queryArguments(tc.in)
if got != tc.want {
t.Errorf("test case %d:\n got: %q\nwant: %q", i, got, tc.want)
}
}
}
// Custom GraphQL types for testing.
type (
// DateTime is an ISO-8601 encoded UTC date.
DateTime struct{ time.Time }
// URI is an RFC 3986, RFC 3987, and RFC 6570 (level 4) compliant URI.
URI struct{ *url.URL }
)
func (u *URI) UnmarshalJSON(data []byte) error { panic("mock implementation") }
// IssueState represents the possible states of an issue.
type IssueState string
// The possible states of an issue.
const (
IssueStateOpen IssueState = "OPEN" // An issue that is still open.
IssueStateClosed IssueState = "CLOSED" // An issue that has been closed.
)
// ReactionContent represents emojis that can be attached to Issues, Pull Requests and Comments.
type ReactionContent string
// Emojis that can be attached to Issues, Pull Requests and Comments.
const (
ReactionContentThumbsUp ReactionContent = "THUMBS_UP" // Represents the 👍 emoji.
ReactionContentThumbsDown ReactionContent = "THUMBS_DOWN" // Represents the 👎 emoji.
ReactionContentLaugh ReactionContent = "LAUGH" // Represents the 😄 emoji.
ReactionContentHooray ReactionContent = "HOORAY" // Represents the 🎉 emoji.
ReactionContentConfused ReactionContent = "CONFUSED" // Represents the 😕 emoji.
ReactionContentHeart ReactionContent = "HEART" // Represents the ❤️ emoji.
)
// AddReactionInput is an autogenerated input type of AddReaction.
type AddReactionInput struct {
// The Node ID of the subject to modify. (Required.)
SubjectID ID `json:"subjectId"`
// The name of the emoji to react with. (Required.)
Content ReactionContent `json:"content"`
// A unique identifier for the client performing the mutation. (Optional.)
ClientMutationID *String `json:"clientMutationId,omitempty"`
}