Angular’s HttpClient
has a testing module, HttpClientTestingModule
, that makes it possible for you to unit test HTTP requests.
Note: Since HttpClient
is available only starting with Angular 4.3, the following applies to Angular 4.3+. Consult this introduction if you’re new to unit testing in Angular.
In this article, you will learn how to set up unit tests for an HTTP GET request using the HttpClientTestingModule
. This will help demonstrate the capabilities of the testing module.
To complete this tutorial, you will need:
This tutorial was verified with Node v16.2.0, npm
v7.15.1, and @angular/core
v12.0.4.
For this post, we’ll be working with a service that gets data from an endpoint and a component that calls that service to populate a list of users in the component’s OnInit
hook.
You can use @angular/cli
to create a new project:
Then, navigate to the newly created project directory:
Create a data.service.ts
:
And have it communicate with JSON Placeholder:
Then, modify the app.component.ts
file:
And add the HttpClientmodule
to app.module.ts
:
At this point, you will have an Angular project with a service and client.
Now we’ll setup a spec file for our data service and include the necessary utilities to test out the HttpClient
requests. On top of HttpClientTestingModule
, we’ll also need HttpTestingController
, which makes it easy to mock requests:
We use the inject
utility to inject the needed services into our test.
With this in place, we can add our test logic:
There’s quite a bit going on, so let’s break it down:
getData
method in the service that we’re testing and subscribe to returned observable.HttpEventType
is of type Response
, we assert for the response event to have a body equal to our mock users.HttpTestingController
(injected in the test as httpMock
) to assert that one request was made to the service’s url
property. If no request is expected, the expectNone
method can also be used.json
. Additionally, we could assert the request’s method (GET
, POST
, …)flush
on the mock request and pass in our mock users. The flush
method completes the request using the data passed to it.verify
method on our HttpTestingController
instance to ensure that there are no outstanding requests to be made.For the purposes of this tutorial, you can comment out app.component.spec.ts
.
See the result of your testing by running the following command:
Open the test results in the browser:
Output1 spec, 0 failures, randomized with seed 26321
DataService
should get users
It will display a successful test message.
In this article, you learned how to set up unit tests for an HTTP GET request using the HttpClientTestingModule
.
If you’d like to learn more about Angular, check out our Angular topic page for exercises and programming projects.
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!
You are testing the service, but, how do you test populateUsers() in the component’s ngOnInit?
It’s quite hard to find good examples on how to test http requests called in ngOnInit to initialize the component…
Many thanks for your example.