@practica/create-node-app
Version:
Create Node.js app that is packed with best practices AND strive for simplicity
78 lines (67 loc) • 2.27 kB
text/typescript
import axios from 'axios';
import sinon from 'sinon';
import nock from 'nock';
import {
startWebServer,
stopWebServer,
} from '../entry-points-fastify/api/server';
import * as testHelpers from './test-helpers';
// Configuring file-level HTTP client with base URL will allow
// all the tests to approach with a shortened syntax
let axiosAPIClient;
beforeAll(async () => {
process.env.JWT_TOKEN_SECRET = testHelpers.exampleSecret;
// ️️️✅ Best Practice: Place the backend under test within the same process
const apiConnection = await startWebServer();
const axiosConfig = {
baseURL: `http://127.0.0.1:${apiConnection.port}`,
validateStatus: () => true, // Don't throw HTTP exceptions. Delegate to the tests to decide which error is acceptable
headers: {
// ️️️✅ Best Practice: Test like production, include real token to stretch the real authentication mechanism
authorization: testHelpers.signValidTokenWithDefaultUser(),
},
};
axiosAPIClient = axios.create(axiosConfig);
// ️️️✅ Best Practice: Ensure that this component is isolated by preventing unknown calls
nock.disableNetConnect();
nock.enableNetConnect('127.0.0.1');
});
beforeEach(() => {
// ️️️✅ Best Practice: Start each test with a clean slate
nock.cleanAll();
sinon.restore();
nock('http://localhost/user/').get(`/1`).reply(200, {
id: 1,
name: 'John',
terms: 45,
});
});
afterAll(async () => {
nock.enableNetConnect();
stopWebServer();
});
describe('/api', () => {
describe('DELETE /order', () => {
test('When deleting an existing order, Then it should NOT be retrievable', async () => {
// Arrange
const orderToDelete = {
userId: 1,
productId: 2,
countryId: 1,
deliveryAddress: '123 Main St, New York, NY 10001',
paymentTermsInDays: 30,
};
const deletedOrderId = (
await axiosAPIClient.post('/order', orderToDelete)
).data.id;
// Act
await axiosAPIClient.delete(`/order/${deletedOrderId}`);
// Assert
const aQueryForDeletedOrder = await axiosAPIClient.get(
`/order/${deletedOrderId}`
);
expect(aQueryForDeletedOrder.status).toBe(404);
});
});
});
export {};