-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
mod_test.ts
265 lines (217 loc) · 7.39 KB
/
mod_test.ts
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
import { makeFetch } from 'jsr:@deno-libs/[email protected]'
import { describe, it } from 'jsr:@std/[email protected]/bdd'
import { buildSchema } from 'npm:[email protected]'
import { GraphQLHTTP } from './mod.ts'
const schema = buildSchema(`
type Query {
hello: String
}
`)
const rootValue = {
hello: () => 'Hello World!',
}
const app = GraphQLHTTP({ schema, rootValue })
describe('GraphQLHTTP({ schema, rootValue })', () => {
it('should send 400 on malformed request query', async () => {
const fetch = makeFetch(app)
const res = await fetch('/', {
headers: { 'Content-Type': 'application/json' },
})
res.expectBody({
'errors': [{ 'message': 'Missing query' }],
})
res.expectStatus(400)
})
it('should send unsupported media type on empty request body', async () => {
const fetch = makeFetch(app)
const res = await fetch('/', {
method: 'POST',
})
res.expectStatus(415)
})
it('should send resolved POST GraphQL query', async () => {
const fetch = makeFetch(app)
const res = await fetch('/', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
query: '\n{\n hello\n}',
}),
})
res.expectBody({ data: { hello: 'Hello World!' } })
res.expectStatus(200)
})
it('should send resolved GET GraphQL query', async () => {
const fetch = makeFetch(app)
const res = await fetch('/?query={hello}')
res.expectBody({ data: { hello: 'Hello World!' } })
res.expectStatus(200)
})
it('should send resolved GET GraphQL query when Accept is application/json', async () => {
const fetch = makeFetch(app)
const res = await fetch('/?query={hello}', {
headers: { Accept: 'application/json' },
})
res.expectBody({ data: { hello: 'Hello World!' } })
res.expectStatus(200)
res.expectHeader('Content-Type', 'application/json; charset=utf-8')
})
it('should send resolved GET GraphQL query when Accept is */*', async () => {
const fetch = makeFetch(app)
const res = await fetch('/?query={hello}', {
headers: { Accept: '*/*' },
})
res.expectBody({ data: { hello: 'Hello World!' } })
res.expectStatus(200)
res.expectHeader('Content-Type', 'application/json; charset=utf-8')
})
it('should send 406 not acceptable when Accept is other (text/html)', async () => {
const fetch = makeFetch(app)
const res = await fetch('/?query={hello}', {
headers: { Accept: 'text/html' },
})
res.expectStatus(406)
res.expectBody('Not Acceptable')
})
it('should send 406 not acceptable when Accept is other (text/css)', async () => {
const fetch = makeFetch(app)
const res = await fetch('/?query={hello}', {
headers: { Accept: 'text/css' },
})
res.expectStatus(406)
res.expectBody('Not Acceptable')
})
describe('graphiql', () => {
it('should allow query GET requests when set to false', async () => {
const app = GraphQLHTTP({ graphiql: false, schema, rootValue })
const fetch = makeFetch(app)
const res = await fetch('/?query={hello}')
res.expectBody({ data: { hello: 'Hello World!' } })
res.expectStatus(200)
})
it('should allow query GET requests when set to true', async () => {
const app = GraphQLHTTP({ graphiql: true, schema, rootValue })
const fetch = makeFetch(app)
const res = await fetch('/?query={hello}')
res.expectBody({ data: { hello: 'Hello World!' } })
res.expectStatus(200)
})
it('should send 406 when Accept is only text/html when set to false', async () => {
const app = GraphQLHTTP({ graphiql: false, schema, rootValue })
const fetch = makeFetch(app)
const res = await fetch('/', {
headers: { Accept: 'text/html' },
})
res.expectStatus(406)
res.expectBody('Not Acceptable')
})
it('should render a playground when Accept does include text/html when set to true', async () => {
const app = GraphQLHTTP({ graphiql: true, schema, rootValue })
const fetch = makeFetch(app)
const res = await fetch('/?query={hello}', {
headers: { Accept: 'text/html;*/*' },
})
res.expectStatus(200)
res.expectHeader('Content-Type', 'text/html')
})
it('should render a playground if graphiql is set to true', async () => {
const app = GraphQLHTTP({ graphiql: true, schema, rootValue })
const fetch = makeFetch(app)
const res = await fetch('/', {
headers: { Accept: 'text/html' },
})
res.expectStatus(200)
res.expectHeader('Content-Type', 'text/html')
})
describe('playgroundOptions', () => {
it('supports custom favicon', async () => {
const app = GraphQLHTTP({
graphiql: true,
schema,
rootValue,
playgroundOptions: {
faviconUrl: 'https://github.com/favicon.ico',
},
})
const fetch = makeFetch(app)
const res = await fetch('/', {
headers: { Accept: 'text/html' },
})
res.expectStatus(200)
res.expectHeader('Content-Type', 'text/html')
res.expectBody(
new RegExp(
'<link rel="shortcut icon" href="https://github.com/favicon.ico" />',
),
)
})
it('supports custom title', async () => {
const app = GraphQLHTTP({
graphiql: true,
schema,
rootValue,
playgroundOptions: {
title: 'Hello gql!',
},
})
const fetch = makeFetch(app)
const res = await fetch('/', {
headers: { Accept: 'text/html' },
})
res.expectStatus(200)
res.expectHeader('Content-Type', 'text/html')
res.expectBody(new RegExp('<title>Hello gql!</title>'))
})
it('adds React CDN links if env is React', async () => {
const app = GraphQLHTTP({
graphiql: true,
schema,
rootValue,
playgroundOptions: {
cdnUrl: 'https://unpkg.com',
},
})
const fetch = makeFetch(app)
const res = await fetch('/', {
headers: { Accept: 'text/html' },
})
res.expectStatus(200)
res.expectHeader('Content-Type', 'text/html')
res.expectBody(new RegExp('unpkg.com'))
})
})
})
describe('headers', () => {
it('should pass custom headers to response', async () => {
const app = GraphQLHTTP({ schema, rootValue, headers: { Key: 'Value' } })
const fetch = makeFetch(app)
const res = await fetch('/', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
query: '\n{\n hello\n}',
variables: {},
operationName: null,
}),
})
res.expectBody({ data: { hello: 'Hello World!' } })
res.expectStatus(200)
res.expectHeader('Key', 'Value')
})
it('does not error with empty header object', async () => {
const app = GraphQLHTTP({ schema, rootValue, headers: {} })
const fetch = makeFetch(app)
const res = await fetch('/', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
query: '\n{\n hello\n}',
variables: {},
operationName: null,
}),
})
res.expectBody({ data: { hello: 'Hello World!' } })
res.expectStatus(200)
})
})
})