Testing the REST API Server
Learn how to write test cases for the REST API server.
We'll cover the following...
In addition to manually checking the server with curl
, let’s add some structured
tests using Go’s testing package. Go provides the package net/http/httptest
with additional types and functions for testing HTTP servers.
One approach for testing HTTP servers is testing each handler function individually by using the type httptest.ResponseRecorder
. This type allows the recording
of an HTTP response for analysis or tests. This approach is useful if we’re
using the DefaultServeMux
as the server multiplexer.
Because we implemented our own multiplexer function, newMux()
, we can
use a different approach that allows integrated testing, including the route
dispatching. We’ll use the type httptest.Server
and instantiate a test server,
providing the multiplexer function as input. This approach creates a test
server with an URL that simulates our server, allowing us to make requests
similarly to using curl on the actual server. Then we can analyze ...