Skip to content

Commit

Permalink
Add test coverage to fixRequestBody and responseInterceptor (#608)
Browse files Browse the repository at this point in the history
* test(responseInterceptor): add unit test
* test(fixRequestBody): add unit test
  • Loading branch information
leonardobazico committed May 19, 2021
1 parent a6f8e0d commit 6fd75f7
Show file tree
Hide file tree
Showing 2 changed files with 129 additions and 0 deletions.
66 changes: 66 additions & 0 deletions test/unit/fix-request-body.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
import { ClientRequest } from 'http';
import * as querystring from 'querystring';

import { fixRequestBody } from '../../src/handlers/fix-request-body';
import type { Request } from '../../src/types';

const fakeProxyRequest = () => {
const proxyRequest = new ClientRequest('http://some-host');
proxyRequest.emit = jest.fn();

return proxyRequest;
};

describe('fixRequestBody', () => {
it('should not write when body is undefined', () => {
const proxyRequest = fakeProxyRequest();

jest.spyOn(proxyRequest, 'setHeader');
jest.spyOn(proxyRequest, 'write');

fixRequestBody(proxyRequest, { body: undefined } as Request);

expect(proxyRequest.setHeader).not.toHaveBeenCalled();
expect(proxyRequest.write).not.toHaveBeenCalled();
});

it('should not write when body is empty', () => {
const proxyRequest = fakeProxyRequest();

jest.spyOn(proxyRequest, 'setHeader');
jest.spyOn(proxyRequest, 'write');

fixRequestBody(proxyRequest, { body: {} } as Request);

expect(proxyRequest.setHeader).not.toHaveBeenCalled();
expect(proxyRequest.write).not.toHaveBeenCalled();
});

it('should write when body is not empty and Content-Type is application/json', () => {
const proxyRequest = fakeProxyRequest();
proxyRequest.setHeader('content-type', 'application/json; charset=utf-8');

jest.spyOn(proxyRequest, 'setHeader');
jest.spyOn(proxyRequest, 'write');

fixRequestBody(proxyRequest, { body: { someField: 'some value' } } as Request);

const expectedBody = JSON.stringify({ someField: 'some value' });
expect(proxyRequest.setHeader).toHaveBeenCalledWith('Content-Length', expectedBody.length);
expect(proxyRequest.write).toHaveBeenCalledWith(expectedBody);
});

it('should write when body is not empty and Content-Type is application/x-www-form-urlencoded', () => {
const proxyRequest = fakeProxyRequest();
proxyRequest.setHeader('content-type', 'application/x-www-form-urlencoded');

jest.spyOn(proxyRequest, 'setHeader');
jest.spyOn(proxyRequest, 'write');

fixRequestBody(proxyRequest, { body: { someField: 'some value' } } as Request);

const expectedBody = querystring.stringify({ someField: 'some value' });
expect(proxyRequest.setHeader).toHaveBeenCalledWith('Content-Length', expectedBody.length);
expect(proxyRequest.write).toHaveBeenCalledWith(expectedBody);
});
});
63 changes: 63 additions & 0 deletions test/unit/response-interceptor.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
import { IncomingMessage, ServerResponse } from 'http';

import { responseInterceptor } from '../../src/handlers/response-interceptor';

const fakeProxyResponse = () => {
const httpIncomingMessage = new IncomingMessage(null);
httpIncomingMessage._read = () => ({});
return httpIncomingMessage;
};

const fakeResponse = () => {
const httpIncomingMessage = fakeProxyResponse();

const response = new ServerResponse(httpIncomingMessage);
response.setHeader = jest.fn();
response.write = jest.fn();
response.end = jest.fn();

return response;
};

const waitInterceptorHandler = (ms = 1): Promise<void> =>
new Promise((resolve) => setTimeout(resolve, ms));

describe('responseInterceptor', () => {
it('should write body on end proxy event', async () => {
const httpIncomingMessage = fakeProxyResponse();
const response = fakeResponse();

responseInterceptor(async () => JSON.stringify({ someField: '' }))(
httpIncomingMessage,
null,
response
);

httpIncomingMessage.emit('end');
await waitInterceptorHandler();

const expectedBody = JSON.stringify({ someField: '' });
expect(response.setHeader).toHaveBeenCalledWith('content-length', expectedBody.length);
expect(response.write).toHaveBeenCalledWith(Buffer.from(expectedBody));
expect(response.end).toHaveBeenCalledWith();
});

it('should end with error when receive a proxy error event', async () => {
const httpIncomingMessage = fakeProxyResponse();
const response = fakeResponse();

responseInterceptor(async () => JSON.stringify({ someField: '' }))(
httpIncomingMessage,
null,
response
);

httpIncomingMessage.emit('error', new Error('some error meessage'));

expect(response.setHeader).not.toHaveBeenCalled();
expect(response.write).not.toHaveBeenCalled();
expect(response.end).toHaveBeenCalledWith(
'Error fetching proxied request: some error meessage'
);
});
});

0 comments on commit 6fd75f7

Please sign in to comment.