cypress-http-auto-mock

1.0.6 • Public • Published

cypress-http-auto-mock

semantic-release Commitizen friendly

Copy Notes

This repository is a copy of https://github.com/scottschafer/cypressautomocker. We have made this copy for an immediate need to use the library and the correction of specific issues found. We suggest using the original library because these same changes will be suggested to the original library

How to use

Integrating this tool into your web application involves a few steps:

  1. Add the cypress-http-auto-mock to your project:

    npm install --save cypress-http-auto-mock
  2. Add the cypress web hooks to your application.

    import installCypressHooks from 'cypress-http-auto-mock/include-in-webapp';
    installCypressHooks();

    Another option to do the same thing would be to include the following code in your HTML instead:

    <script src="node_modules/cypress-http-auto-mock/include-in-webapp/installCypressHooks-norequire.js">
  3. Add the following to cypress/support/commands.js

    import registerAutoMockCommands from 'cypress-http-auto-mock/include-in-tests';
    registerAutoMockCommands();
  4. In each of your tests, add the following:

      const MOCK_FILENAME = 'testCounter';
    
      before(() => {
        cy.automock(MOCK_FILENAME);
      });
    
      after(() => {
        cy.automockEnd();
      });

This tool is built on top of the open-source testing platform Cypress.io to allow recording API results and replaying the APIs as a mock server.

cypress auto mocker example tests running

Folder layout

There are three subfolders within the head directory:

  1. example: Contains a simple application to test against that implements APIs with changing responses, along with an example Cypress test.
  2. include-in-tests: Contains a library to include in your in your test suite,
  3. include-in-webapp: Contains a library to include in your application that is being tested.
Running the example

To install and run the example, run the following:

cd example
npm install
npm run start

You should see Example app listening at http://localhost:1337 which means that the local server is running on port 1337. It will also open Cypress, allowing you to run the test.

The first time you run the test, our tool will record the API results to the file example/cypress/automocks/testCounter.json. The next time the test is run, it will automatically use the contents of the file to mock the APIs.

You can control the recording and playback behavior using the (optional) automocker field in cypress.json:

  "automocker": {
    "record": true,
    "playback": true
  }

The default (that is, if "automocker" doesn't exist) is to treat both record and playback as true, which means that it will automatically record API calls (if the proper commands are called in the tests) if the mock file does not exits, and will play them back as mocks if they do exist.

Readme

Keywords

Package Sidebar

Install

npm i cypress-http-auto-mock

Weekly Downloads

9

Version

1.0.6

License

MIT

Unpacked Size

40.4 kB

Total Files

7

Last publish

Collaborators

  • aperdomob