-
Notifications
You must be signed in to change notification settings - Fork 0
/
graphqlUploadExpress.test.mjs
271 lines (230 loc) · 7.45 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
271
// @ts-check
import express from "express";
import createError from "http-errors";
import { deepStrictEqual, ok, strictEqual } from "node:assert";
import { createServer } from "node:http";
import fetch, { File, FormData } from "node-fetch";
import graphqlUploadExpress from "./graphqlUploadExpress.mjs";
import processRequest from "./processRequest.mjs";
import listen from "./test/listen.mjs";
/**
* Adds `graphqlUploadExpress` tests.
* @param {import("test-director").default} tests Test director.
*/
export default (tests) => {
tests.add(
"`graphqlUploadExpress` with a non multipart request.",
async () => {
let processRequestRan = false;
const app = express().use(
graphqlUploadExpress({
/** @type {any} */
async processRequest() {
processRequestRan = true;
},
})
);
const { port, close } = await listen(createServer(app));
try {
await fetch(`http://localhost:${port}`, { method: "POST" });
strictEqual(processRequestRan, false);
} finally {
close();
}
}
);
tests.add("`graphqlUploadExpress` with a multipart request.", async () => {
/**
* @type {{
* variables: {
* file: import("./Upload.mjs").default,
* },
* } | undefined}
*/
let requestBody;
const app = express()
.use(graphqlUploadExpress())
.use((request, response, next) => {
requestBody = request.body;
next();
});
const { port, close } = await listen(createServer(app));
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(`http://localhost:${port}`, { method: "POST", body });
ok(requestBody);
ok(requestBody.variables);
ok(requestBody.variables.file);
} finally {
close();
}
});
tests.add(
"`graphqlUploadExpress` with a multipart request and option `processRequest`.",
async () => {
let processRequestRan = false;
/**
* @type {{
* variables: {
* file: import("./Upload.mjs").default,
* },
* } | undefined}
*/
let requestBody;
const app = express()
.use(
graphqlUploadExpress({
processRequest(...args) {
processRequestRan = true;
return processRequest(...args);
},
})
)
.use((request, response, next) => {
requestBody = request.body;
next();
});
const { port, close } = await listen(createServer(app));
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(`http://localhost:${port}`, { method: "POST", body });
strictEqual(processRequestRan, true);
ok(requestBody);
ok(requestBody.variables);
ok(requestBody.variables.file);
} finally {
close();
}
}
);
tests.add(
"`graphqlUploadExpress` with a multipart request and option `processRequest` throwing an exposed HTTP error.",
async () => {
let expressError;
let requestCompleted;
let responseStatusCode;
const error = createError(400, "Message.");
const app = 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(
/**
* @param {Error} error
* @param {import("express").Request} request
* @param {import("express").Response} response
* @param {import("express").NextFunction} next
*/
(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 { port, close } = await listen(createServer(app));
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(`http://localhost:${port}`, { method: "POST", body });
deepStrictEqual(expressError, error);
ok(
requestCompleted,
"Response wasn’t delayed until the request completed."
);
strictEqual(responseStatusCode, error.status);
} finally {
close();
}
}
);
tests.add(
"`graphqlUploadExpress` with a multipart request following middleware throwing an error.",
async () => {
let expressError;
let requestCompleted;
const error = new Error("Message.");
const app = 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(
/**
* @param {Error} error
* @param {import("express").Request} request
* @param {import("express").Response} response
* @param {import("express").NextFunction} next
*/
(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 { port, close } = await listen(createServer(app));
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(`http://localhost:${port}`, { method: "POST", body });
deepStrictEqual(expressError, error);
ok(
requestCompleted,
"Response wasn’t delayed until the request completed."
);
} finally {
close();
}
}
);
};