DEV Community

Cover image for Using a mock server with Cypress
Javier Brea
Javier Brea

Posted on • Originally published at javierbrea.com

Using a mock server with Cypress

Why to use a mock server with Cypress?

When testing front-end applications using Cypress, we usually need to mock API responses in certain testing phases. Talking about testing phases deserves another post, but in this one we are going to suppose that we are in a testing phase in which we are testing the front-end application in the browser, but without the dependency of the real API services. So, it could be like testing unitary the whole application.

Cypress provides itself some mechanisms allowing to mock API responses in the website under its control, as the cy.intercept command. It is a great Cypress feature that, apart from stubbing the API responses, it also allows to spy the requests and write assertions related to them.

So, if Cypress already provides a mechanism to simulate API responses, why should we need a mock server? Well, the Cypress features are limited to its usage on Cypress, and, using a separated mock server allows us to reuse the same API mock for other purposes, such as simulating the API while we are developing the application, execute contract tests between the API mock and the OpenApi definition to ensure that we are accomplishing the API contract, etc.

We could even use a combination of both techniques, and write assertions about the API requests that our app is performing using the cy.intercept command while the responses are sent by our mock server.


Workflow

So, we can start the development by making an agreement about the API contract before it is developed. Then, using a mock server will allow us to create an API mock based on the API contract, and control the responses of the API during the development and the "unitary" testing with Cypress.

  • Controlling the responses of the API will improve the development workflow, avoiding early dependencies with the team developing the API. It also improves the testing of error cases or another cases that are commonly hard to reproduce with a real API.
  • Defining the API responses during the earliest phases of development will improve the communication among team members and align their expectations.

Workflow with API contract, Cypress and mock server


Mock server

In this tutorial we are going to use Mocks Server. It is a Node.js mock server running live, interactive mocks in place of real APIs. It makes able to define many different responses for a same route, so, we can change the whole mocked API behavior by simply changing the response of one or many routes while the server is running.

It also allows to create collections defining the specific responses to be sent by each different route, and the user can choose which collection has to be used on each particular moment. This makes able to store multiple collections and change the whole API behavior by simply changing the current one. So, suppose that we are testing a books store application, then we could store collections as "books-with-long-name", "get-book-error", "empty-category", etc. Each collection can change at a time many API responses, so it can simulate a specific API state useful for executing some specific tests.

And, more interesting even (given that we are talking about Cypress), it provides Cypress commands to change the current routes collection or the responses of specific routes while the server is running.

Mock server main concepts


Installation

Mocks Server is essentially a set of NPM packages. For using it with Cypress, we should install @mocks-server/main and @mocks-server/cypress-commands:

npm i -D @mocks-server/main @mocks-server/cypress-commands
Enter fullscreen mode Exit fullscreen mode

Then, you can add a NPM script that will allows to start the mock server using the command line interface:

{
  "scripts": {
    "mocks" : "mocks-server"
  }
}
Enter fullscreen mode Exit fullscreen mode

This enables to start the mock server by simply running a command in the project folder:

npm run mocks
Enter fullscreen mode Exit fullscreen mode

About the Mocks Server Cypress commands, we need to register them on Cypress. At the top of your Cypress' support file (usually cypress/support/e2e.js for e2e testing type):

import { register } from "@mocks-server/cypress-commands";
register();
Enter fullscreen mode Exit fullscreen mode

Basic usage

When Mocks Server is started, the interactive CLI is displayed by default. It allows you to see some details about the current configuration. Using the arrow keys and the Return key you can choose menu options in order to perform some actions, like changing the current collection, setting a delay time for the server responses, etc.

Mock server interactive CLI

This interactive CLI is a great tool for controlling the mock server while you are in the development phase, because it allows to change the server responses in real time using it without modifying any code.

When the server is started for the first time, it creates a configuration file and a scaffold folder containing some examples of routes and collections.

project-root/
├── mocks/
│   ├── routes/ <- DEFINE YOUR ROUTES HERE
│   │   ├── common.js
│   │   └── users.js
│   └── collections.json <- DEFINE YOUR COLLECTIONS HERE
└── mocks.config.js <- DEFINE YOUR CONFIGURATION HERE
Enter fullscreen mode Exit fullscreen mode
  • The server loads all files in the mocks/routes folder, which must contain the route definitions.
  • The mocks/collections.json file is used to define collections of route variants.
  • The server watches for changes in all files in the mocks folder, so changing a file will immediately update the responses of the mocked API.

Note: In this section we are not going to learn deeper how to use Mocks Server, because we want to focus on its usage with Cypress, so, you can refer to its own documentation for further info.

Starting the app, the mock server and Cypress

Now we already have our mock server installed and we can start it using a command. This allows to start the mock server manually when starting the application and opening Cypress in headed mode by simply running three separated processes in three terminals.

Supposing that we have next commands in the package.json file:

{
  "scripts": {
    "start:app": "react-app-rewired start",
    "cypress:open": "cypress open",
    "mocks" : "mocks-server"
  }
}
Enter fullscreen mode Exit fullscreen mode

We could start the processes separately and control each one on its own terminal.

Start the web application:

npm run start:app
Enter fullscreen mode Exit fullscreen mode

Start the mock server:

npm run mocks
Enter fullscreen mode Exit fullscreen mode

