forked from nautilus/gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
internal_test.go
323 lines (279 loc) · 6.84 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
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 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)
}