-
Notifications
You must be signed in to change notification settings - Fork 51
/
http_test.go
1485 lines (1316 loc) · 37.8 KB
/
http_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
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 gateway
import (
"bytes"
"context"
"encoding/json"
"errors"
"fmt"
"io"
"mime/multipart"
"net/http"
"net/http/httptest"
"net/url"
"strconv"
"strings"
"testing"
"golang.org/x/net/html"
"github.com/nautilus/graphql"
"github.com/stretchr/testify/assert"
"github.com/vektah/gqlparser/v2/ast"
)
type resultWithErrors struct {
Errors []struct {
Extensions map[string]string `json:"extensions"`
Message string `json:"message"`
} `json:"errors"`
}
func TestGraphQLHandler_postMissingQuery(t *testing.T) {
t.Parallel()
schema, err := graphql.LoadSchema(`
type Query {
allUsers: [String!]!
}
`)
assert.NoError(t, err)
// create gateway schema we can test against
gateway, err := New([]*graphql.RemoteSchema{
{Schema: schema, URL: "url1"},
})
if err != nil {
t.Error(err.Error())
return
}
// the incoming request
request := httptest.NewRequest("POST", "/graphql", strings.NewReader(`
{
"query": ""
}
`))
// a recorder so we can check what the handler responded with
responseRecorder := httptest.NewRecorder()
// call the http hander
gateway.GraphQLHandler(responseRecorder, request)
// make sure we got an error code
result := responseRecorder.Result()
assert.NoError(t, result.Body.Close())
assert.Equal(t, http.StatusUnprocessableEntity, result.StatusCode)
}
func TestGraphQLHandler(t *testing.T) {
t.Parallel()
schema, _ := graphql.LoadSchema(`
type Query {
allUsers: [String!]!
}
`)
// create gateway schema we can test against
gateway, err := New([]*graphql.RemoteSchema{
{Schema: schema, URL: "url1"},
}, WithExecutor(ExecutorFunc(
func(*ExecutionContext) (map[string]interface{}, error) {
return map[string]interface{}{
"Hello": "world",
}, nil
},
)))
if err != nil {
t.Error(err.Error())
return
}
t.Run("Missing query", func(t *testing.T) {
t.Parallel()
// the incoming request
request := httptest.NewRequest("GET", "/graphql", strings.NewReader(""))
// a recorder so we can check what the handler responded with
responseRecorder := httptest.NewRecorder()
// call the http hander
gateway.GraphQLHandler(responseRecorder, request)
// make sure we got an error code
recorderResult := responseRecorder.Result()
assert.NoError(t, recorderResult.Body.Close())
assert.Equal(t, http.StatusUnprocessableEntity, recorderResult.StatusCode)
// verify the graphql error code
result, err := readResultWithErrors(responseRecorder, t)
if err != nil {
assert.Error(t, err)
}
assert.Equal(t, result.Errors[0].Extensions["code"], "BAD_USER_INPUT")
})
t.Run("Non-object variables fails", func(t *testing.T) {
t.Parallel()
// the incoming request
request := httptest.NewRequest("GET", `/graphql?query={allUsers}&variables=true`, strings.NewReader(""))
// a recorder so we can check what the handler responded with
responseRecorder := httptest.NewRecorder()
// call the http hander
gateway.GraphQLHandler(responseRecorder, request)
// make sure we got an error code
result := responseRecorder.Result()
assert.NoError(t, result.Body.Close())
assert.Equal(t, http.StatusUnprocessableEntity, result.StatusCode)
})
t.Run("Object variables succeeds", func(t *testing.T) {
t.Parallel()
// the incoming request
request := httptest.NewRequest("GET", `/graphql?query={allUsers}&variables={"foo":2}`, strings.NewReader(""))
// a recorder so we can check what the handler responded with
responseRecorder := httptest.NewRecorder()
// call the http hander
gateway.GraphQLHandler(responseRecorder, request)
// make sure we got an error code
result := responseRecorder.Result()
assert.NoError(t, result.Body.Close())
assert.Equal(t, http.StatusOK, result.StatusCode)
})
t.Run("OperationName", func(t *testing.T) {
t.Parallel()
// the incoming request
request := httptest.NewRequest("GET", `/graphql?query={allusers}&operationName=Hello`, strings.NewReader(""))
// a recorder so we can check what the handler responded with
responseRecorder := httptest.NewRecorder()
// call the http hander
gateway.GraphQLHandler(responseRecorder, request)
// make sure we got an error code
result := responseRecorder.Result()
assert.NoError(t, result.Body.Close())
assert.Equal(t, http.StatusBadRequest, result.StatusCode)
})
t.Run("error marhsalling response", func(t *testing.T) {
t.Parallel()
// create gateway schema we can test against
innerGateway, err := New([]*graphql.RemoteSchema{
{Schema: schema, URL: "url1"},
}, WithExecutor(ExecutorFunc(
func(*ExecutionContext) (map[string]interface{}, error) {
return map[string]interface{}{
"foo": func() {},
}, nil
},
)))
if err != nil {
t.Error(err.Error())
return
}
// the incoming request
request := httptest.NewRequest("GET", `/graphql?query={allUsers}`, strings.NewReader(""))
// a recorder so we can check what the handler responded with
responseRecorder := httptest.NewRecorder()
// call the http hander
innerGateway.GraphQLHandler(responseRecorder, request)
// make sure we got an error code
recorderResult := responseRecorder.Result()
assert.NoError(t, recorderResult.Body.Close())
assert.Equal(t, http.StatusInternalServerError, recorderResult.StatusCode)
// verify the graphql error code
result, err := readResultWithErrors(responseRecorder, t)
if err != nil {
assert.Error(t, err)
}
assert.Equal(t, result.Errors[0].Extensions["code"], "UNKNOWN_ERROR")
})
t.Run("internal server error response", func(t *testing.T) {
t.Parallel()
// create gateway schema we can test against
innerGateway, err := New([]*graphql.RemoteSchema{
{Schema: schema, URL: "url1"},
}, WithExecutor(ExecutorFunc(
func(*ExecutionContext) (map[string]interface{}, error) {
return nil, errors.New("error string")
},
)))
if err != nil {
t.Error(err.Error())
return
}
// the incoming request
request := httptest.NewRequest("GET", `/graphql?query={allUsers}`, strings.NewReader(""))
// a recorder so we can check what the handler responded with
responseRecorder := httptest.NewRecorder()
// call the http hander
innerGateway.GraphQLHandler(responseRecorder, request)
// make sure we got an error code
recorderResult := responseRecorder.Result()
assert.NoError(t, recorderResult.Body.Close())
assert.Equal(t, http.StatusOK, recorderResult.StatusCode)
// verify the graphql error code
result, err := readResultWithErrors(responseRecorder, t)
if err != nil {
assert.Error(t, err)
}
assert.Equal(t, result.Errors[0].Extensions["code"], "INTERNAL_SERVER_ERROR")
})
}
func readResultWithErrors(responseRecorder *httptest.ResponseRecorder, t *testing.T) (*resultWithErrors, error) {
t.Helper()
recorderResult := responseRecorder.Result()
defer recorderResult.Body.Close()
body, err := io.ReadAll(recorderResult.Body)
if err != nil {
return nil, err
}
result := resultWithErrors{}
err = json.Unmarshal(body, &result)
return &result, err
}
func TestQueryPlanCacheParameters_post(t *testing.T) {
t.Parallel()
// load the schema we'll test
schema, _ := graphql.LoadSchema(`
type Query {
allUsers: [String!]!
}
`)
// the expected result
expectedResult := map[string]interface{}{
"Hello": "world",
}
// create gateway schema we can test against
gateway, err := New([]*graphql.RemoteSchema{
{Schema: schema, URL: "url1"},
}, WithExecutor(ExecutorFunc(
func(*ExecutionContext) (map[string]interface{}, error) {
return expectedResult, nil
},
)), WithAutomaticQueryPlanCache())
if err != nil {
t.Error(err)
return
}
// make a request for an unknown persisted query
request := httptest.NewRequest("POST", "/graphql", strings.NewReader(`
{
"extensions": {
"persistedQuery": {
"version": 1,
"sha256Hash": "1234"
}
}
}
`))
// a recorder so we can check what the handler responded with
responseRecorder := httptest.NewRecorder()
// call the http hander
gateway.PlaygroundHandler(responseRecorder, request)
// get the response from the handler
response := responseRecorder.Result()
// make sure we got a bad status
if !assert.Equal(t, http.StatusBadRequest, response.StatusCode) {
return
}
// the body of the response
body := struct {
Errors []struct {
Message string `json:"message"`
} `json:"errors"`
}{}
// parse the response
defer response.Body.Close()
if err := json.NewDecoder(response.Body).Decode(&body); err != nil {
t.Error(err)
return
}
// make sure that the response is what we expect
if !assert.Equal(t, "PersistedQueryNotFound", body.Errors[0].Message) {
return
}
// passing in a valid query along with the hash
request = httptest.NewRequest("POST", "/graphql", strings.NewReader(`
{
"query": "{ allUsers }",
"extensions": {
"persistedQuery": {
"version": 1,
"sha256Hash": "1234"
}
}
}
`))
// a recorder so we can check what the handler responded with
responseRecorder2 := httptest.NewRecorder()
// call the http hander
gateway.PlaygroundHandler(responseRecorder2, request)
// get the response from the handler
response2 := responseRecorder2.Result()
// make sure we got an OK status
if !assert.Equal(t, http.StatusOK, response2.StatusCode) {
return
}
// and the expected result
result := map[string]interface{}{}
defer response2.Body.Close()
if err := json.NewDecoder(response2.Body).Decode(&result); err != nil {
t.Error(err)
return
}
// the expected result
expected := map[string]interface{}{
"data": expectedResult,
"extensions": map[string]interface{}{
"persistedQuery": map[string]interface{}{
"sha265Hash": "1234",
"version": "1",
},
},
}
assert.Equal(t, expected, result)
}
func TestQueryPlanCacheParameters_get(t *testing.T) {
t.Parallel()
// load the schema we'll test
schema, _ := graphql.LoadSchema(`
type Query {
allUsers: [String!]!
}
`)
// the expected result
expectedResult := map[string]interface{}{
"Hello": "world",
}
// create gateway schema we can test against
gateway, err := New([]*graphql.RemoteSchema{
{Schema: schema, URL: "url1"},
}, WithExecutor(ExecutorFunc(
func(*ExecutionContext) (map[string]interface{}, error) {
return expectedResult, nil
},
)), WithAutomaticQueryPlanCache())
if err != nil {
t.Error(err)
return
}
// make a request for an unknown persisted query
// request := httptesot.NewRequest("POST", "/graphql?extensions={\"persistedQuery\": {\"version\": 1, \"sha256Hash\": \"1234\"}}", strings.NewReader(""))
request := &http.Request{
Method: "GET",
URL: &url.URL{
RawPath: "/graphql",
RawQuery: "extensions={\"persistedQuery\": {\"version\": 1, \"sha256Hash\": \"1234\"}}",
},
}
// a recorder so we can check what the handler responded with
responseRecorder := httptest.NewRecorder()
// call the http hander
gateway.GraphQLHandler(responseRecorder, request)
// get the response from the handler
response := responseRecorder.Result()
// make sure we got a bad status
if !assert.Equal(t, http.StatusBadRequest, response.StatusCode) {
return
}
// the body of the response
body := struct {
Errors []struct {
Message string `json:"message"`
} `json:"errors"`
}{}
// parse the response
defer response.Body.Close()
if err := json.NewDecoder(response.Body).Decode(&body); err != nil {
t.Error(err)
return
}
// make sure that the response is what we expect
if !assert.Equal(t, "PersistedQueryNotFound", body.Errors[0].Message) {
return
}
}
func TestPlaygroundHandler_postRequest(t *testing.T) {
t.Parallel()
// a planner that always returns an error
planner := &MockErrPlanner{Err: errors.New("Planning error")}
// and some schemas that the gateway wraps
schema, err := graphql.LoadSchema(`
type Query {
allUsers: [String!]!
}
`)
assert.NoError(t, err)
schemas := []*graphql.RemoteSchema{{Schema: schema, URL: "url1"}}
// create gateway schema we can test against
gateway, err := New(schemas, WithPlanner(planner))
if err != nil {
t.Error(err.Error())
return
}
// the incoming request
request := httptest.NewRequest("POST", "/graphql", strings.NewReader(`
{
"query": "{ allUsers }"
}
`))
// a recorder so we can check what the handler responded with
responseRecorder := httptest.NewRecorder()
// call the http hander
gateway.PlaygroundHandler(responseRecorder, request)
// get the response from the handler
response := responseRecorder.Result()
defer response.Body.Close()
// read the body
_, err = io.ReadAll(response.Body)
if err != nil {
t.Error(err.Error())
return
}
// make sure we got an error code
assert.Equal(t, http.StatusBadRequest, response.StatusCode)
}
func TestPlaygroundHandler_postRequestList(t *testing.T) {
t.Parallel()
// and some schemas that the gateway wraps
schema, err := graphql.LoadSchema(`
type User {
id: ID!
}
`)
if err != nil {
t.Error(err.Error())
return
}
// some fields to query
aField := &QueryField{
Name: "a",
Type: ast.NamedType("User", &ast.Position{}),
Resolver: func(ctx context.Context, arguments map[string]interface{}) (string, error) {
return "a", nil
},
}
bField := &QueryField{
Name: "b",
Type: ast.NamedType("User", &ast.Position{}),
Resolver: func(ctx context.Context, arguments map[string]interface{}) (string, error) {
return "b", nil
},
}
// instantiate the gateway
gw, err := New([]*graphql.RemoteSchema{{URL: "url1", Schema: schema}}, WithQueryFields(aField, bField))
if err != nil {
t.Error(err.Error())
return
}
// we need to send a list of two queries ({ a } and { b }) and make sure they resolve in the right order
// the incoming request
request := httptest.NewRequest("POST", "/graphql", strings.NewReader(`
[
{
"query": "{ a { id } }"
},
{
"query": "{ b { id } }"
}
]
`))
// a recorder so we can check what the handler responded with
responseRecorder := httptest.NewRecorder()
// call the http hander
gw.PlaygroundHandler(responseRecorder, request)
// get the response from the handler
response := responseRecorder.Result()
defer response.Body.Close()
// make sure we got a successful response
if !assert.Equal(t, http.StatusOK, response.StatusCode) {
return
}
// read the body
body, err := io.ReadAll(response.Body)
if err != nil {
t.Error(err.Error())
return
}
result := []map[string]interface{}{}
err = json.Unmarshal(body, &result)
if err != nil {
t.Error(err.Error())
return
}
// we should have gotten 2 responses
if !assert.Len(t, result, 2) {
return
}
// make sure there were no errors in the first query
if firstQuery := result[0]; assert.Nil(t, firstQuery["errors"]) {
// make sure it has the right id
assert.Equal(t, map[string]interface{}{"a": map[string]interface{}{"id": "a"}}, firstQuery["data"])
}
// make sure there were no errors in the second query
if secondQuery := result[1]; assert.Nil(t, secondQuery["errors"]) {
// make sure it has the right id
assert.Equal(t, map[string]interface{}{"b": map[string]interface{}{"id": "b"}}, secondQuery["data"])
}
}
func TestPlaygroundHandler_getRequest(t *testing.T) {
t.Parallel()
// a planner that always returns an error
planner := &MockErrPlanner{Err: errors.New("Planning error")}
// and some schemas that the gateway wraps
schema, err := graphql.LoadSchema(`
type Query {
allUsers: [String!]!
}
`)
assert.NoError(t, err)
schemas := []*graphql.RemoteSchema{{Schema: schema, URL: "url1"}}
// create gateway schema we can test against
gateway, err := New(schemas, WithPlanner(planner))
if err != nil {
t.Error(err.Error())
return
}
// the incoming request
request := httptest.NewRequest("GET", "/graphql", strings.NewReader(``))
// a recorder so we can check what the handler responded with
responseRecorder := httptest.NewRecorder()
// call the http hander
gateway.PlaygroundHandler(responseRecorder, request)
result := responseRecorder.Result()
_, err = html.Parse(result.Body)
defer result.Body.Close()
if err != nil {
t.Error(err.Error())
return
}
}
func TestGraphQLHandler_postWithFile(t *testing.T) {
t.Parallel()
schema, err := graphql.LoadSchema(`
scalar Upload
input FileInput {
file: Upload!
}
type Query {
file(id: String!): String
}
type Mutation {
upload(file: Upload!): String!
uploadInput(input: FileInput!): String!
}
`)
assert.NoError(t, err)
// create gateway schema we can test against
gateway, err := New([]*graphql.RemoteSchema{
{Schema: schema, URL: "url-file-upload"},
}, WithExecutor(ExecutorFunc(
func(*ExecutionContext) (map[string]interface{}, error) {
return map[string]interface{}{
"upload": "file-id",
"uploadInput": "file-id",
}, nil
},
)))
if err != nil {
t.Error(err.Error())
return
}
for _, queryTest := range []struct {
mess string
operations string
fileMap string
file []byte
}{
{
"Raw Upload Variable",
`{
"query": "mutation ($someFile: Upload!) { upload(file: $someFile) }",
"variables": { "someFile": null }
}`,
`{ "0": ["variables.someFile"] }`,
[]byte("Test file content1"),
},
{
"Input Variable",
`{
"query": "mutation ($input: FileInput!) { uploadInput(input: $input) }",
"variables": { "input": { "file": null } }
}`,
`{ "0": ["variables.input.file"] }`,
[]byte("Test file content1"),
},
} {
queryTest := queryTest // enable parallel sub-tests
t.Run(queryTest.mess, func(t *testing.T) {
t.Parallel()
request, err := createMultipartRequest(
[]byte(queryTest.operations),
[]byte(queryTest.fileMap),
queryTest.file,
)
if err != nil {
t.Error(err)
return
}
// a recorder so we can check what the handler responded with
responseRecorder := httptest.NewRecorder()
// call the http hander
gateway.GraphQLHandler(responseRecorder, request)
// make sure we got a response code (200)
result := responseRecorder.Result()
assert.NoError(t, result.Body.Close())
assert.Equal(t, http.StatusOK, result.StatusCode)
})
}
}
func TestGraphQLHandler_DeeplyNestedFileInput(t *testing.T) {
t.Parallel()
schema, err := graphql.LoadSchema(`
scalar Upload
input WrapperOne {
wrapperOne: WrapperTwo!
}
input WrapperTwo {
wrapperTwo: FileInput!
}
input FileInput {
file: Upload!
files: [Upload!]!
}
type Query {
file(id: String!): String
}
type Mutation {
uploadInputWrapper(input: WrapperOne!): String!
}
`)
assert.NoError(t, err)
// create gateway schema we can test against
gateway, err := New([]*graphql.RemoteSchema{
{Schema: schema, URL: "url-file-upload"},
}, WithExecutor(ExecutorFunc(
func(*ExecutionContext) (map[string]interface{}, error) {
return map[string]interface{}{
"uploadInputWrapper": "file-id",
}, nil
},
)))
if err != nil {
t.Error(err.Error())
return
}
for _, queryTest := range []struct {
mess string
operations string
fileMap string
file []byte
}{
{
"Raw Upload Variable",
`{
"query": "mutation ($input: WrapperOne!) { uploadInputWrapper(input: $input) }",
"variables": { "input": { "wrapperOne": { "wrapperTwo": { "file": null } } } }
}`,
`{ "0": ["variables.input.wrapperOne.wrapperTwo.file"] }`,
[]byte("Test file content1"),
},
} {
queryTest := queryTest // enable parallel sub-tests
t.Run(queryTest.mess, func(t *testing.T) {
t.Parallel()
request, err := createMultipartRequest(
[]byte(queryTest.operations),
[]byte(queryTest.fileMap),
queryTest.file,
)
if err != nil {
t.Error(err)
return
}
// a recorder so we can check what the handler responded with
responseRecorder := httptest.NewRecorder()
// call the http hander
gateway.GraphQLHandler(responseRecorder, request)
fmt.Println(responseRecorder.Body)
// make sure we got a response code (200)
result := responseRecorder.Result()
assert.NoError(t, result.Body.Close())
assert.Equal(t, http.StatusOK, result.StatusCode)
})
}
}
func TestGraphQLHandler_postWithMultipleFiles(t *testing.T) {
t.Parallel()
schema, err := graphql.LoadSchema(`
scalar Upload
input FilesInput {
files: [Upload!]!
}
type Query {
file(id: String!): String
}
type Mutation {
upload(file: Upload!): String!
uploadMulti(files: [Upload!]!): [String!]!
uploadMultiInput(input: FilesInput!): [String!]!
}
`)
assert.NoError(t, err)
// create gateway schema we can test against
gateway, err := New([]*graphql.RemoteSchema{
{Schema: schema, URL: "url-file-upload"},
}, WithExecutor(ExecutorFunc(
func(*ExecutionContext) (map[string]interface{}, error) {
return map[string]interface{}{
"upload": "file-id1",
"uploadMulti": []string{"file-id2", "file-id3"},
"uploadMultiInput": []string{"file-id1", "file-id2", "file-id3"},
}, nil
},
)))
if err != nil {
t.Error(err.Error())
return
}
for _, queryTest := range []struct {
mess string
operations string
fileMap string
files [][]byte
}{
{
"Multiple File Upload Raw Variable",
`{
"query":"mutation TestFileUpload($someFile: Upload!, $allFiles: [Upload!]!) { upload(file: $someFile) uploadMulti(files: $allFiles)}",
"variables":{"someFile":null,"allFiles":[null,null]},"operationName":"TestFileUpload"
}`,
`{"0":["variables.someFile"],"1":["variables.allFiles.0"],"2":["variables.allFiles.1"]}`,
[][]byte{
[]byte("Test file content 1"),
[]byte("Test file content 2"),
[]byte("Test file content 3"),
},
},
{
"Multiple File Upload Input Variable",
`{
"query": "mutation ($input: FilesInput!) { uploadMultiInput(input: $input) }",
"variables": { "input": { "files": [null, null, null] } }
}`,
`{"0":["variables.input.files.0"],"1":["variables.input.files.1"],"2":["variables.input.files.2"]}`,
[][]byte{
[]byte("Test file content 0"),
[]byte("Test file content 1"),
[]byte("Test file content 2"),
},
},
} {
queryTest := queryTest // enable parallel sub-tests
t.Run(queryTest.mess, func(t *testing.T) {
t.Parallel()
request, err := createMultipartRequest(
[]byte(queryTest.operations),
[]byte(queryTest.fileMap),
queryTest.files...,
)
if err != nil {
t.Error(err)
return
}
// a recorder so we can check what the handler responded with
responseRecorder := httptest.NewRecorder()
// call the http handler
gateway.GraphQLHandler(responseRecorder, request)
// make sure we got a response code (200)
result := responseRecorder.Result()
assert.NoError(t, result.Body.Close())
assert.Equal(t, http.StatusOK, result.StatusCode)
})
}
}
func TestGraphQLHandler_postBatchWithMultipleFiles(t *testing.T) {
t.Parallel()
schema, err := graphql.LoadSchema(`
scalar Upload
input FilesInput {
files: [Upload!]!
}
type Query {
file(id: String!): String
}
type Mutation {
upload(file: Upload!): String!
uploadMulti(files: [Upload!]!): [String!]!
uploadMultiInput(input: FilesInput!): [String!]!
}
`)
assert.NoError(t, err)
// create gateway schema we can test against
gateway, err := New([]*graphql.RemoteSchema{
{Schema: schema, URL: "url-file-upload"},
}, WithExecutor(ExecutorFunc(
func(*ExecutionContext) (map[string]interface{}, error) {
return map[string]interface{}{
"upload": "file-id1",
"uploadMulti": []string{"file-id2", "file-id3"},
"uploadMultiInput": []string{"file-id4", "file-id5", "file-id6"},
}, nil
},
)))
if err != nil {
t.Error(err.Error())
return
}
request, err := createMultipartRequest(
[]byte(`[
{
"query":"mutation ($someFile: Upload!) { upload(file: $someFile) }",
"variables":{"someFile":null}
},
{
"query":"mutation TestFileUpload(\n $someFile: Upload!,\n\t$allFiles: [Upload!]!\n) {\n upload(file: $someFile)\n uploadMulti(files: $allFiles)\n}",
"variables":{"someFile":null,"allFiles":[null,null]},"operationName":"TestFileUpload"
},
{
"query": "mutation ($input: FilesInput!) { uploadMultiInput(input: $input) }",
"variables": { "input": { "files": [null, null, null] } }
}
]`),
[]byte(`{"0":["0.variables.someFile"],"1":["1.variables.someFile"],"2":["1.variables.allFiles.0"],"3":["1.variables.allFiles.1"],"4":["2.variables.input.files.0"],"5":["2.variables.input.files.1"],"6":["2.variables.input.files.2"]}`),
[]byte("Test file content 0"),
[]byte("Test file content 1"),
[]byte("Test file content 2"),
[]byte("Test file content 3"),
[]byte("Test file content 4"),
[]byte("Test file content 5"),
[]byte("Test file content 6"),
)
if err != nil {
t.Error(err)
return
}
// a recorder so we can check what the handler responded with
responseRecorder := httptest.NewRecorder()
// call the http hander
gateway.GraphQLHandler(responseRecorder, request)
// make sure we got an error code
result := responseRecorder.Result()
assert.NoError(t, result.Body.Close())
assert.Equal(t, http.StatusOK, result.StatusCode)
}
func TestGraphQLHandler_postFilesWithError(t *testing.T) {
t.Parallel()
schema, err := graphql.LoadSchema(`
scalar Upload
input FileInput {
file: Upload!
}
input FilesInput {
files: [Upload!]!
}
type Query {
file(id: String!): String
}
type Mutation {
upload(file: Upload!): String!
uploadInput(input: FileInput!): String!
uploadMulti(files: [Upload!]!): [String!]!
uploadMultiInput(input: FilesInput!): [String!]!
}
`)
assert.NoError(t, err)
// create gateway schema we can test against