Open Cypress in headed mode:

npm run cypress:open
Enter fullscreen mode Exit fullscreen mode

For the moment, this is all we need to have a look at the Mocks Server Cypress commands. In another section of this post we will figure out how to start all processes using a single command to be able to run the tests on a CI pipeline.


Changing the responses of the API mock

Now that we have the mock server running, our web application started (and, of course, configured to use the mock server as its API), and Cypress opened, we can start using the @mocks-server/cypress-commands package to change the responses of the API and test different scenarios in the app.

Suppose that we are testing a books store app. In Mocks Server we have one collection of routes simulating that the books catalogue contains two elements, and another one simulating that it is empty. We have named those collections "two-books" and "no-books". Then, we could write two different tests, one for each case:

describe("books page", () => {
  describe("when there are two books", () => {
    before(() => {
      cy.mocksSetCollection("two-books"); // Use "two-books" collection
      cy.visit("/");
    });

    it("should display two books", () => {
      cy.get("#books li").should("have.length", 2);
    });
  });

  describe("when there are no books", () => {
    before(() => {
      cy.mocksSetCollection("no-books"); // Use "no-books" collection
      cy.visit("/");
    });

    it("should display no books", () => {
      cy.get("#books li").should("have.length", 0);
    });
  });
});
Enter fullscreen mode Exit fullscreen mode

We could also simulate that the API is slow using the cy.mocksSetDelay command, and test that our application is displaying a loader properly. For example:

describe("when the books API is slow", () => {
  before(() => {
    cy.mocksSetDelay(3000); // Set a delay of 3 seconds in API responses
    cy.visit("/");
  });

  after(() => {
    cy.mocksSetDelay(0); // Restore the delay to 0
  });

  it("should display loading", () => {
    cy.get("#books .loading").should("exist");
  });

  it("should display two books when finish loading", () => {
    cy.get("#books li").should("have.length", 2);
    cy.get("#books .loading").should("not.exist");
  });
});
Enter fullscreen mode Exit fullscreen mode

Other Cypress commands

Mocks Server Cypress commands also enable to change only the response of an specific route using the cy.mocksUseRouteVariant() command, for example:

cy.mocksUseRouteVariant("get-authors:error");
Enter fullscreen mode Exit fullscreen mode

And it also allow us to change any other Mocks Server configuration property:

cy.mocksSetConfig({
  files: {
    watch: false,
  },
  server: {
    port: 3500
  },
});
Enter fullscreen mode Exit fullscreen mode

Note: For further info about all available commands, you can checkout the Mocks Server Cypress integration docs.


Starting all using a single command

The instructions for starting the processes described in a previous section are useful when developing the Cypress tests, because we can check the logs of all processes, and changing the code of any of them would produce a hot reload and we could execute the tests again until they are ready. But, what about starting all processes and executing the tests in a single command, which is what we would like to do on a CI pipeline, for example?

In this case, we can use start-server-and-test to start all processes in a single command.

Supposing that our web application is started in the port 3000, and the mock server is started in the port 3100, we could add the next scripts to the package.json file:

  • cypress:run: It will run Cypress in headless mode.
  • mocks:no-cli: It will start the mock server without the interactive CLI. Logs will be printed instead, which is ideal for a CI pipeline.
  • mocks:no-cli_and_start:app: It will start and wait for the mock server to be ready, and then it will start the web application.
  • test: It will start and wait for the mock server to be ready, then start and wait for the web application to be ready, and then run Cypress in headed mode.
{
  "scripts": {
    "start:app": "react-app-rewired start",
    "cypress:run": "cypress run",
    "cypress:open": "cypress open",
    "mocks" : "mocks-server",
    "mocks:no-cli" : "mocks-server --no-plugins.inquirerCli.enabled",
    "mocks:no-cli_and_start:app": "start-server-and-test mocks:no-cli tcp:3100 start:app",
    "test": "start-server-and-test mocks:no-cli_and_start:app tcp:3000 cypress:run",
  }
}
Enter fullscreen mode Exit fullscreen mode

Now, when we run the next command, all processes will be started waiting for the others, and then the Cypress tests will be executed in headless mode:

npm run test
Enter fullscreen mode Exit fullscreen mode

Conclusion

While Cypress provides us tools for intercepting the API requests and simulate responses, using a separated mock server enables us to reuse the same mock for different phases of the development and testing workflow.

As we have seen, the Mocks Server project provides a library enabling to use Cypress commands to change the responses of the API mock, which is great in the testing phase. And it also provide other integration tools enabling to use it easily during the development phase, for example.

For further information, you can checkout:

Top comments (3)

Collapse
 
priteshusadadiya profile image
Pritesh Usadadiya

[[..PingBack..]]
This article is curated as a part of #68th Issue of Software Testing Notes Newsletter.

Collapse
 
ekeijl profile image
Edwin

I like the idea of collections and variants, still I prefer to use Mock Service Worker because it does not require me to run a separate server.

Collapse
 
javierbrea profile image
Javier Brea • Edited

Thanks @ekeijl , that's a good point! Anyway, a separate server would allow to reuse the same mock for testing or development in another technologies apart from front-end or Node.js. But it is interesting, maybe a mechanism could be added to Mocks Server in order to allow reusing the same mock definitions and all other features, but intercepting the requests instead of running a real server.