-
-
Notifications
You must be signed in to change notification settings - Fork 133
/
graphqlUploadExpress.test.js
232 lines (193 loc) · 6.27 KB
/
graphqlUploadExpress.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
'use strict';
const { deepStrictEqual, ok, strictEqual } = require('assert');
const express = require('express');
const FormData = require('form-data');
const createError = require('http-errors');
const fetch = require('node-fetch');
const graphqlUploadExpress = require('../../public/graphqlUploadExpress');
const processRequest = require('../../public/processRequest');
const listen = require('../listen');
module.exports = (tests) => {
tests.add(
'`graphqlUploadExpress` with a non multipart request.',
async () => {
let processRequestRan = false;
const app = express().use(
graphqlUploadExpress({
async processRequest() {
processRequestRan = true;
},
})
);
const { port, close } = await listen(app);
try {
await fetch(`http://localhost:${port}`, { method: 'POST' });
strictEqual(processRequestRan, false);
} finally {
close();
}
}
);
tests.add('`graphqlUploadExpress` with a multipart request.', async () => {
let requestBody;
const app = express()
.use(graphqlUploadExpress())
.use((request, response, next) => {
requestBody = request.body;
next();
});
const { port, close } = await listen(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', 'a', { filename: 'a.txt' });
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;
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(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', 'a', { filename: 'a.txt' });
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;
response.send = (...args) => {
requestCompleted = request.complete;
response.send = send;
response.send(...args);
};
next();
})
.use(
graphqlUploadExpress({
async processRequest(request) {
request.resume();
throw error;
},
})
)
.use((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(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', 'a', { filename: 'a.txt' });
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;
response.send = (...args) => {
requestCompleted = request.complete;
response.send = send;
response.send(...args);
};
next();
})
.use(graphqlUploadExpress())
.use(() => {
throw error;
})
.use((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(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', 'a', { filename: 'a.txt' });
await fetch(`http://localhost:${port}`, { method: 'POST', body });
deepStrictEqual(expressError, error);
ok(
requestCompleted,
'Response wasn’t delayed until the request completed.'
);
} finally {
close();
}
}
);
};