A simple acceptance testing helper optimised for complex CI problems
As responsible developers we want to test our NodeJS services with acceptance tests to simulate real traffic.
In a continuous deployment environment, the CI pipeline should be able to run those acceptance tests, however, the deployment of our service shouldn’t depend on an external service being up and running. Moreover, to run our service, we may need to access other services that are not reachable from the CI pipeline.
When the acceptance tests are run in local, they will query the real external services. During this run, the responses of all the external http calls will be stored in a fixture file.
When the tests are run in the CI pipeline, instead of querying the external services, we will use the mocked responses stored in the fixture file.
This process will be transparent for the developers maintaining the tests.
For a complete working example check examples/server.test.js
.
const NockBackCI = require('nock-back-ci');
// appProvider is an awaitable function that returns your express app
const appProvider = require('./yourapp');
// The localEnvironment flag should be set to true when the environment is local
// and false in the CI environment. This is usually done via environment variables.
const nockBackCiConfig = {
localEnvironment: true,
fixtureName: 'exampleFixture.json',
fixtureDir: path.join(__dirname, 'fixtures'),
};
const nockBackCI = new NockBackCI(nockBackCiConfig);
const server = await nockBackCI.bootServer(appProvider); // server is an instance of supertest request
const testCase = await nockBackCI.testCaseInit();
// Test your api here
nockBackCI.testCaseEnd(testCase);
nockBackCI.killServer(server, done);
Tip: For the best experience place the usage of nock-back-ci
in the before/after
jest functions.
Check the examples/server.test.js
example for inspiration.
const nockBackCiConfig = {
localEnvironment: true,
fixtureName: 'exampleFixture.json',
fixtureDir: path.join(__dirname, 'fixtures'),
whitelistedHosts: /(localhost|127\.0\.0\.1|kms.amazonaws)/,
healthcheck: '/operations/healthcheck', // The test won't start until this endpoint replies a 200
customFilter: (scope) => true,
};
In order to avoid recording specific responses in the fixtures depending on their content, the customFilter
extra option becomes handy.
For example, the following custom filter would avoid recording empty responses to the fixture file:
const nockBackCiConfig = {
customFilter: (scope) => scope.response,
}
Keep in mind that nock-back-ci
will record ALL http calls made by your service by default.
Please take care if your application sends or receives sensitive information like credentials, access keys, or users' personal information so that these data are not committed to your repository inside the fixutes.
To skip nocking for a particular endpoint, add it with the whitelistedHosts
option to the nock-back-ci
config like the example above.
In some cases, starting the api and having it ready to serve traffic may take a while. This is usually the case when it queries external services and warms up caches.
If this is your case, by providing an optional healthcheck
parameter the test won't start until the healthcheck of the api becomes green.
Moreover when using this functionality, a separate fixture named boot.json
will be created to store
the http responses of the services queried at startup time.
Items on the roadmap.
- Add tests to the lib/options file
- Feature: When to recreate local fixtures policy
- Feature: Config validation
See the CONTRIBUTING.md
file.
MIT License (c) 2018 Joan Vilà Cuñat