-
-
Notifications
You must be signed in to change notification settings - Fork 133
/
graphqlUploadExpress.test.mjs
270 lines (228 loc) · 7.12 KB
/
graphqlUploadExpress.test.mjs
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
// @ts-check
/**
* @import { ErrorRequestHandler } from "express"
* @import Upload from "./Upload.mjs"
*/
import "./test/polyfillFile.mjs";
import { deepStrictEqual, ok, strictEqual } from "node:assert";
import { createServer } from "node:http";
import { describe, it } from "node:test";
import { listen } from "async-listen";
import express from "express";
import createError from "http-errors";
import graphqlUploadExpress from "./graphqlUploadExpress.mjs";
import processRequest from "./processRequest.mjs";
describe(
"Function `graphqlUploadExpress`.",
{
concurrency: true,
},
() => {
it("Non multipart request.", async () => {
let processRequestRan = false;
const server = createServer(
express().use(
graphqlUploadExpress({
/** @type {any} */
async processRequest() {
processRequestRan = true;
},
}),
),
);
const url = await listen(server);
try {
await fetch(url, { method: "POST" });
strictEqual(processRequestRan, false);
} finally {
server.close();
}
});
it("Multipart request.", async () => {
/**
* @type {{
* variables: {
* file: Upload,
* },
* } | undefined}
*/
let requestBody;
const server = createServer(
express()
.use(graphqlUploadExpress())
.use((request, _response, next) => {
requestBody = request.body;
next();
}),
);
const url = await listen(server);
try {
const body = new FormData();
body.append(
"operations",
JSON.stringify({ variables: { file: null } }),
);
body.append("map", JSON.stringify({ 1: ["variables.file"] }));
body.append("1", new File(["a"], "a.txt", { type: "text/plain" }));
await fetch(url, { method: "POST", body });
ok(requestBody);
ok(requestBody.variables);
ok(requestBody.variables.file);
} finally {
server.close();
}
});
it("Multipart request and option `processRequest`.", async () => {
let processRequestRan = false;
/**
* @type {{
* variables: {
* file: Upload,
* },
* } | undefined}
*/
let requestBody;
const server = createServer(
express()
.use(
graphqlUploadExpress({
processRequest(...args) {
processRequestRan = true;
return processRequest(...args);
},
}),
)
.use((request, _response, next) => {
requestBody = request.body;
next();
}),
);
const url = await listen(server);
try {
const body = new FormData();
body.append(
"operations",
JSON.stringify({ variables: { file: null } }),
);
body.append("map", JSON.stringify({ 1: ["variables.file"] }));
body.append("1", new File(["a"], "a.txt", { type: "text/plain" }));
await fetch(url, { method: "POST", body });
strictEqual(processRequestRan, true);
ok(requestBody);
ok(requestBody.variables);
ok(requestBody.variables.file);
} finally {
server.close();
}
});
it("Multipart request and option `processRequest` throwing an exposed HTTP error.", async () => {
let expressError;
let requestCompleted;
let responseStatusCode;
const error = createError(400, "Message.");
const server = createServer(
express()
.use((request, response, next) => {
const { send } = response;
// @ts-ignore Todo: Find a less hacky way.
response.send = (...args) => {
requestCompleted = request.complete;
response.send = send;
response.send(...args);
};
next();
})
.use(
graphqlUploadExpress({
async processRequest(request) {
request.resume();
throw error;
},
}),
)
.use(
/** @type {ErrorRequestHandler} */
(error, _request, response, next) => {
expressError = error;
responseStatusCode = response.statusCode;
// Sending a response here prevents the default Express error
// handler from running, which would undesirably (in this case)
// display the error in the console.
if (response.headersSent) next(error);
else response.send();
},
),
);
const url = await listen(server);
try {
const body = new FormData();
body.append(
"operations",
JSON.stringify({ variables: { file: null } }),
);
body.append("map", JSON.stringify({ 1: ["variables.file"] }));
body.append("1", new File(["a"], "a.txt", { type: "text/plain" }));
await fetch(url, { method: "POST", body });
deepStrictEqual(expressError, error);
ok(
requestCompleted,
"Response wasn’t delayed until the request completed.",
);
strictEqual(responseStatusCode, error.status);
} finally {
server.close();
}
});
it("Multipart request following middleware throwing an error.", async () => {
let expressError;
let requestCompleted;
const error = new Error("Message.");
const server = createServer(
express()
.use((request, response, next) => {
const { send } = response;
// @ts-ignore Todo: Find a less hacky way.
response.send = (...args) => {
requestCompleted = request.complete;
response.send = send;
response.send(...args);
};
next();
})
.use(graphqlUploadExpress())
.use(() => {
throw error;
})
.use(
/** @type {ErrorRequestHandler} */
(error, _request, response, next) => {
expressError = error;
// Sending a response here prevents the default Express error
// handler from running, which would undesirably (in this case)
// display the error in the console.
if (response.headersSent) next(error);
else response.send();
},
),
);
const url = await listen(server);
try {
const body = new FormData();
body.append(
"operations",
JSON.stringify({ variables: { file: null } }),
);
body.append("map", JSON.stringify({ 1: ["variables.file"] }));
body.append("1", new File(["a"], "a.txt", { type: "text/plain" }));
await fetch(url, { method: "POST", body });
deepStrictEqual(expressError, error);
ok(
requestCompleted,
"Response wasn’t delayed until the request completed.",
);
} finally {
server.close();
}
});
},
);