-
Notifications
You must be signed in to change notification settings - Fork 28k
/
Copy pathmock-request.ts
464 lines (387 loc) · 12 KB
/
mock-request.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
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
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
import type {
ServerResponse,
OutgoingHttpHeaders,
OutgoingHttpHeader,
IncomingMessage,
IncomingHttpHeaders,
} from 'http'
import type { Socket } from 'net'
import type { TLSSocket } from 'tls'
import Stream from 'stream'
import {
fromNodeOutgoingHttpHeaders,
toNodeOutgoingHttpHeaders,
} from '../web/utils'
interface MockedRequestOptions {
url: string
headers: IncomingHttpHeaders
method: string
readable?: Stream.Readable
socket?: Socket | null
}
export class MockedRequest extends Stream.Readable implements IncomingMessage {
public url: string
public readonly statusCode?: number | undefined
public readonly statusMessage?: string | undefined
public readonly headers: IncomingHttpHeaders
public readonly method: string
// This is hardcoded for now, but can be updated to be configurable if needed.
public readonly httpVersion = '1.0'
public readonly httpVersionMajor = 1
public readonly httpVersionMinor = 0
private bodyReadable?: Stream.Readable
// If we don't actually have a socket, we'll just use a mock one that
// always returns false for the `encrypted` property and undefined for the
// `remoteAddress` property.
public socket: Socket = new Proxy<TLSSocket>({} as TLSSocket, {
get: (_target, prop) => {
if (prop !== 'encrypted' && prop !== 'remoteAddress') {
throw new Error('Method not implemented')
}
if (prop === 'remoteAddress') return undefined
// For this mock request, always ensure we just respond with the encrypted
// set to false to ensure there's no odd leakages.
return false
},
})
constructor({
url,
headers,
method,
socket = null,
readable,
}: MockedRequestOptions) {
super()
this.url = url
this.headers = headers
this.method = method
if (readable) {
this.bodyReadable = readable
this.bodyReadable.on('end', () => this.emit('end'))
this.bodyReadable.on('close', () => this.emit('close'))
}
if (socket) {
this.socket = socket
}
}
public get headersDistinct(): NodeJS.Dict<string[]> {
const headers: NodeJS.Dict<string[]> = {}
for (const [key, value] of Object.entries(this.headers)) {
if (!value) continue
headers[key] = Array.isArray(value) ? value : [value]
}
return headers
}
public _read(size: number): void {
if (this.bodyReadable) {
return this.bodyReadable._read(size)
} else {
this.emit('end')
this.emit('close')
}
}
/**
* The `connection` property is just an alias for the `socket` property.
*
* @deprecated — since v13.0.0 - Use socket instead.
*/
public get connection(): Socket {
return this.socket
}
// The following methods are not implemented as they are not used in the
// Next.js codebase.
public get aborted(): boolean {
throw new Error('Method not implemented')
}
public get complete(): boolean {
throw new Error('Method not implemented')
}
public get trailers(): NodeJS.Dict<string> {
throw new Error('Method not implemented')
}
public get trailersDistinct(): NodeJS.Dict<string[]> {
throw new Error('Method not implemented')
}
public get rawTrailers(): string[] {
throw new Error('Method not implemented')
}
public get rawHeaders(): string[] {
throw new Error('Method not implemented.')
}
public setTimeout(): this {
throw new Error('Method not implemented.')
}
}
export interface MockedResponseOptions {
statusCode?: number
socket?: Socket | null
headers?: OutgoingHttpHeaders
resWriter?: (chunk: Uint8Array | Buffer | string) => boolean
}
export class MockedResponse extends Stream.Writable implements ServerResponse {
public statusCode: number
public statusMessage: string = ''
public finished = false
public headersSent = false
public readonly socket: Socket | null
/**
* A promise that resolves to `true` when the response has been streamed.
*
* @internal - used internally by Next.js
*/
public readonly hasStreamed: Promise<boolean>
/**
* A list of buffers that have been written to the response.
*
* @internal - used internally by Next.js
*/
public readonly buffers: Buffer[] = []
/**
* The headers object that contains the headers that were initialized on the
* response and any that were added subsequently.
*
* @internal - used internally by Next.js
*/
public readonly headers: Headers
private resWriter: MockedResponseOptions['resWriter']
public readonly headPromise: Promise<void>
private headPromiseResolve?: () => void
constructor(res: MockedResponseOptions = {}) {
super()
this.statusCode = res.statusCode ?? 200
this.socket = res.socket ?? null
this.headers = res.headers
? fromNodeOutgoingHttpHeaders(res.headers)
: new Headers()
this.headPromise = new Promise<void>((resolve) => {
this.headPromiseResolve = resolve
})
// Attach listeners for the `finish`, `end`, and `error` events to the
// `MockedResponse` instance.
this.hasStreamed = new Promise<boolean>((resolve, reject) => {
this.on('finish', () => resolve(true))
this.on('end', () => resolve(true))
this.on('error', (err) => reject(err))
}).then((val) => {
this.headPromiseResolve?.()
return val
})
if (res.resWriter) {
this.resWriter = res.resWriter
}
}
public appendHeader(name: string, value: string | string[]): this {
const values = Array.isArray(value) ? value : [value]
for (const v of values) {
this.headers.append(name, v)
}
return this
}
/**
* Returns true if the response has been sent, false otherwise.
*
* @internal - used internally by Next.js
*/
public get isSent() {
return this.finished || this.headersSent
}
/**
* The `connection` property is just an alias for the `socket` property.
*
* @deprecated — since v13.0.0 - Use socket instead.
*/
public get connection(): Socket | null {
return this.socket
}
public write(chunk: Uint8Array | Buffer | string) {
if (this.resWriter) {
return this.resWriter(chunk)
}
this.buffers.push(Buffer.isBuffer(chunk) ? chunk : Buffer.from(chunk))
return true
}
public end() {
this.finished = true
return super.end(...arguments)
}
/**
* This method is a no-op because the `MockedResponse` instance is not
* actually connected to a socket. This method is not specified on the
* interface type for `ServerResponse` but is called by Node.js.
*
* @see https://github.com/nodejs/node/pull/7949
*/
public _implicitHeader() {}
public _write(
chunk: Buffer | string,
_encoding: string,
callback: () => void
) {
this.write(chunk)
// According to Node.js documentation, the callback MUST be invoked to
// signal that the write completed successfully. If this callback is not
// invoked, the 'finish' event will not be emitted.
//
// https://nodejs.org/docs/latest-v16.x/api/stream.html#writable_writechunk-encoding-callback
callback()
}
public writeHead(
statusCode: number,
statusMessage?: string | undefined,
headers?: OutgoingHttpHeaders | OutgoingHttpHeader[] | undefined
): this
public writeHead(
statusCode: number,
headers?: OutgoingHttpHeaders | OutgoingHttpHeader[] | undefined
): this
public writeHead(
statusCode: number,
statusMessage?:
| string
| OutgoingHttpHeaders
| OutgoingHttpHeader[]
| undefined,
headers?: OutgoingHttpHeaders | OutgoingHttpHeader[] | undefined
): this {
if (!headers && typeof statusMessage !== 'string') {
headers = statusMessage
} else if (typeof statusMessage === 'string' && statusMessage.length > 0) {
this.statusMessage = statusMessage
}
if (headers) {
// When headers have been set with response.setHeader(), they will be
// merged with any headers passed to response.writeHead(), with the
// headers passed to response.writeHead() given precedence.
//
// https://nodejs.org/api/http.html#responsewriteheadstatuscode-statusmessage-headers
//
// For this reason, we need to only call `set` to ensure that this will
// overwrite any existing headers.
if (Array.isArray(headers)) {
// headers may be an Array where the keys and values are in the same list.
// It is not a list of tuples. So, the even-numbered offsets are key
// values, and the odd-numbered offsets are the associated values. The
// array is in the same format as request.rawHeaders.
for (let i = 0; i < headers.length; i += 2) {
// The header key is always a string according to the spec.
this.setHeader(headers[i] as string, headers[i + 1])
}
} else {
for (const [key, value] of Object.entries(headers)) {
// Skip undefined values
if (typeof value === 'undefined') continue
this.setHeader(key, value)
}
}
}
this.statusCode = statusCode
this.headersSent = true
this.headPromiseResolve?.()
return this
}
public hasHeader(name: string): boolean {
return this.headers.has(name)
}
public getHeader(name: string): string | undefined {
return this.headers.get(name) ?? undefined
}
public getHeaders(): OutgoingHttpHeaders {
return toNodeOutgoingHttpHeaders(this.headers)
}
public getHeaderNames(): string[] {
return Array.from(this.headers.keys())
}
public setHeader(name: string, value: OutgoingHttpHeader) {
if (Array.isArray(value)) {
// Because `set` here should override any existing values, we need to
// delete the existing values before setting the new ones via `append`.
this.headers.delete(name)
for (const v of value) {
this.headers.append(name, v)
}
} else if (typeof value === 'number') {
this.headers.set(name, value.toString())
} else {
this.headers.set(name, value)
}
return this
}
public removeHeader(name: string): void {
this.headers.delete(name)
}
public flushHeaders(): void {
// This is a no-op because we don't actually have a socket to flush the
// headers to.
}
// The following methods are not implemented as they are not used in the
// Next.js codebase.
public get strictContentLength(): boolean {
throw new Error('Method not implemented.')
}
public writeEarlyHints() {
throw new Error('Method not implemented.')
}
public get req(): IncomingMessage {
throw new Error('Method not implemented.')
}
public assignSocket() {
throw new Error('Method not implemented.')
}
public detachSocket(): void {
throw new Error('Method not implemented.')
}
public writeContinue(): void {
throw new Error('Method not implemented.')
}
public writeProcessing(): void {
throw new Error('Method not implemented.')
}
public get upgrading(): boolean {
throw new Error('Method not implemented.')
}
public get chunkedEncoding(): boolean {
throw new Error('Method not implemented.')
}
public get shouldKeepAlive(): boolean {
throw new Error('Method not implemented.')
}
public get useChunkedEncodingByDefault(): boolean {
throw new Error('Method not implemented.')
}
public get sendDate(): boolean {
throw new Error('Method not implemented.')
}
public setTimeout(): this {
throw new Error('Method not implemented.')
}
public addTrailers(): void {
throw new Error('Method not implemented.')
}
}
interface RequestResponseMockerOptions {
url: string
headers?: IncomingHttpHeaders
method?: string
bodyReadable?: Stream.Readable
resWriter?: (chunk: Uint8Array | Buffer | string) => boolean
socket?: Socket | null
}
export function createRequestResponseMocks({
url,
headers = {},
method = 'GET',
bodyReadable,
resWriter,
socket = null,
}: RequestResponseMockerOptions) {
return {
req: new MockedRequest({
url,
headers,
method,
socket,
readable: bodyReadable,
}),
res: new MockedResponse({ socket, resWriter }),
}
}