This tutorial is out of date and no longer maintained.
Writing tests for an application that relies on external services, say, a RESTful API, is challenging. More often than not, an external resource may require authentication, authorization or may have a rate limiting. Hitting an endpoint for a service hosted in a service like AWS as part of testing would also incur extra charges.
This quickly goes out of hand when you are running tests a couple of times a day as a team, as well as part of continuous integration. Nock, a HTTP mocking and expectations library for Node.js can be used to avoid this.
By the end of this post, we will have achieved the following.
To get started, create a simple Node.js application by creating an empty folder and running npm init
.
Next, we will install the following packages for our application and testing environment.
Our tests will live inside a test directory, Go ahead and create a test directory and create our first test.
Our first test should be pretty straightforward. Assert that true is, well, true.
To run our test, we could run the mocha
command from our node_modules
but that can get annoying. We are instead going to add it as an npm script.
At this point, running npm test
on your command-line should give you the following result.
Output> nock-tests@1.0.0 test /Users/username/projects/nock-tests
> mocha
First test
✓ Should assert true to be true
1 passing (15ms)
We obviously don’t have any tests making requests, or a useful request for that matter, but we will be changing that.
Let’s go ahead and write a simple function that makes a HTTP request to the GitHub API to get a user by username. Go ahead and create an index.js
file in the root and add the following code.
Our test will assert that the request made returns an object with specific details. Replace the truthy test we created earlier with the following test for our code.
Let’s break down the test.
getUser
method from /index.js
.This should pass on running the test by actually making a request to the GitHub API.
Let’s fix this!
Nock works by overriding Node’s http.request function. Also, it overrides http.ClientRequest too to cover for modules that use it directly.
With Nock, you can specify the HTTP endpoint to mock as well as the response expected from the request in JSON format. The whole idea behind this is that we are not testing the GitHub API, we are testing our own application. For this reason, we make the assumption that the GitHub API’s response is predictable.
To mock the request, we will import nock into our test and add the request and expected response in the beforeEach
method.
The expected response is defined as an export in a separate file.
To test that this is the actual response expected in the test, try editing one of the fields in the response object and run the test again. The tests should fail.
In my case, I will be changing the name value to Scotch
. You should get the error below.
We have only scratched the surface on what you can do with nock. It has a very detailed documentation on how to use it and it is worth exploring. For instance, If you are writing tests that involve error handling, you could mock error responses with an error message.
Happy testing!
Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!