forked from nautilus/gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
internal_test.go
489 lines (430 loc) · 9.94 KB
/
internal_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
package gateway
import (
"context"
"testing"
"github.com/mitchellh/mapstructure"
"github.com/nautilus/graphql"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func schemaTestLoadQuery(query string, target interface{}, variables map[string]interface{}) error {
schema, _ := graphql.LoadSchema(`
type User {
firstName: String!
}
type Query {
"description"
allUsers: [User]
}
enum EnumValue {
"foo description"
FOO
BAR
}
input FooInput {
foo: String
}
directive @A on FIELD_DEFINITION
`)
// create gateway schema we can test against
gateway, err := New([]*graphql.RemoteSchema{
{Schema: schema, URL: "url1"},
})
if err != nil {
return err
}
reqCtx := &RequestContext{
Context: context.Background(),
Query: query,
Variables: variables,
}
plan, err := gateway.GetPlans(reqCtx)
if err != nil {
return err
}
// executing the introspection query should return a full description of the schema
response, err := gateway.Execute(reqCtx, plan)
if err != nil {
return err
}
// massage the map into the structure
decoder, err := mapstructure.NewDecoder(&mapstructure.DecoderConfig{
TagName: "json",
Result: target,
})
if err != nil {
return err
}
err = decoder.Decode(response)
if err != nil {
return err
}
return nil
}
func TestSchemaIntrospection_query(t *testing.T) {
t.Parallel()
// a place to hold the response of the query
result := &graphql.IntrospectionQueryResult{}
// a place to hold the response of the query
err := schemaTestLoadQuery(graphql.IntrospectionQuery, result, map[string]interface{}{})
if err != nil {
t.Error(err.Error())
return
}
// there are a few things we need to look for:
// Schema.queryType.name, Schema.mutationType, Schema.subscriptionType, Query.allUsers, and User.firstName
assert.Equal(t, typeNameQuery, result.Schema.QueryType.Name)
assert.Nil(t, result.Schema.MutationType)
assert.Nil(t, result.Schema.SubscriptionType)
// definitions for the types we want to investigate
var queryType graphql.IntrospectionQueryFullType
var userType graphql.IntrospectionQueryFullType
var enumType graphql.IntrospectionQueryFullType
var fooInput graphql.IntrospectionQueryFullType
for _, schemaType := range result.Schema.Types {
switch schemaType.Name {
case typeNameQuery:
queryType = schemaType
case "User":
userType = schemaType
case "EnumValue":
enumType = schemaType
case "FooInput":
fooInput = schemaType
}
}
// make sure that Query.allUsers looks as expected
var allUsersField graphql.IntrospectionQueryFullTypeField
for _, field := range queryType.Fields {
if field.Name == "allUsers" {
allUsersField = field
}
}
// make sure the type definition for the field matches expectation
assert.Equal(t, graphql.IntrospectionTypeRef{
Kind: "LIST",
OfType: &graphql.IntrospectionTypeRef{
Kind: "OBJECT",
Name: "User",
},
}, allUsersField.Type)
assert.Equal(t, "description", allUsersField.Description)
// make sure that Query.allUsers looks as expected
var firstNameField graphql.IntrospectionQueryFullTypeField
for _, field := range userType.Fields {
if field.Name == "firstName" {
firstNameField = field
}
}
// make sure the type definition for the field matches expectation
assert.Equal(t, graphql.IntrospectionTypeRef{
Kind: "NON_NULL",
OfType: &graphql.IntrospectionTypeRef{
Kind: "SCALAR",
Name: "String",
},
}, firstNameField.Type)
// make sure that the enums have the right values
assert.Equal(t, "EnumValue", enumType.Name)
assert.Equal(t, []graphql.IntrospectionQueryEnumDefinition{
{
Name: "FOO",
Description: "foo description",
IsDeprecated: false,
DeprecationReason: "",
},
{
Name: "BAR",
Description: "",
IsDeprecated: false,
DeprecationReason: "",
},
}, enumType.EnumValues)
// make sure the foo input matches exepectations
assert.Equal(t, "FooInput", fooInput.Name)
assert.Equal(t, []graphql.IntrospectionInputValue{
{
Name: "foo",
Type: graphql.IntrospectionTypeRef{
Kind: "SCALAR",
Name: "String",
},
},
}, fooInput.InputFields)
// grab the directive we've defined
var directive graphql.IntrospectionQueryDirective
for _, definition := range result.Schema.Directives {
if definition.Name == "A" {
directive = definition
}
}
assert.Equal(t, "A", directive.Name)
}
func TestSchemaIntrospection_deterministicOrder(t *testing.T) {
t.Parallel()
introspectSchema := func() graphql.IntrospectionQueryResult {
var result graphql.IntrospectionQueryResult
err := schemaTestLoadQuery(graphql.IntrospectionQuery, &result, nil)
if err != nil {
t.Fatal(err)
}
t.Log(result)
return result
}
first := introspectSchema()
const maxAttempts = 10
for i := 0; i < maxAttempts; i++ {
require.Equal(t, first, introspectSchema())
}
}
func TestSchemaIntrospection_lookUpType(t *testing.T) {
t.Parallel()
// a place to hold the response of the query
result := &struct {
Type struct {
Name string `json:"name"`
} `json:"__type"`
}{}
query := `
{
__type(name: "User") {
name
}
}
`
// a place to hold the response of the query
err := schemaTestLoadQuery(query, result, map[string]interface{}{})
if err != nil {
t.Error(err.Error())
return
}
assert.Equal(t, "User", result.Type.Name)
}
func TestSchemaIntrospection_missingType(t *testing.T) {
t.Parallel()
// a place to hold the response of the query
result := &struct {
Type *struct {
Name string `json:"name"`
} `json:"__type"`
}{}
query := `
{
__type(name: "Foo") {
name
}
}
`
// a place to hold the response of the query
err := schemaTestLoadQuery(query, result, map[string]interface{}{})
if err != nil {
t.Error(err.Error())
return
}
assert.Nil(t, result.Type)
}
func TestSchemaIntrospection_missingQueryDocument(t *testing.T) {
t.Parallel()
schema, err := graphql.LoadSchema("")
require.NoError(t, err)
gateway, err := New([]*graphql.RemoteSchema{
{Schema: schema, URL: "url1"},
})
require.NoError(t, err)
t.Run("valid query", func(t *testing.T) {
t.Parallel()
var result interface{}
err := gateway.Query(context.Background(), &graphql.QueryInput{
Query: `
{
__type(name: "Query") {
name
}
}
`,
QueryDocument: nil,
}, &result)
assert.NoError(t, err)
name := "Query"
assert.Equal(t, map[string]interface{}{
"__type": map[string]interface{}{
"name": &name,
},
}, result)
})
t.Run("invalid query", func(t *testing.T) {
t.Parallel()
var result interface{}
err := gateway.Query(context.Background(), &graphql.QueryInput{
Query: "garbage",
QueryDocument: nil,
}, &result)
assert.EqualError(t, err, "input:1: Unexpected Name \"garbage\"\n")
})
}
func TestSchema_resolveNodeInlineID(t *testing.T) {
t.Parallel()
type Result struct {
Node struct {
ID string `json:"id"`
} `json:"node"`
}
// a place to hold the response of the query
result := &Result{}
query := `
{
node(id: "my-id") {
id
}
}
`
// a place to hold the response of the query
err := schemaTestLoadQuery(query, result, map[string]interface{}{})
if err != nil {
t.Error(err.Error())
return
}
assert.Equal(t, &Result{Node: struct {
ID string `json:"id"`
}{ID: "my-id"}}, result)
}
func TestSchema_resolveNodeIDFromArg(t *testing.T) {
t.Parallel()
type Result struct {
Node struct {
ID string `json:"id"`
} `json:"node"`
}
// a place to hold the response of the query
result := &Result{}
query := `
query($id: ID!){
node(id: $id) {
id
}
}
`
// a place to hold the response of the query
err := schemaTestLoadQuery(query, result, map[string]interface{}{
"id": "my-id",
})
if err != nil {
t.Error(err.Error())
return
}
assert.Equal(t, &Result{Node: struct {
ID string `json:"id"`
}{ID: "my-id"}}, result)
}
func TestSchema_resolveNodeWrongIDType(t *testing.T) {
t.Parallel()
type Node struct {
ID *string `json:"id"`
}
type Result struct {
Node Node `json:"node"`
}
var result Result
query := `
{
node(id: 123) {
id
}
}
`
err := schemaTestLoadQuery(query, result, map[string]interface{}{})
assert.Equal(t, graphql.ErrorList{
&graphql.Error{
Message: "invalid ID type: 123",
Path: []interface{}{"node"},
},
}, err)
assert.Equal(t, Result{
Node: Node{ID: nil},
}, result)
}
func TestSchema_resolveNodeMissingIDArg(t *testing.T) {
t.Parallel()
type Node struct {
ID *string `json:"id"`
}
type Result struct {
Node Node `json:"node"`
}
var result Result
query := `
query ($id: ID!) {
node(id: $id) {
id
}
}
`
variables := map[string]interface{}{} // missing ID arg
err := schemaTestLoadQuery(query, result, variables)
assert.Equal(t, graphql.ErrorList{
&graphql.Error{
Message: "argument 'id' is required",
Path: []interface{}{"node"},
},
}, err)
assert.Equal(t, Result{
Node: Node{ID: nil},
}, result)
}
func TestSchema_resolveNodeWrongIDArgType(t *testing.T) {
t.Parallel()
type Node struct {
ID *string `json:"id"`
}
type Result struct {
Node Node `json:"node"`
}
var result Result
query := `
query ($id: ID!) {
node(id: $id) {
id
}
}
`
variables := map[string]interface{}{
"id": 123,
}
err := schemaTestLoadQuery(query, result, variables)
assert.Equal(t, graphql.ErrorList{
&graphql.Error{
Message: "invalid ID type: 123",
Path: []interface{}{"node"},
},
}, err)
assert.Equal(t, Result{
Node: Node{ID: nil},
}, result)
}
func TestSchema_resolveNodeWrongIDTypeWithAlias(t *testing.T) {
t.Parallel()
type Node struct {
ID *string `json:"id"`
}
type Result struct {
Node Node `json:"node"`
}
var result Result
query := `
{
myAlias: node(id: 123) {
id
}
}
`
err := schemaTestLoadQuery(query, result, map[string]interface{}{})
assert.Equal(t, graphql.ErrorList{
&graphql.Error{
Message: "invalid ID type: 123",
Path: []interface{}{"myAlias"},
},
}, err)
assert.Equal(t, Result{
Node: Node{ID: nil},
}, result)
}