electron/spec-main/api-net-spec.ts

1332 lines
51 KiB
TypeScript
Raw Normal View History

2020-03-20 20:28:31 +00:00
import { expect } from 'chai';
import { net, session, ClientRequest, BrowserWindow } from 'electron';
import * as http from 'http';
import * as url from 'url';
import { AddressInfo, Socket } from 'net';
import { emittedOnce } from './events-helpers';
2020-03-20 20:28:31 +00:00
const kOneKiloByte = 1024;
const kOneMegaByte = kOneKiloByte * kOneKiloByte;
2019-06-14 23:26:07 +00:00
function randomBuffer (size: number, start: number = 0, end: number = 255) {
2020-03-20 20:28:31 +00:00
const range = 1 + end - start;
const buffer = Buffer.allocUnsafe(size);
2019-06-14 23:26:07 +00:00
for (let i = 0; i < size; ++i) {
2020-03-20 20:28:31 +00:00
buffer[i] = start + Math.floor(Math.random() * range);
2019-06-14 23:26:07 +00:00
}
2020-03-20 20:28:31 +00:00
return buffer;
2019-06-14 23:26:07 +00:00
}
function randomString (length: number) {
2020-03-20 20:28:31 +00:00
const buffer = randomBuffer(length, '0'.charCodeAt(0), 'z'.charCodeAt(0));
return buffer.toString();
2019-06-14 23:26:07 +00:00
}
2020-03-20 20:28:31 +00:00
const cleanupTasks: (() => void)[] = [];
function cleanUp () {
2020-03-20 20:28:31 +00:00
cleanupTasks.forEach(t => t());
cleanupTasks.length = 0;
}
async function getResponse (urlRequest: Electron.ClientRequest) {
return new Promise<Electron.IncomingMessage>((resolve, reject) => {
2020-03-20 20:28:31 +00:00
urlRequest.on('error', reject);
urlRequest.on('abort', reject);
urlRequest.on('response', (response) => resolve(response));
urlRequest.end();
});
}
async function collectStreamBody (response: Electron.IncomingMessage | http.IncomingMessage) {
2020-03-20 20:28:31 +00:00
return (await collectStreamBodyBuffer(response)).toString();
}
function collectStreamBodyBuffer (response: Electron.IncomingMessage | http.IncomingMessage) {
return new Promise<Buffer>((resolve, reject) => {
response.on('error', reject);
2020-03-20 20:28:31 +00:00
(response as NodeJS.EventEmitter).on('aborted', reject);
const data: Buffer[] = [];
response.on('data', (chunk) => data.push(chunk));
response.on('end', (chunk?: Buffer) => {
2020-03-20 20:28:31 +00:00
if (chunk) data.push(chunk);
resolve(Buffer.concat(data));
});
});
}
function respondNTimes (fn: http.RequestListener, n: number): Promise<string> {
2019-06-14 23:26:07 +00:00
return new Promise((resolve) => {
const server = http.createServer((request, response) => {
2020-03-20 20:28:31 +00:00
fn(request, response);
2019-06-14 23:26:07 +00:00
// don't close if a redirect was returned
if ((response.statusCode < 300 || response.statusCode >= 399) && n <= 0) {
2020-03-20 20:28:31 +00:00
n--;
server.close();
}
2020-03-20 20:28:31 +00:00
});
2019-06-14 23:26:07 +00:00
server.listen(0, '127.0.0.1', () => {
2020-03-20 20:28:31 +00:00
resolve(`http://127.0.0.1:${(server.address() as AddressInfo).port}`);
});
const sockets: Socket[] = [];
server.on('connection', s => sockets.push(s));
cleanupTasks.push(() => {
2020-03-20 20:28:31 +00:00
server.close();
sockets.forEach(s => s.destroy());
});
});
2019-06-14 23:26:07 +00:00
}
function respondOnce (fn: http.RequestListener) {
2020-03-20 20:28:31 +00:00
return respondNTimes(fn, 1);
}
2020-03-20 20:28:31 +00:00
let routeFailure = false;
respondNTimes.toRoutes = (routes: Record<string, http.RequestListener>, n: number) => {
return respondNTimes((request, response) => {
if (Object.prototype.hasOwnProperty.call(routes, request.url || '')) {
(async () => {
2020-03-20 20:28:31 +00:00
await Promise.resolve(routes[request.url || ''](request, response));
})().catch((err) => {
2020-03-20 20:28:31 +00:00
routeFailure = true;
console.error('Route handler failed, this is probably why your test failed', err);
response.statusCode = 500;
response.end();
});
2019-06-14 23:26:07 +00:00
} else {
2020-03-20 20:28:31 +00:00
response.statusCode = 500;
response.end();
expect.fail(`Unexpected URL: ${request.url}`);
2019-06-14 23:26:07 +00:00
}
2020-03-20 20:28:31 +00:00
}, n);
};
respondOnce.toRoutes = (routes: Record<string, http.RequestListener>) => respondNTimes.toRoutes(routes, 1);
2019-06-14 23:26:07 +00:00
respondNTimes.toURL = (url: string, fn: http.RequestListener, n: number) => {
2020-03-20 20:28:31 +00:00
return respondNTimes.toRoutes({ [url]: fn }, n);
};
respondOnce.toURL = (url: string, fn: http.RequestListener) => respondNTimes.toURL(url, fn, 1);
2019-06-14 23:26:07 +00:00
respondNTimes.toSingleURL = (fn: http.RequestListener, n: number) => {
2020-03-20 20:28:31 +00:00
const requestUrl = '/requestUrl';
return respondNTimes.toURL(requestUrl, fn, n).then(url => `${url}${requestUrl}`);
};
respondOnce.toSingleURL = (fn: http.RequestListener) => respondNTimes.toSingleURL(fn, 1);
2019-06-14 23:26:07 +00:00
describe('net module', () => {
beforeEach(() => {
2020-03-20 20:28:31 +00:00
routeFailure = false;
});
afterEach(cleanUp);
afterEach(async function () {
2020-03-20 20:28:31 +00:00
await session.defaultSession.clearCache();
if (routeFailure && this.test) {
if (!this.test.isFailed()) {
2020-03-20 20:28:31 +00:00
throw new Error('Failing this test due an unhandled error in the respondOnce route handler, check the logs above for the actual error');
}
}
2020-03-20 20:28:31 +00:00
});
2019-06-14 23:26:07 +00:00
describe('HTTP basics', () => {
it('should be able to issue a basic GET request', async () => {
const serverUrl = await respondOnce.toSingleURL((request, response) => {
2020-03-20 20:28:31 +00:00
expect(request.method).to.equal('GET');
response.end();
});
const urlRequest = net.request(serverUrl);
const response = await getResponse(urlRequest);
expect(response.statusCode).to.equal(200);
await collectStreamBody(response);
});
2019-06-14 23:26:07 +00:00
it('should be able to issue a basic POST request', async () => {
const serverUrl = await respondOnce.toSingleURL((request, response) => {
2020-03-20 20:28:31 +00:00
expect(request.method).to.equal('POST');
response.end();
});
const urlRequest = net.request({
method: 'POST',
url: serverUrl
2020-03-20 20:28:31 +00:00
});
const response = await getResponse(urlRequest);
expect(response.statusCode).to.equal(200);
await collectStreamBody(response);
});
2019-06-14 23:26:07 +00:00
it('should fetch correct data in a GET request', async () => {
2020-03-20 20:28:31 +00:00
const expectedBodyData = 'Hello World!';
const serverUrl = await respondOnce.toSingleURL((request, response) => {
2020-03-20 20:28:31 +00:00
expect(request.method).to.equal('GET');
response.end(expectedBodyData);
});
const urlRequest = net.request(serverUrl);
const response = await getResponse(urlRequest);
expect(response.statusCode).to.equal(200);
const body = await collectStreamBody(response);
expect(body).to.equal(expectedBodyData);
});
2019-06-14 23:26:07 +00:00
it('should post the correct data in a POST request', async () => {
2020-03-20 20:28:31 +00:00
const bodyData = 'Hello World!';
const serverUrl = await respondOnce.toSingleURL(async (request, response) => {
2020-03-20 20:28:31 +00:00
const postedBodyData = await collectStreamBody(request);
expect(postedBodyData).to.equal(bodyData);
response.end();
});
const urlRequest = net.request({
method: 'POST',
url: serverUrl
2020-03-20 20:28:31 +00:00
});
urlRequest.write(bodyData);
const response = await getResponse(urlRequest);
expect(response.statusCode).to.equal(200);
});
2019-06-14 23:26:07 +00:00
it('should support chunked encoding', async () => {
const serverUrl = await respondOnce.toSingleURL((request, response) => {
2020-03-20 20:28:31 +00:00
response.statusCode = 200;
response.statusMessage = 'OK';
response.chunkedEncoding = true;
expect(request.method).to.equal('POST');
expect(request.headers['transfer-encoding']).to.equal('chunked');
expect(request.headers['content-length']).to.equal(undefined);
2019-06-14 23:26:07 +00:00
request.on('data', (chunk: Buffer) => {
2020-03-20 20:28:31 +00:00
response.write(chunk);
});
2019-06-14 23:26:07 +00:00
request.on('end', (chunk: Buffer) => {
2020-03-20 20:28:31 +00:00
response.end(chunk);
});
});
const urlRequest = net.request({
method: 'POST',
url: serverUrl
2020-03-20 20:28:31 +00:00
});
2020-03-20 20:28:31 +00:00
let chunkIndex = 0;
const chunkCount = 100;
let sent = Buffer.alloc(0);
2020-03-20 20:28:31 +00:00
urlRequest.chunkedEncoding = true;
while (chunkIndex < chunkCount) {
2020-03-20 20:28:31 +00:00
chunkIndex += 1;
const chunk = randomBuffer(kOneKiloByte);
sent = Buffer.concat([sent, chunk]);
urlRequest.write(chunk);
}
2020-03-20 20:28:31 +00:00
const response = await getResponse(urlRequest);
expect(response.statusCode).to.equal(200);
const received = await collectStreamBodyBuffer(response);
expect(sent.equals(received)).to.be.true();
expect(chunkIndex).to.be.equal(chunkCount);
});
it('should emit the login event when 401', async () => {
2020-03-20 20:28:31 +00:00
const [user, pass] = ['user', 'pass'];
const serverUrl = await respondOnce.toSingleURL((request, response) => {
if (!request.headers.authorization) {
2020-03-20 20:28:31 +00:00
return response.writeHead(401, { 'WWW-Authenticate': 'Basic realm="Foo"' }).end();
}
2020-03-20 20:28:31 +00:00
response.writeHead(200).end('ok');
});
let loginAuthInfo: Electron.AuthInfo;
const request = net.request({ method: 'GET', url: serverUrl });
request.on('login', (authInfo, cb) => {
2020-03-20 20:28:31 +00:00
loginAuthInfo = authInfo;
cb(user, pass);
});
const response = await getResponse(request);
expect(response.statusCode).to.equal(200);
expect(loginAuthInfo!.realm).to.equal('Foo');
expect(loginAuthInfo!.scheme).to.equal('basic');
});
it('should response when cancelling authentication', async () => {
const serverUrl = await respondOnce.toSingleURL((request, response) => {
if (!request.headers.authorization) {
2020-03-20 20:28:31 +00:00
response.writeHead(401, { 'WWW-Authenticate': 'Basic realm="Foo"' });
response.end('unauthenticated');
} else {
2020-03-20 20:28:31 +00:00
response.writeHead(200).end('ok');
}
2020-03-20 20:28:31 +00:00
});
const request = net.request({ method: 'GET', url: serverUrl });
request.on('login', (authInfo, cb) => {
2020-03-20 20:28:31 +00:00
cb();
});
const response = await getResponse(request);
const body = await collectStreamBody(response);
expect(body).to.equal('unauthenticated');
});
it('should share credentials with WebContents', async () => {
2020-03-20 20:28:31 +00:00
const [user, pass] = ['user', 'pass'];
const serverUrl = await respondNTimes.toSingleURL((request, response) => {
if (!request.headers.authorization) {
2020-03-20 20:28:31 +00:00
return response.writeHead(401, { 'WWW-Authenticate': 'Basic realm="Foo"' }).end();
}
2020-03-20 20:28:31 +00:00
return response.writeHead(200).end('ok');
}, 2);
const bw = new BrowserWindow({ show: false });
bw.webContents.on('login', (event, details, authInfo, cb) => {
2020-03-20 20:28:31 +00:00
event.preventDefault();
cb(user, pass);
});
await bw.loadURL(serverUrl);
bw.close();
const request = net.request({ method: 'GET', url: serverUrl });
let logInCount = 0;
request.on('login', () => {
2020-03-20 20:28:31 +00:00
logInCount++;
});
const response = await getResponse(request);
await collectStreamBody(response);
expect(logInCount).to.equal(0, 'should not receive a login event, credentials should be cached');
});
it('should share proxy credentials with WebContents', async () => {
2020-03-20 20:28:31 +00:00
const [user, pass] = ['user', 'pass'];
const proxyUrl = await respondNTimes((request, response) => {
if (!request.headers['proxy-authorization']) {
2020-03-20 20:28:31 +00:00
return response.writeHead(407, { 'Proxy-Authenticate': 'Basic realm="Foo"' }).end();
}
2020-03-20 20:28:31 +00:00
return response.writeHead(200).end('ok');
}, 2);
const customSession = session.fromPartition(`net-proxy-test-${Math.random()}`);
await customSession.setProxy({ proxyRules: proxyUrl.replace('http://', ''), proxyBypassRules: '<-loopback>' });
const bw = new BrowserWindow({ show: false, webPreferences: { session: customSession } });
bw.webContents.on('login', (event, details, authInfo, cb) => {
2020-03-20 20:28:31 +00:00
event.preventDefault();
cb(user, pass);
});
await bw.loadURL('http://127.0.0.1:9999');
bw.close();
const request = net.request({ method: 'GET', url: 'http://127.0.0.1:9999', session: customSession });
let logInCount = 0;
request.on('login', () => {
2020-03-20 20:28:31 +00:00
logInCount++;
});
const response = await getResponse(request);
const body = await collectStreamBody(response);
expect(response.statusCode).to.equal(200);
expect(body).to.equal('ok');
expect(logInCount).to.equal(0, 'should not receive a login event, credentials should be cached');
});
it('should upload body when 401', async () => {
2020-03-20 20:28:31 +00:00
const [user, pass] = ['user', 'pass'];
const serverUrl = await respondOnce.toSingleURL((request, response) => {
if (!request.headers.authorization) {
2020-03-20 20:28:31 +00:00
return response.writeHead(401, { 'WWW-Authenticate': 'Basic realm="Foo"' }).end();
}
2020-03-20 20:28:31 +00:00
response.writeHead(200);
request.on('data', (chunk) => response.write(chunk));
request.on('end', () => response.end());
});
const requestData = randomString(kOneKiloByte);
const request = net.request({ method: 'GET', url: serverUrl });
request.on('login', (authInfo, cb) => {
2020-03-20 20:28:31 +00:00
cb(user, pass);
});
request.write(requestData);
const response = await getResponse(request);
const responseData = await collectStreamBody(response);
expect(responseData).to.equal(requestData);
});
});
2019-06-14 23:26:07 +00:00
describe('ClientRequest API', () => {
it('request/response objects should emit expected events', async () => {
2020-03-20 20:28:31 +00:00
const bodyData = randomString(kOneKiloByte);
const serverUrl = await respondOnce.toSingleURL((request, response) => {
2020-03-20 20:28:31 +00:00
response.end(bodyData);
});
2020-03-20 20:28:31 +00:00
const urlRequest = net.request(serverUrl);
// request close event
2020-03-20 20:28:31 +00:00
const closePromise = emittedOnce(urlRequest, 'close');
// request finish event
2020-03-20 20:28:31 +00:00
const finishPromise = emittedOnce(urlRequest, 'close');
// request "response" event
2020-03-20 20:28:31 +00:00
const response = await getResponse(urlRequest);
response.on('error', (error: Error) => {
2020-03-20 20:28:31 +00:00
expect(error).to.be.an('Error');
});
const statusCode = response.statusCode;
expect(statusCode).to.equal(200);
// response data event
// respond end event
2020-03-20 20:28:31 +00:00
const body = await collectStreamBody(response);
expect(body).to.equal(bodyData);
urlRequest.on('error', (error) => {
2020-03-20 20:28:31 +00:00
expect(error).to.be.an('Error');
});
await Promise.all([closePromise, finishPromise]);
});
2019-06-14 23:26:07 +00:00
it('should be able to set a custom HTTP request header before first write', async () => {
2020-03-20 20:28:31 +00:00
const customHeaderName = 'Some-Custom-Header-Name';
const customHeaderValue = 'Some-Customer-Header-Value';
const serverUrl = await respondOnce.toSingleURL((request, response) => {
2020-03-20 20:28:31 +00:00
expect(request.headers[customHeaderName.toLowerCase()]).to.equal(customHeaderValue);
response.statusCode = 200;
response.statusMessage = 'OK';
response.end();
});
const urlRequest = net.request(serverUrl);
urlRequest.setHeader(customHeaderName, customHeaderValue);
expect(urlRequest.getHeader(customHeaderName)).to.equal(customHeaderValue);
expect(urlRequest.getHeader(customHeaderName.toLowerCase())).to.equal(customHeaderValue);
urlRequest.write('');
expect(urlRequest.getHeader(customHeaderName)).to.equal(customHeaderValue);
expect(urlRequest.getHeader(customHeaderName.toLowerCase())).to.equal(customHeaderValue);
const response = await getResponse(urlRequest);
expect(response.statusCode).to.equal(200);
await collectStreamBody(response);
});
2019-06-14 23:26:07 +00:00
2019-11-25 20:56:18 +00:00
it('should be able to set a non-string object as a header value', async () => {
2020-03-20 20:28:31 +00:00
const customHeaderName = 'Some-Integer-Value';
const customHeaderValue = 900;
2019-11-25 20:56:18 +00:00
const serverUrl = await respondOnce.toSingleURL((request, response) => {
2020-03-20 20:28:31 +00:00
expect(request.headers[customHeaderName.toLowerCase()]).to.equal(customHeaderValue.toString());
response.statusCode = 200;
response.statusMessage = 'OK';
response.end();
});
const urlRequest = net.request(serverUrl);
urlRequest.setHeader(customHeaderName, customHeaderValue as any);
expect(urlRequest.getHeader(customHeaderName)).to.equal(customHeaderValue);
expect(urlRequest.getHeader(customHeaderName.toLowerCase())).to.equal(customHeaderValue);
urlRequest.write('');
expect(urlRequest.getHeader(customHeaderName)).to.equal(customHeaderValue);
expect(urlRequest.getHeader(customHeaderName.toLowerCase())).to.equal(customHeaderValue);
const response = await getResponse(urlRequest);
expect(response.statusCode).to.equal(200);
await collectStreamBody(response);
});
2019-06-14 23:26:07 +00:00
it('should not be able to set a custom HTTP request header after first write', async () => {
2020-03-20 20:28:31 +00:00
const customHeaderName = 'Some-Custom-Header-Name';
const customHeaderValue = 'Some-Customer-Header-Value';
const serverUrl = await respondOnce.toSingleURL((request, response) => {
2020-03-20 20:28:31 +00:00
expect(request.headers[customHeaderName.toLowerCase()]).to.equal(undefined);
response.statusCode = 200;
response.statusMessage = 'OK';
response.end();
});
const urlRequest = net.request(serverUrl);
urlRequest.write('');
expect(() => {
2020-03-20 20:28:31 +00:00
urlRequest.setHeader(customHeaderName, customHeaderValue);
}).to.throw();
expect(urlRequest.getHeader(customHeaderName)).to.equal(undefined);
const response = await getResponse(urlRequest);
expect(response.statusCode).to.equal(200);
await collectStreamBody(response);
});
2019-06-14 23:26:07 +00:00
it('should be able to remove a custom HTTP request header before first write', async () => {
2020-03-20 20:28:31 +00:00
const customHeaderName = 'Some-Custom-Header-Name';
const customHeaderValue = 'Some-Customer-Header-Value';
const serverUrl = await respondOnce.toSingleURL((request, response) => {
2020-03-20 20:28:31 +00:00
expect(request.headers[customHeaderName.toLowerCase()]).to.equal(undefined);
response.statusCode = 200;
response.statusMessage = 'OK';
response.end();
});
const urlRequest = net.request(serverUrl);
urlRequest.setHeader(customHeaderName, customHeaderValue);
expect(urlRequest.getHeader(customHeaderName)).to.equal(customHeaderValue);
urlRequest.removeHeader(customHeaderName);
expect(urlRequest.getHeader(customHeaderName)).to.equal(undefined);
urlRequest.write('');
const response = await getResponse(urlRequest);
expect(response.statusCode).to.equal(200);
await collectStreamBody(response);
});
2019-06-14 23:26:07 +00:00
it('should not be able to remove a custom HTTP request header after first write', async () => {
2020-03-20 20:28:31 +00:00
const customHeaderName = 'Some-Custom-Header-Name';
const customHeaderValue = 'Some-Customer-Header-Value';
const serverUrl = await respondOnce.toSingleURL((request, response) => {
2020-03-20 20:28:31 +00:00
expect(request.headers[customHeaderName.toLowerCase()]).to.equal(customHeaderValue);
response.statusCode = 200;
response.statusMessage = 'OK';
response.end();
});
const urlRequest = net.request(serverUrl);
urlRequest.setHeader(customHeaderName, customHeaderValue);
expect(urlRequest.getHeader(customHeaderName)).to.equal(customHeaderValue);
urlRequest.write('');
expect(() => {
2020-03-20 20:28:31 +00:00
urlRequest.removeHeader(customHeaderName);
}).to.throw();
expect(urlRequest.getHeader(customHeaderName)).to.equal(customHeaderValue);
const response = await getResponse(urlRequest);
expect(response.statusCode).to.equal(200);
await collectStreamBody(response);
});
2019-06-14 23:26:07 +00:00
it('should be able to set cookie header line', async () => {
2020-03-20 20:28:31 +00:00
const cookieHeaderName = 'Cookie';
const cookieHeaderValue = 'test=12345';
const customSession = session.fromPartition('test-cookie-header');
const serverUrl = await respondOnce.toSingleURL((request, response) => {
2020-03-20 20:28:31 +00:00
expect(request.headers[cookieHeaderName.toLowerCase()]).to.equal(cookieHeaderValue);
response.statusCode = 200;
response.statusMessage = 'OK';
response.end();
});
await customSession.cookies.set({
url: `${serverUrl}`,
name: 'test',
value: '11111',
expirationDate: 0
2020-03-20 20:28:31 +00:00
});
const urlRequest = net.request({
method: 'GET',
url: serverUrl,
session: customSession
2020-03-20 20:28:31 +00:00
});
urlRequest.setHeader(cookieHeaderName, cookieHeaderValue);
expect(urlRequest.getHeader(cookieHeaderName)).to.equal(cookieHeaderValue);
const response = await getResponse(urlRequest);
expect(response.statusCode).to.equal(200);
await collectStreamBody(response);
});
2019-06-14 23:26:07 +00:00
it('should be able to receive cookies', async () => {
2020-03-20 20:28:31 +00:00
const cookie = ['cookie1', 'cookie2'];
const serverUrl = await respondOnce.toSingleURL((request, response) => {
2020-03-20 20:28:31 +00:00
response.statusCode = 200;
response.statusMessage = 'OK';
response.setHeader('set-cookie', cookie);
response.end();
});
const urlRequest = net.request(serverUrl);
const response = await getResponse(urlRequest);
expect(response.headers['set-cookie']).to.have.same.members(cookie);
});
2019-11-25 20:56:18 +00:00
it('should be able to abort an HTTP request before first write', async () => {
const serverUrl = await respondOnce.toSingleURL((request, response) => {
2020-03-20 20:28:31 +00:00
response.end();
expect.fail('Unexpected request event');
});
2019-06-14 23:26:07 +00:00
2020-03-20 20:28:31 +00:00
const urlRequest = net.request(serverUrl);
2019-11-25 20:56:18 +00:00
urlRequest.on('response', () => {
2020-03-20 20:28:31 +00:00
expect.fail('unexpected response event');
});
const aborted = emittedOnce(urlRequest, 'abort');
urlRequest.abort();
urlRequest.write('');
urlRequest.end();
await aborted;
});
2019-06-14 23:26:07 +00:00
it('it should be able to abort an HTTP request before request end', async () => {
2020-03-20 20:28:31 +00:00
let requestReceivedByServer = false;
let urlRequest: ClientRequest | null = null;
const serverUrl = await respondOnce.toSingleURL(() => {
2020-03-20 20:28:31 +00:00
requestReceivedByServer = true;
urlRequest!.abort();
});
let requestAbortEventEmitted = false;
2019-06-14 23:26:07 +00:00
2020-03-20 20:28:31 +00:00
urlRequest = net.request(serverUrl);
urlRequest.on('response', () => {
2020-03-20 20:28:31 +00:00
expect.fail('Unexpected response event');
});
urlRequest.on('finish', () => {
2020-03-20 20:28:31 +00:00
expect.fail('Unexpected finish event');
});
urlRequest.on('error', () => {
2020-03-20 20:28:31 +00:00
expect.fail('Unexpected error event');
});
urlRequest.on('abort', () => {
2020-03-20 20:28:31 +00:00
requestAbortEventEmitted = true;
});
2019-06-14 23:26:07 +00:00
await emittedOnce(urlRequest, 'close', () => {
2020-03-20 20:28:31 +00:00
urlRequest!.chunkedEncoding = true;
urlRequest!.write(randomString(kOneKiloByte));
});
expect(requestReceivedByServer).to.equal(true);
expect(requestAbortEventEmitted).to.equal(true);
});
2019-06-14 23:26:07 +00:00
2019-11-25 20:56:18 +00:00
it('it should be able to abort an HTTP request after request end and before response', async () => {
2020-03-20 20:28:31 +00:00
let requestReceivedByServer = false;
let urlRequest: ClientRequest | null = null;
2019-11-25 20:56:18 +00:00
const serverUrl = await respondOnce.toSingleURL((request, response) => {
2020-03-20 20:28:31 +00:00
requestReceivedByServer = true;
urlRequest!.abort();
2019-06-14 23:26:07 +00:00
process.nextTick(() => {
2020-03-20 20:28:31 +00:00
response.statusCode = 200;
response.statusMessage = 'OK';
response.end();
});
});
let requestFinishEventEmitted = false;
urlRequest = net.request(serverUrl);
2019-11-25 20:56:18 +00:00
urlRequest.on('response', () => {
2020-03-20 20:28:31 +00:00
expect.fail('Unexpected response event');
});
2019-11-25 20:56:18 +00:00
urlRequest.on('finish', () => {
2020-03-20 20:28:31 +00:00
requestFinishEventEmitted = true;
});
2019-11-25 20:56:18 +00:00
urlRequest.on('error', () => {
2020-03-20 20:28:31 +00:00
expect.fail('Unexpected error event');
});
urlRequest.end(randomString(kOneKiloByte));
await emittedOnce(urlRequest, 'abort');
expect(requestFinishEventEmitted).to.equal(true);
expect(requestReceivedByServer).to.equal(true);
});
2019-06-14 23:26:07 +00:00
2019-11-25 20:56:18 +00:00
it('it should be able to abort an HTTP request after response start', async () => {
2020-03-20 20:28:31 +00:00
let requestReceivedByServer = false;
2019-11-25 20:56:18 +00:00
const serverUrl = await respondOnce.toSingleURL((request, response) => {
2020-03-20 20:28:31 +00:00
requestReceivedByServer = true;
response.statusCode = 200;
response.statusMessage = 'OK';
response.write(randomString(kOneKiloByte));
});
let requestFinishEventEmitted = false;
let requestResponseEventEmitted = false;
let responseCloseEventEmitted = false;
const urlRequest = net.request(serverUrl);
2019-11-25 20:56:18 +00:00
urlRequest.on('response', (response) => {
2020-03-20 20:28:31 +00:00
requestResponseEventEmitted = true;
const statusCode = response.statusCode;
expect(statusCode).to.equal(200);
response.on('data', () => {});
2019-11-25 20:56:18 +00:00
response.on('end', () => {
2020-03-20 20:28:31 +00:00
expect.fail('Unexpected end event');
});
2019-11-25 20:56:18 +00:00
response.on('error', () => {
2020-03-20 20:28:31 +00:00
expect.fail('Unexpected error event');
});
2019-11-25 20:56:18 +00:00
response.on('close' as any, () => {
2020-03-20 20:28:31 +00:00
responseCloseEventEmitted = true;
});
urlRequest.abort();
});
2019-11-25 20:56:18 +00:00
urlRequest.on('finish', () => {
2020-03-20 20:28:31 +00:00
requestFinishEventEmitted = true;
});
2019-11-25 20:56:18 +00:00
urlRequest.on('error', () => {
2020-03-20 20:28:31 +00:00
expect.fail('Unexpected error event');
});
urlRequest.end(randomString(kOneKiloByte));
await emittedOnce(urlRequest, 'abort');
expect(requestFinishEventEmitted).to.be.true('request should emit "finish" event');
expect(requestReceivedByServer).to.be.true('request should be received by the server');
expect(requestResponseEventEmitted).to.be.true('"response" event should be emitted');
expect(responseCloseEventEmitted).to.be.true('response should emit "close" event');
});
2019-06-14 23:26:07 +00:00
2019-11-25 20:56:18 +00:00
it('abort event should be emitted at most once', async () => {
2020-03-20 20:28:31 +00:00
let requestReceivedByServer = false;
let urlRequest: ClientRequest | null = null;
2019-11-25 20:56:18 +00:00
const serverUrl = await respondOnce.toSingleURL(() => {
2020-03-20 20:28:31 +00:00
requestReceivedByServer = true;
urlRequest!.abort();
urlRequest!.abort();
});
let requestFinishEventEmitted = false;
let abortsEmitted = 0;
urlRequest = net.request(serverUrl);
2019-11-25 20:56:18 +00:00
urlRequest.on('response', () => {
2020-03-20 20:28:31 +00:00
expect.fail('Unexpected response event');
});
2019-11-25 20:56:18 +00:00
urlRequest.on('finish', () => {
2020-03-20 20:28:31 +00:00
requestFinishEventEmitted = true;
});
2019-11-25 20:56:18 +00:00
urlRequest.on('error', () => {
2020-03-20 20:28:31 +00:00
expect.fail('Unexpected error event');
});
2019-11-25 20:56:18 +00:00
urlRequest.on('abort', () => {
2020-03-20 20:28:31 +00:00
abortsEmitted++;
});
urlRequest.end(randomString(kOneKiloByte));
await emittedOnce(urlRequest, 'abort');
expect(requestFinishEventEmitted).to.be.true('request should emit "finish" event');
expect(requestReceivedByServer).to.be.true('request should be received by server');
expect(abortsEmitted).to.equal(1, 'request should emit exactly 1 "abort" event');
});
2019-06-14 23:26:07 +00:00
it('should allow to read response body from non-2xx response', async () => {
2020-03-20 20:28:31 +00:00
const bodyData = randomString(kOneKiloByte);
const serverUrl = await respondOnce.toSingleURL((request, response) => {
2020-03-20 20:28:31 +00:00
response.statusCode = 404;
response.end(bodyData);
});
2020-03-20 20:28:31 +00:00
const urlRequest = net.request(serverUrl);
const bodyCheckPromise = getResponse(urlRequest).then(r => {
2020-03-20 20:28:31 +00:00
expect(r.statusCode).to.equal(404);
return r;
}).then(collectStreamBody).then(receivedBodyData => {
2020-03-20 20:28:31 +00:00
expect(receivedBodyData.toString()).to.equal(bodyData);
});
const eventHandlers = Promise.all([
bodyCheckPromise,
emittedOnce(urlRequest, 'close')
2020-03-20 20:28:31 +00:00
]);
2020-03-20 20:28:31 +00:00
urlRequest.end();
2020-03-20 20:28:31 +00:00
await eventHandlers;
});
describe('webRequest', () => {
2019-06-14 23:26:07 +00:00
afterEach(() => {
2020-03-20 20:28:31 +00:00
session.defaultSession.webRequest.onBeforeRequest(null);
});
2019-06-14 23:26:07 +00:00
it('Should throw when invalid filters are passed', () => {
expect(() => {
session.defaultSession.webRequest.onBeforeRequest(
{ urls: ['*://www.googleapis.com'] },
2020-03-20 20:28:31 +00:00
(details, callback) => { callback({ cancel: false }); }
);
}).to.throw('Invalid url pattern *://www.googleapis.com: Empty path.');
expect(() => {
session.defaultSession.webRequest.onBeforeRequest(
{ urls: ['*://www.googleapis.com/', '*://blahblah.dev'] },
2020-03-20 20:28:31 +00:00
(details, callback) => { callback({ cancel: false }); }
);
}).to.throw('Invalid url pattern *://blahblah.dev: Empty path.');
});
it('Should not throw when valid filters are passed', () => {
expect(() => {
session.defaultSession.webRequest.onBeforeRequest(
{ urls: ['*://www.googleapis.com/'] },
2020-03-20 20:28:31 +00:00
(details, callback) => { callback({ cancel: false }); }
);
}).to.not.throw();
});
it('Requests should be intercepted by webRequest module', async () => {
2020-03-20 20:28:31 +00:00
const requestUrl = '/requestUrl';
const redirectUrl = '/redirectUrl';
let requestIsRedirected = false;
const serverUrl = await respondOnce.toURL(redirectUrl, (request, response) => {
2020-03-20 20:28:31 +00:00
requestIsRedirected = true;
response.end();
});
let requestIsIntercepted = false;
session.defaultSession.webRequest.onBeforeRequest(
(details, callback) => {
2019-06-14 23:26:07 +00:00
if (details.url === `${serverUrl}${requestUrl}`) {
2020-03-20 20:28:31 +00:00
requestIsIntercepted = true;
2019-06-14 23:26:07 +00:00
// Disabled due to false positive in StandardJS
// eslint-disable-next-line standard/no-callback-literal
callback({
redirectURL: `${serverUrl}${redirectUrl}`
2020-03-20 20:28:31 +00:00
});
2019-06-14 23:26:07 +00:00
} else {
callback({
cancel: false
2020-03-20 20:28:31 +00:00
});
2019-06-14 23:26:07 +00:00
}
2020-03-20 20:28:31 +00:00
});
2019-06-14 23:26:07 +00:00
2020-03-20 20:28:31 +00:00
const urlRequest = net.request(`${serverUrl}${requestUrl}`);
const response = await getResponse(urlRequest);
2020-03-20 20:28:31 +00:00
expect(response.statusCode).to.equal(200);
await collectStreamBody(response);
expect(requestIsRedirected).to.be.true('The server should receive a request to the forward URL');
expect(requestIsIntercepted).to.be.true('The request should be intercepted by the webRequest module');
});
it('should to able to create and intercept a request using a custom session object', async () => {
2020-03-20 20:28:31 +00:00
const requestUrl = '/requestUrl';
const redirectUrl = '/redirectUrl';
const customPartitionName = 'custom-partition';
let requestIsRedirected = false;
const serverUrl = await respondOnce.toURL(redirectUrl, (request, response) => {
2020-03-20 20:28:31 +00:00
requestIsRedirected = true;
response.end();
});
session.defaultSession.webRequest.onBeforeRequest(() => {
2020-03-20 20:28:31 +00:00
expect.fail('Request should not be intercepted by the default session');
});
2020-03-20 20:28:31 +00:00
const customSession = session.fromPartition(customPartitionName, { cache: false });
let requestIsIntercepted = false;
customSession.webRequest.onBeforeRequest((details, callback) => {
if (details.url === `${serverUrl}${requestUrl}`) {
2020-03-20 20:28:31 +00:00
requestIsIntercepted = true;
// Disabled due to false positive in StandardJS
// eslint-disable-next-line standard/no-callback-literal
callback({
redirectURL: `${serverUrl}${redirectUrl}`
2020-03-20 20:28:31 +00:00
});
} else {
callback({
cancel: false
2020-03-20 20:28:31 +00:00
});
}
2020-03-20 20:28:31 +00:00
});
const urlRequest = net.request({
url: `${serverUrl}${requestUrl}`,
session: customSession
2020-03-20 20:28:31 +00:00
});
const response = await getResponse(urlRequest);
expect(response.statusCode).to.equal(200);
await collectStreamBody(response);
expect(requestIsRedirected).to.be.true('The server should receive a request to the forward URL');
expect(requestIsIntercepted).to.be.true('The request should be intercepted by the webRequest module');
});
2019-06-14 23:26:07 +00:00
it('should to able to create and intercept a request using a custom partition name', async () => {
2020-03-20 20:28:31 +00:00
const requestUrl = '/requestUrl';
const redirectUrl = '/redirectUrl';
const customPartitionName = 'custom-partition';
let requestIsRedirected = false;
const serverUrl = await respondOnce.toURL(redirectUrl, (request, response) => {
2020-03-20 20:28:31 +00:00
requestIsRedirected = true;
response.end();
});
session.defaultSession.webRequest.onBeforeRequest(() => {
2020-03-20 20:28:31 +00:00
expect.fail('Request should not be intercepted by the default session');
});
2019-06-14 23:26:07 +00:00
2020-03-20 20:28:31 +00:00
const customSession = session.fromPartition(customPartitionName, { cache: false });
let requestIsIntercepted = false;
customSession.webRequest.onBeforeRequest((details, callback) => {
if (details.url === `${serverUrl}${requestUrl}`) {
2020-03-20 20:28:31 +00:00
requestIsIntercepted = true;
// Disabled due to false positive in StandardJS
// eslint-disable-next-line standard/no-callback-literal
callback({
redirectURL: `${serverUrl}${redirectUrl}`
2020-03-20 20:28:31 +00:00
});
} else {
callback({
cancel: false
2020-03-20 20:28:31 +00:00
});
}
2020-03-20 20:28:31 +00:00
});
const urlRequest = net.request({
url: `${serverUrl}${requestUrl}`,
partition: customPartitionName
2020-03-20 20:28:31 +00:00
});
const response = await getResponse(urlRequest);
expect(response.statusCode).to.equal(200);
await collectStreamBody(response);
expect(requestIsRedirected).to.be.true('The server should receive a request to the forward URL');
expect(requestIsIntercepted).to.be.true('The request should be intercepted by the webRequest module');
});
});
2019-06-14 23:26:07 +00:00
it('should throw when calling getHeader without a name', () => {
expect(() => {
2020-03-20 20:28:31 +00:00
(net.request({ url: 'https://test' }).getHeader as any)();
}).to.throw(/`name` is required for getHeader\(name\)/);
2019-06-14 23:26:07 +00:00
expect(() => {
2020-03-20 20:28:31 +00:00
net.request({ url: 'https://test' }).getHeader(null as any);
}).to.throw(/`name` is required for getHeader\(name\)/);
});
2019-06-14 23:26:07 +00:00
it('should throw when calling removeHeader without a name', () => {
expect(() => {
2020-03-20 20:28:31 +00:00
(net.request({ url: 'https://test' }).removeHeader as any)();
}).to.throw(/`name` is required for removeHeader\(name\)/);
2019-06-14 23:26:07 +00:00
expect(() => {
2020-03-20 20:28:31 +00:00
net.request({ url: 'https://test' }).removeHeader(null as any);
}).to.throw(/`name` is required for removeHeader\(name\)/);
});
2019-06-14 23:26:07 +00:00
it('should follow redirect when no redirect handler is provided', async () => {
2020-03-20 20:28:31 +00:00
const requestUrl = '/302';
const serverUrl = await respondOnce.toRoutes({
'/302': (request, response) => {
2020-03-20 20:28:31 +00:00
response.statusCode = 302;
response.setHeader('Location', '/200');
response.end();
2019-06-14 23:26:07 +00:00
},
'/200': (request, response) => {
2020-03-20 20:28:31 +00:00
response.statusCode = 200;
response.end();
2019-11-01 20:37:02 +00:00
}
2020-03-20 20:28:31 +00:00
});
const urlRequest = net.request({
url: `${serverUrl}${requestUrl}`
2020-03-20 20:28:31 +00:00
});
const response = await getResponse(urlRequest);
expect(response.statusCode).to.equal(200);
});
2019-06-14 23:26:07 +00:00
it('should follow redirect chain when no redirect handler is provided', async () => {
const serverUrl = await respondOnce.toRoutes({
2019-06-14 23:26:07 +00:00
'/redirectChain': (request, response) => {
2020-03-20 20:28:31 +00:00
response.statusCode = 302;
response.setHeader('Location', '/302');
response.end();
2019-06-14 23:26:07 +00:00
},
'/302': (request, response) => {
2020-03-20 20:28:31 +00:00
response.statusCode = 302;
response.setHeader('Location', '/200');
response.end();
2019-06-14 23:26:07 +00:00
},
'/200': (request, response) => {
2020-03-20 20:28:31 +00:00
response.statusCode = 200;
response.end();
2019-11-01 20:37:02 +00:00
}
2020-03-20 20:28:31 +00:00
});
const urlRequest = net.request({
url: `${serverUrl}/redirectChain`
2020-03-20 20:28:31 +00:00
});
const response = await getResponse(urlRequest);
expect(response.statusCode).to.equal(200);
});
2019-06-14 23:26:07 +00:00
2019-11-25 20:56:18 +00:00
it('should not follow redirect when request is canceled in redirect handler', async () => {
const serverUrl = await respondOnce.toSingleURL((request, response) => {
2020-03-20 20:28:31 +00:00
response.statusCode = 302;
response.setHeader('Location', '/200');
response.end();
});
2019-11-25 20:56:18 +00:00
const urlRequest = net.request({
url: serverUrl
2020-03-20 20:28:31 +00:00
});
urlRequest.end();
urlRequest.on('redirect', () => { urlRequest.abort(); });
urlRequest.on('error', () => {});
await emittedOnce(urlRequest, 'abort');
});
2019-06-14 23:26:07 +00:00
it('should not follow redirect when mode is error', async () => {
const serverUrl = await respondOnce.toSingleURL((request, response) => {
2020-03-20 20:28:31 +00:00
response.statusCode = 302;
response.setHeader('Location', '/200');
response.end();
});
const urlRequest = net.request({
url: serverUrl,
redirect: 'error'
2020-03-20 20:28:31 +00:00
});
urlRequest.end();
await emittedOnce(urlRequest, 'error');
});
2019-11-25 20:56:18 +00:00
it('should follow redirect when handler calls callback', async () => {
const serverUrl = await respondOnce.toRoutes({
2019-06-14 23:26:07 +00:00
'/redirectChain': (request, response) => {
2020-03-20 20:28:31 +00:00
response.statusCode = 302;
response.setHeader('Location', '/302');
response.end();
2019-06-14 23:26:07 +00:00
},
'/302': (request, response) => {
2020-03-20 20:28:31 +00:00
response.statusCode = 302;
response.setHeader('Location', '/200');
response.end();
2019-06-14 23:26:07 +00:00
},
'/200': (request, response) => {
2020-03-20 20:28:31 +00:00
response.statusCode = 200;
response.end();
2019-11-01 20:37:02 +00:00
}
2020-03-20 20:28:31 +00:00
});
const urlRequest = net.request({ url: `${serverUrl}/redirectChain`, redirect: 'manual' });
const redirects: string[] = [];
2019-11-25 20:56:18 +00:00
urlRequest.on('redirect', (status, method, url) => {
2020-03-20 20:28:31 +00:00
redirects.push(url);
urlRequest.followRedirect();
});
const response = await getResponse(urlRequest);
expect(response.statusCode).to.equal(200);
2019-11-25 20:56:18 +00:00
expect(redirects).to.deep.equal([
`${serverUrl}/302`,
2019-11-25 20:56:18 +00:00
`${serverUrl}/200`
2020-03-20 20:28:31 +00:00
]);
});
2019-06-14 23:26:07 +00:00
it('should throw if given an invalid session option', () => {
expect(() => {
net.request({
url: 'https://foo',
session: 1 as any
2020-03-20 20:28:31 +00:00
});
}).to.throw('`session` should be an instance of the Session class');
});
2019-06-14 23:26:07 +00:00
it('should throw if given an invalid partition option', () => {
expect(() => {
net.request({
url: 'https://foo',
partition: 1 as any
2020-03-20 20:28:31 +00:00
});
}).to.throw('`partition` should be a string');
});
2019-06-14 23:26:07 +00:00
it('should be able to create a request with options', async () => {
2020-03-20 20:28:31 +00:00
const customHeaderName = 'Some-Custom-Header-Name';
const customHeaderValue = 'Some-Customer-Header-Value';
const serverUrlUnparsed = await respondOnce.toURL('/', (request, response) => {
2020-03-20 20:28:31 +00:00
expect(request.method).to.equal('GET');
expect(request.headers[customHeaderName.toLowerCase()]).to.equal(customHeaderValue);
response.statusCode = 200;
response.statusMessage = 'OK';
response.end();
});
const serverUrl = url.parse(serverUrlUnparsed);
const options = {
port: serverUrl.port ? parseInt(serverUrl.port, 10) : undefined,
hostname: '127.0.0.1',
headers: { [customHeaderName]: customHeaderValue }
2020-03-20 20:28:31 +00:00
};
const urlRequest = net.request(options);
const response = await getResponse(urlRequest);
expect(response.statusCode).to.be.equal(200);
await collectStreamBody(response);
});
2019-06-14 23:26:07 +00:00
it('should be able to pipe a readable stream into a net request', async () => {
2020-03-20 20:28:31 +00:00
const bodyData = randomString(kOneMegaByte);
let netRequestReceived = false;
let netRequestEnded = false;
2019-06-14 23:26:07 +00:00
const [nodeServerUrl, netServerUrl] = await Promise.all([
2019-06-14 23:26:07 +00:00
respondOnce.toSingleURL((request, response) => response.end(bodyData)),
respondOnce.toSingleURL((request, response) => {
2020-03-20 20:28:31 +00:00
netRequestReceived = true;
let receivedBodyData = '';
2019-06-14 23:26:07 +00:00
request.on('data', (chunk) => {
2020-03-20 20:28:31 +00:00
receivedBodyData += chunk.toString();
});
2019-06-14 23:26:07 +00:00
request.on('end', (chunk: Buffer | undefined) => {
2020-03-20 20:28:31 +00:00
netRequestEnded = true;
2019-06-14 23:26:07 +00:00
if (chunk) {
2020-03-20 20:28:31 +00:00
receivedBodyData += chunk.toString();
2019-06-14 23:26:07 +00:00
}
2020-03-20 20:28:31 +00:00
expect(receivedBodyData).to.be.equal(bodyData);
response.end();
});
2019-06-14 23:26:07 +00:00
})
2020-03-20 20:28:31 +00:00
]);
const nodeRequest = http.request(nodeServerUrl);
const nodeResponse = await getResponse(nodeRequest as any) as any as http.ServerResponse;
const netRequest = net.request(netServerUrl);
const responsePromise = emittedOnce(netRequest, 'response');
// TODO(@MarshallOfSound) - FIXME with #22730
2020-03-20 20:28:31 +00:00
nodeResponse.pipe(netRequest as any);
const [netResponse] = await responsePromise;
expect(netResponse.statusCode).to.equal(200);
await collectStreamBody(netResponse);
expect(netRequestReceived).to.be.true('net request received');
expect(netRequestEnded).to.be.true('net request ended');
});
2019-06-14 23:26:07 +00:00
it('should report upload progress', async () => {
const serverUrl = await respondOnce.toSingleURL((request, response) => {
2020-03-20 20:28:31 +00:00
response.end();
});
const netRequest = net.request({ url: serverUrl, method: 'POST' });
expect(netRequest.getUploadProgress()).to.deep.equal({ active: false });
netRequest.end(Buffer.from('hello'));
const [position, total] = await emittedOnce(netRequest, 'upload-progress');
expect(netRequest.getUploadProgress()).to.deep.equal({ active: true, started: true, current: position, total });
});
2019-11-25 20:56:18 +00:00
it('should emit error event on server socket destroy', async () => {
const serverUrl = await respondOnce.toSingleURL((request) => {
2020-03-20 20:28:31 +00:00
request.socket.destroy();
});
const urlRequest = net.request(serverUrl);
urlRequest.end();
const [error] = await emittedOnce(urlRequest, 'error');
expect(error.message).to.equal('net::ERR_EMPTY_RESPONSE');
});
2019-11-25 20:56:18 +00:00
it('should emit error event on server request destroy', async () => {
const serverUrl = await respondOnce.toSingleURL((request, response) => {
2020-03-20 20:28:31 +00:00
request.destroy();
response.end();
});
const urlRequest = net.request(serverUrl);
urlRequest.end(randomBuffer(kOneMegaByte));
const [error] = await emittedOnce(urlRequest, 'error');
expect(error.message).to.be.oneOf(['net::ERR_CONNECTION_RESET', 'net::ERR_CONNECTION_ABORTED']);
});
2019-11-25 20:56:18 +00:00
it('should not emit any event after close', async () => {
const serverUrl = await respondOnce.toSingleURL((request, response) => {
2020-03-20 20:28:31 +00:00
response.end();
});
2019-11-25 20:56:18 +00:00
2020-03-20 20:28:31 +00:00
const urlRequest = net.request(serverUrl);
urlRequest.end();
2019-11-25 20:56:18 +00:00
2020-03-20 20:28:31 +00:00
await emittedOnce(urlRequest, 'close');
2019-11-25 20:56:18 +00:00
await new Promise((resolve, reject) => {
['finish', 'abort', 'close', 'error'].forEach(evName => {
urlRequest.on(evName as any, () => {
2020-03-20 20:28:31 +00:00
reject(new Error(`Unexpected ${evName} event`));
});
});
setTimeout(resolve, 50);
});
});
});
2019-06-14 23:26:07 +00:00
describe('IncomingMessage API', () => {
2019-11-25 20:56:18 +00:00
it('response object should implement the IncomingMessage API', async () => {
2020-03-20 20:28:31 +00:00
const customHeaderName = 'Some-Custom-Header-Name';
const customHeaderValue = 'Some-Customer-Header-Value';
2019-06-14 23:26:07 +00:00
2019-11-25 20:56:18 +00:00
const serverUrl = await respondOnce.toSingleURL((request, response) => {
2020-03-20 20:28:31 +00:00
response.statusCode = 200;
response.statusMessage = 'OK';
response.setHeader(customHeaderName, customHeaderValue);
response.end();
});
2019-06-14 23:26:07 +00:00
2020-03-20 20:28:31 +00:00
const urlRequest = net.request(serverUrl);
const response = await getResponse(urlRequest);
2019-06-14 23:26:07 +00:00
2020-03-20 20:28:31 +00:00
expect(response.statusCode).to.equal(200);
expect(response.statusMessage).to.equal('OK');
2019-06-14 23:26:07 +00:00
2020-03-20 20:28:31 +00:00
const headers = response.headers;
expect(headers).to.be.an('object');
const headerValue = headers[customHeaderName.toLowerCase()];
expect(headerValue).to.equal(customHeaderValue);
2019-06-14 23:26:07 +00:00
2020-03-20 20:28:31 +00:00
const httpVersion = response.httpVersion;
expect(httpVersion).to.be.a('string').and.to.have.lengthOf.at.least(1);
2019-06-14 23:26:07 +00:00
2020-03-20 20:28:31 +00:00
const httpVersionMajor = response.httpVersionMajor;
expect(httpVersionMajor).to.be.a('number').and.to.be.at.least(1);
2019-06-14 23:26:07 +00:00
2020-03-20 20:28:31 +00:00
const httpVersionMinor = response.httpVersionMinor;
expect(httpVersionMinor).to.be.a('number').and.to.be.at.least(0);
2019-11-25 20:56:18 +00:00
2020-03-20 20:28:31 +00:00
await collectStreamBody(response);
});
2019-06-14 23:26:07 +00:00
2019-11-25 20:56:18 +00:00
it('should discard duplicate headers', async () => {
2020-03-20 20:28:31 +00:00
const includedHeader = 'max-forwards';
const discardableHeader = 'Max-Forwards';
2019-06-14 23:26:07 +00:00
2020-03-20 20:28:31 +00:00
const includedHeaderValue = 'max-fwds-val';
const discardableHeaderValue = 'max-fwds-val-two';
2019-06-14 23:26:07 +00:00
2019-11-25 20:56:18 +00:00
const serverUrl = await respondOnce.toSingleURL((request, response) => {
2020-03-20 20:28:31 +00:00
response.statusCode = 200;
response.statusMessage = 'OK';
response.setHeader(discardableHeader, discardableHeaderValue);
response.setHeader(includedHeader, includedHeaderValue);
response.end();
});
const urlRequest = net.request(serverUrl);
const response = await getResponse(urlRequest);
expect(response.statusCode).to.equal(200);
expect(response.statusMessage).to.equal('OK');
const headers = response.headers;
expect(headers).to.be.an('object');
expect(headers).to.have.property(includedHeader);
expect(headers).to.not.have.property(discardableHeader);
expect(headers[includedHeader]).to.equal(includedHeaderValue);
await collectStreamBody(response);
});
2019-06-14 23:26:07 +00:00
2019-11-25 20:56:18 +00:00
it('should join repeated non-discardable value with ,', async () => {
const serverUrl = await respondOnce.toSingleURL((request, response) => {
2020-03-20 20:28:31 +00:00
response.statusCode = 200;
response.statusMessage = 'OK';
response.setHeader('referrer-policy', ['first-text', 'second-text']);
response.end();
});
const urlRequest = net.request(serverUrl);
const response = await getResponse(urlRequest);
expect(response.statusCode).to.equal(200);
expect(response.statusMessage).to.equal('OK');
const headers = response.headers;
expect(headers).to.be.an('object');
expect(headers).to.have.property('referrer-policy');
expect(headers['referrer-policy']).to.equal('first-text, second-text');
await collectStreamBody(response);
});
2019-06-14 23:26:07 +00:00
it('should be able to pipe a net response into a writable stream', async () => {
2020-03-20 20:28:31 +00:00
const bodyData = randomString(kOneKiloByte);
let nodeRequestProcessed = false;
const [netServerUrl, nodeServerUrl] = await Promise.all([
2019-06-14 23:26:07 +00:00
respondOnce.toSingleURL((request, response) => response.end(bodyData)),
respondOnce.toSingleURL(async (request, response) => {
2020-03-20 20:28:31 +00:00
const receivedBodyData = await collectStreamBody(request);
expect(receivedBodyData).to.be.equal(bodyData);
nodeRequestProcessed = true;
response.end();
2019-06-14 23:26:07 +00:00
})
2020-03-20 20:28:31 +00:00
]);
const netRequest = net.request(netServerUrl);
const netResponse = await getResponse(netRequest);
const serverUrl = url.parse(nodeServerUrl);
const nodeOptions = {
method: 'POST',
path: serverUrl.path,
port: serverUrl.port
2020-03-20 20:28:31 +00:00
};
const nodeRequest = http.request(nodeOptions);
const nodeResponsePromise = emittedOnce(nodeRequest, 'response');
// TODO(@MarshallOfSound) - FIXME with #22730
2020-03-20 20:28:31 +00:00
(netResponse as any).pipe(nodeRequest);
const [nodeResponse] = await nodeResponsePromise;
netRequest.end();
await collectStreamBody(nodeResponse);
expect(nodeRequestProcessed).to.equal(true);
});
});
2019-06-14 23:26:07 +00:00
describe('Stability and performance', () => {
it('should free unreferenced, never-started request objects without crash', (done) => {
2020-03-20 20:28:31 +00:00
net.request('https://test');
2019-06-14 23:26:07 +00:00
process.nextTick(() => {
2020-03-20 20:28:31 +00:00
const v8Util = process.electronBinding('v8_util');
v8Util.requestGarbageCollectionForTesting();
done();
});
});
2019-06-14 23:26:07 +00:00
it('should collect on-going requests without crash', async () => {
2020-03-20 20:28:31 +00:00
let finishResponse: (() => void) | null = null;
const serverUrl = await respondOnce.toSingleURL((request, response) => {
2020-03-20 20:28:31 +00:00
response.write(randomString(kOneKiloByte));
2019-06-14 23:26:07 +00:00
finishResponse = () => {
2020-03-20 20:28:31 +00:00
response.write(randomString(kOneKiloByte));
response.end();
};
});
const urlRequest = net.request(serverUrl);
const response = await getResponse(urlRequest);
process.nextTick(() => {
// Trigger a garbage collection.
2020-03-20 20:28:31 +00:00
const v8Util = process.electronBinding('v8_util');
v8Util.requestGarbageCollectionForTesting();
finishResponse!();
});
await collectStreamBody(response);
});
2019-06-14 23:26:07 +00:00
it('should collect unreferenced, ended requests without crash', async () => {
const serverUrl = await respondOnce.toSingleURL((request, response) => {
2020-03-20 20:28:31 +00:00
response.end();
});
const urlRequest = net.request(serverUrl);
process.nextTick(() => {
2020-03-20 20:28:31 +00:00
const v8Util = process.electronBinding('v8_util');
v8Util.requestGarbageCollectionForTesting();
});
const response = await getResponse(urlRequest);
await collectStreamBody(response);
});
it('should finish sending data when urlRequest is unreferenced', async () => {
const serverUrl = await respondOnce.toSingleURL(async (request, response) => {
2020-03-20 20:28:31 +00:00
const received = await collectStreamBodyBuffer(request);
expect(received.length).to.equal(kOneMegaByte);
response.end();
});
const urlRequest = net.request(serverUrl);
urlRequest.on('close', () => {
process.nextTick(() => {
2020-03-20 20:28:31 +00:00
const v8Util = process.electronBinding('v8_util');
v8Util.requestGarbageCollectionForTesting();
});
});
urlRequest.write(randomBuffer(kOneMegaByte));
const response = await getResponse(urlRequest);
await collectStreamBody(response);
});
it('should finish sending data when urlRequest is unreferenced for chunked encoding', async () => {
const serverUrl = await respondOnce.toSingleURL(async (request, response) => {
2020-03-20 20:28:31 +00:00
const received = await collectStreamBodyBuffer(request);
response.end();
expect(received.length).to.equal(kOneMegaByte);
});
const urlRequest = net.request(serverUrl);
urlRequest.chunkedEncoding = true;
urlRequest.write(randomBuffer(kOneMegaByte));
const response = await getResponse(urlRequest);
await collectStreamBody(response);
process.nextTick(() => {
2020-03-20 20:28:31 +00:00
const v8Util = process.electronBinding('v8_util');
v8Util.requestGarbageCollectionForTesting();
});
});
it('should finish sending data when urlRequest is unreferenced before close event for chunked encoding', async () => {
const serverUrl = await respondOnce.toSingleURL(async (request, response) => {
2020-03-20 20:28:31 +00:00
const received = await collectStreamBodyBuffer(request);
response.end();
expect(received.length).to.equal(kOneMegaByte);
});
const urlRequest = net.request(serverUrl);
urlRequest.chunkedEncoding = true;
urlRequest.write(randomBuffer(kOneMegaByte));
const v8Util = process.electronBinding('v8_util');
v8Util.requestGarbageCollectionForTesting();
await collectStreamBody(await getResponse(urlRequest));
});
2019-11-25 20:56:18 +00:00
it('should finish sending data when urlRequest is unreferenced', async () => {
const serverUrl = await respondOnce.toSingleURL(async (request, response) => {
2020-03-20 20:28:31 +00:00
const received = await collectStreamBodyBuffer(request);
response.end();
expect(received.length).to.equal(kOneMegaByte);
});
const urlRequest = net.request(serverUrl);
urlRequest.on('close', () => {
process.nextTick(() => {
2020-03-20 20:28:31 +00:00
const v8Util = process.electronBinding('v8_util');
v8Util.requestGarbageCollectionForTesting();
});
});
urlRequest.write(randomBuffer(kOneMegaByte));
await collectStreamBody(await getResponse(urlRequest));
});
2019-11-25 20:56:18 +00:00
it('should finish sending data when urlRequest is unreferenced for chunked encoding', async () => {
const serverUrl = await respondOnce.toSingleURL(async (request, response) => {
2020-03-20 20:28:31 +00:00
const received = await collectStreamBodyBuffer(request);
response.end();
expect(received.length).to.equal(kOneMegaByte);
});
const urlRequest = net.request(serverUrl);
urlRequest.on('close', () => {
process.nextTick(() => {
2020-03-20 20:28:31 +00:00
const v8Util = process.electronBinding('v8_util');
v8Util.requestGarbageCollectionForTesting();
});
});
urlRequest.chunkedEncoding = true;
urlRequest.write(randomBuffer(kOneMegaByte));
await collectStreamBody(await getResponse(urlRequest));
});
});
});