-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathaddDirectiveResolveFunctionsToSchema.test.js
432 lines (378 loc) · 12.7 KB
/
addDirectiveResolveFunctionsToSchema.test.js
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
/* eslint-disable no-shadow */
import url from 'url';
import { makeExecutableSchema } from 'graphql-tools'
import { graphql } from 'graphql'
import { addDirectiveResolveFunctionsToSchema } from './'
const run = async (schema, query, context, variables) => {
const { data, errors } = await graphql(schema, query, null, context, variables)
if (errors && errors.length) {
/* eslint-disable no-console */
console.error(errors)
/* eslint-enable no-console */
throw new Error('Error during GraphQL request')
}
return data
}
describe('addDirectiveResolveFunctionsToSchema', () => {
describe('FIELD_DEFINITION (schema)', () => {
let schema
beforeEach(() => {
const typeDefs = /* GraphQL */ `
directive @upperCase on FIELD_DEFINITION
directive @substr(start: Int!, end: Int!) on FIELD_DEFINITION
directive @prefixWithId on FIELD_DEFINITION
directive @getContextKey(key: String!) on FIELD_DEFINITION
directive @getFieldName on FIELD_DEFINITION
type Query {
foo: String
upperCaseFoo: String @upperCase
asyncUpperCaseFoo: String @upperCase
substrFoo: String @substr(start: 1, end: 2)
substrUppercaseFoo: String @substr(start: 1, end: 2) @upperCase
book: Book
version: String @getContextKey(key: "version")
nameOfField: String @getFieldName
}
type Book {
name: String
slug: String @prefixWithId
}
`
const fooResolver = () => 'foo'
const resolvers = {
Query: {
foo: fooResolver,
upperCaseFoo: fooResolver,
asyncUpperCaseFoo: async () => fooResolver(),
substrFoo: fooResolver,
substrUppercaseFoo: fooResolver,
book() {
return { id: 1, name: 'Harry Potter', slug: 'harry-potter' }
},
},
}
const directiveResolvers = {
async upperCase(resolve) {
const value = await resolve()
return value.toUpperCase()
},
async substr(resolve, source, directiveArgs) {
const value = await resolve()
return value.substr(directiveArgs.start, directiveArgs.end)
},
async prefixWithId(resolve, source) {
const value = await resolve()
return `${source.id}-${value}`
},
getContextKey(resolve, source, directiveArgs, context) {
return context[directiveArgs.key]
},
getFieldName(resolve, source, directiveArgs, context, info) {
return info.fieldName
},
}
schema = makeExecutableSchema({ typeDefs, resolvers })
addDirectiveResolveFunctionsToSchema(schema, directiveResolvers)
})
it('should throw an error if not present in schema', () => {
expect.assertions(1)
const typeDefs = /* GraphQL */ `
type Query {
foo: String @foo
}
`
const resolvers = {
Query: {
foo: () => 'foo',
},
}
const schema = makeExecutableSchema({ typeDefs, resolvers })
try {
addDirectiveResolveFunctionsToSchema(schema, {})
} catch (error) {
expect(error.message).toBe(
'Directive @foo is undefined. Please define in schema before using.',
)
}
})
it('should throw an error if resolverMap is not an object', () => {
expect.assertions(1)
try {
addDirectiveResolveFunctionsToSchema(schema)
} catch (error) {
expect(error.message).toBe(
'Expected resolverMap to be of type object, got undefined',
)
}
})
it('should throw an error if resolverMap is an array', () => {
expect.assertions(1)
try {
addDirectiveResolveFunctionsToSchema(schema, [])
} catch (error) {
expect(error.message).toBe(
'Expected resolverMap to be of type object, got Array',
)
}
})
it('should throw an error if FIELD_DEFINITION is missing', async () => {
expect.assertions(1)
const typeDefs = /* GraphQL */ `
directive @foo on FIELD
type Query {
foo: String @foo
}
`
const resolvers = {
Query: {
foo: () => 'foo',
},
}
const schema = makeExecutableSchema({ typeDefs, resolvers })
try {
addDirectiveResolveFunctionsToSchema(schema, {})
} catch (error) {
expect(error.message).toBe(
'Directive @foo is not marked to be used on "FIELD_DEFINITION" location. Please add "directive @foo ON FIELD_DEFINITION" in schema.',
)
}
})
it('should throw an error if resolver is not defined', async () => {
expect.assertions(1)
const typeDefs = /* GraphQL */ `
directive @foo on FIELD_DEFINITION
type Query {
foo: String @foo
}
`
const resolvers = {
Query: {
foo: () => 'foo',
},
}
const schema = makeExecutableSchema({ typeDefs, resolvers })
try {
addDirectiveResolveFunctionsToSchema(schema, {})
} catch (error) {
expect(error.message).toBe(
'Directive @foo has no resolver.Please define one using createFieldExecutionResolver().',
)
}
})
it('should not throw an error if resolver is a built-in schema directive', async () => {
const typeDefs = /* GraphQL */ `
type Query {
foo: String @deprecated
}
`
const resolvers = {
Query: {
foo: () => 'foo',
},
}
const schema = makeExecutableSchema({ typeDefs, resolvers })
addDirectiveResolveFunctionsToSchema(schema, {})
const query = /* GraphQL */ `{ foo }`
expect(await run(schema, query)).toEqual({ foo: 'foo' })
})
it('should not throw an error if resolver is a built-in query directive', async () => {
const typeDefs = /* GraphQL */ `
type Query {
foo: String
}
`
const resolvers = {
Query: {
foo: () => 'foo',
},
}
const schema = makeExecutableSchema({ typeDefs, resolvers })
addDirectiveResolveFunctionsToSchema(schema, {})
const query = /* GraphQL */ `{
foo @include(if: true)
}`
expect(await run(schema, query)).toEqual({ foo: 'foo' })
})
it('should work without directive', async () => {
const query = /* GraphQL */ `{ foo }`
const data = await run(schema, query)
expect(data).toEqual({ foo: 'foo' })
})
it('should work with synchronous resolver', async () => {
const query = /* GraphQL */ `{ upperCaseFoo } `
const data = await run(schema, query)
expect(data).toEqual({ upperCaseFoo: 'FOO' })
})
it('should work with asynchronous resolver', async () => {
const query = /* GraphQL */ `{ asyncUpperCaseFoo }`
const data = await run(schema, query)
expect(data).toEqual({ asyncUpperCaseFoo: 'FOO' })
})
it('should accept directive arguments', async () => {
const query = /* GraphQL */ `{ substrFoo }`
const data = await run(schema, query)
expect(data).toEqual({ substrFoo: 'oo' })
})
it('should be accept several directives', async () => {
const query = /* GraphQL */ `{ substrUppercaseFoo }`
const data = await run(schema, query)
expect(data).toEqual({ substrUppercaseFoo: 'OO' })
})
it('should support source', async () => {
const query = /* GraphQL */ `
{
book {
name
slug
}
}
`
const data = await run(schema, query)
expect(data).toEqual({
book: { name: 'Harry Potter', slug: '1-harry-potter' },
})
})
it('should support context', async () => {
const query = /* GraphQL */ `{ version }`
const data = await run(schema, query, { version: '1.0' })
expect(data).toEqual({ version: '1.0' })
})
it('should support info', async () => {
const query = /* GraphQL */ `{ nameOfField }`
const data = await run(schema, query)
expect(data).toEqual({ nameOfField: 'nameOfField' })
})
})
describe('FIELD (schema)', () => {
let schema
beforeEach(() => {
const typeDefs = /* GraphQL */ `
directive @upperCase on FIELD
directive @substr(start: Int!, end: Int!) on FIELD
directive @prefixWithId on FIELD
directive @getContextKey(key: String!) on FIELD
directive @getFieldName on FIELD
directive @url(root: String!) on FIELD
type Query {
foo: String
asyncFoo: String
book: Book
}
type Book {
name: String
slug: String
}
`
const fooResolver = () => 'foo'
const resolvers = {
Query: {
foo: fooResolver,
asyncFoo: async () => fooResolver(),
book() {
return { id: 1, name: 'Harry Potter', slug: 'harry-potter' }
},
},
}
const directiveResolvers = {
async upperCase(resolve) {
const value = await resolve()
return value.toUpperCase()
},
async substr(resolve, source, directiveArgs) {
const value = await resolve()
return value.substr(directiveArgs.start, directiveArgs.end)
},
async prefixWithId(resolve, source) {
const value = await resolve()
return `${source.id}-${value}`
},
getContextKey(resolve, source, directiveArgs, context) {
return context[directiveArgs.key]
},
getFieldName(resolve, source, directiveArgs, context, info) {
return info.fieldName
},
async url(resolve, source, directiveArgs) {
return url.resolve(directiveArgs.root, await resolve())
},
}
schema = makeExecutableSchema({ typeDefs, resolvers })
addDirectiveResolveFunctionsToSchema(schema, directiveResolvers)
})
it('should throw an error if resolver is not defined', async () => {
const typeDefs = /* GraphQL */ `
directive @foo on FIELD
type Query {
foo: String
}
`
const resolvers = {
Query: {
foo: () => 'foo',
},
}
const schema = makeExecutableSchema({ typeDefs, resolvers })
const query = /* GraphQL */ `{ foo @foo } `
addDirectiveResolveFunctionsToSchema(schema, {})
const { errors } = await graphql(schema, query)
expect(errors.length).toBe(1)
expect(errors[0].message).toBe(
'Directive @foo has no resolver.Please define one using createFieldExecutionResolver().',
)
})
it('should work without directive', async () => {
const query = /* GraphQL */ `{ foo }`
const data = await run(schema, query)
expect(data).toEqual({ foo: 'foo' })
})
it('should work with synchronous resolver', async () => {
const query = /* GraphQL */ `{ foo @upperCase } `
const data = await run(schema, query)
expect(data).toEqual({ foo: 'FOO' })
})
it('should work with asynchronous resolver', async () => {
const query = /* GraphQL */ `{ asyncFoo @upperCase }`
const data = await run(schema, query)
expect(data).toEqual({ asyncFoo: 'FOO' })
})
it('should accept directive arguments', async () => {
const query = /* GraphQL */ `{ foo @substr(start: 1, end: 2) }`
const data = await run(schema, query)
expect(data).toEqual({ foo: 'oo' })
})
it('should be accept several directives', async () => {
const query = /* GraphQL */ `{ foo @substr(start: 1, end: 2) @upperCase }`
const data = await run(schema, query)
expect(data).toEqual({ foo: 'OO' })
})
it('should support source', async () => {
const query = /* GraphQL */ `
{
book {
name
slug @prefixWithId
}
}
`
const data = await run(schema, query)
expect(data).toEqual({
book: { name: 'Harry Potter', slug: '1-harry-potter' },
})
})
it('should support context', async () => {
const query = /* GraphQL */ `{ foo @getContextKey(key: "version") }`
const data = await run(schema, query, { version: '1.0' })
expect(data).toEqual({ foo: '1.0' })
})
it('should support info', async () => {
const query = /* GraphQL */ `{ foo @getFieldName }`
const data = await run(schema, query)
expect(data).toEqual({ foo: 'foo' })
})
it('should support query variables binding', async () => {
const query = /* GraphQL */ `query($url: String!) { foo @url(root:$url) }`
const data = await run(schema, query, null, { url: '/root/url/' })
expect(data).toEqual({ foo: '/root/url/foo' })
})
})
})