Testing a Node.js API with Postman: 3 Examples

Learn how to effectively test a Node.js API using Postman with these three practical examples.
By Jamie

Introduction

Testing APIs is a crucial part of the development process, ensuring that your application behaves as expected and handles requests correctly. Postman is a popular tool for testing APIs, offering a user-friendly interface to send requests and analyze responses. In this article, we will explore three diverse examples of testing a Node.js API using Postman, covering various methods and scenarios.

Example 1: Testing a GET Request for User Data

Context

This example demonstrates how to test a simple GET endpoint designed to retrieve user data from a Node.js API. This is a common use case in applications that manage user profiles.

To start, let’s assume you have an API endpoint at http://localhost:3000/api/users that returns a list of users.

When testing this endpoint in Postman, you would set up a GET request.

  1. Open Postman and create a new request.
  2. Select the GET method from the dropdown menu.
  3. Enter the request URL: http://localhost:3000/api/users.
  4. Click on the Send button.
  5. Check the response body, status code, and headers.

If the API is functioning correctly, you should receive a 200 OK status along with a JSON array of user objects in the response body.

Notes

  • You can use the Tests tab in Postman to write JavaScript assertions to automate the testing process. For example, you could check that the response status code is 200 and that the response body contains expected fields.
  • Example assertion:

    pm.test("Status code is 200", function () {
        pm.response.to.have.status(200);
    });
    pm.test("Response contains users array", function () {
        pm.expect(pm.response.json()).to.be.an('array');
    });
    

Example 2: Testing a POST Request to Create a New User

Context

In this example, we will test a POST endpoint that creates a new user in the database. This is typical for applications that require user registration.

Assuming you have an API endpoint at http://localhost:3000/api/users that accepts POST requests with user data:

  1. Open Postman and create a new request.
  2. Select the POST method from the dropdown menu.
  3. Enter the request URL: http://localhost:3000/api/users.
  4. Go to the Body tab, select raw, and choose JSON as the format.
  5. Enter the following JSON data for the new user:

    {
        "name": "John Doe",
        "email": "john.doe@example.com",
        "password": "securePassword"
    }
    
  6. Click on the Send button.

  7. Verify the response.

A successful request should return a 201 Created status code and the created user object.

Notes

  • You can also test for validation errors by sending invalid data (e.g., missing required fields) to ensure that the API responds correctly.
  • Example assertion for a successful creation:

    pm.test("User created successfully", function () {
        pm.response.to.have.status(201);
        pm.expect(pm.response.json()).to.include({
            name: "John Doe",
            email: "john.doe@example.com"
        });
    });
    

Example 3: Testing a DELETE Request to Remove a User

Context

Testing the DELETE request is essential for ensuring that users can be removed from the system. This example will cover how to test an endpoint that deletes a user by ID.

Assuming you have an API endpoint at http://localhost:3000/api/users/{id}, where {id} is the ID of the user to be deleted:

  1. First, retrieve a user ID by sending a GET request to http://localhost:3000/api/users.
  2. Copy the ID of a user you want to delete.
  3. Open Postman and create a new request.
  4. Select the DELETE method from the dropdown menu.
  5. Enter the request URL, replacing {id} with the actual user ID: http://localhost:3000/api/users/1.
  6. Click on the Send button.
  7. Check the response status and body.

A successful delete operation should return a 204 No Content response.

Notes

  • You can validate that the user no longer exists by sending another GET request to check if the user is present.
  • Example assertion for successful deletion:

    pm.test("User deleted successfully", function () {
        pm.response.to.have.status(204);
    });
    

Conclusion

These examples illustrate how to effectively test a Node.js API using Postman. By utilizing GET, POST, and DELETE requests, you can ensure that your API endpoints function correctly and handle data as expected. Testing with Postman not only streamlines the development process but also helps maintain a high-quality codebase.