6

Automated visual regression testing with TypeScript, Puppeteer, Jest and Jest Im...

 3 years ago
source link: https://dev.to/csouchet/automated-visual-regression-testing-with-typescript-puppeteer-jest-and-jest-image-snapshot-3n0f
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

Introduction

As developers, it is our job to ensure that our users get an experience with no regression.

Like any good developer, when I add a feature or fix a bug, I also create unit, integration, and end-to-end tests. This assures that, when the existing code is modified, nothing is accidentally broken, and confirms that user flows are functional.

Like many people, I've gotten used to using a manual process to visually check that the design looks as intended.

Refactoring, adding a new component, or updating a package can sometimes change the appearance of the application. It can get laborious to click through every possible user journey, and we are not immune to forgetting a test or to miss a small visual change.

So how can we make sure that the visuals are always correct and less painful to test? I had heard of automatic testing for no visual regression before. I looked into using Selenium some time ago, but changed projects and no longer needed it.

Now that I have a need for visual checks in my current project, I’ve found there are different libraries - easy to learn - that can take screenshots of current web pages and compare generated screenshots with a screenshot baseline to find regressions in the user interface (UI).

In this article, I will explain how to use one of these libraries - Jest-Image-Snapshot (Jest matcher) - in a Typescript project.

Project example

I will use the BPMN Visualization project (version 0.10.0) as an example. (This example has been simplified so it shows more clearly the configuration and features explained in this article.) The goal of this project is to load BPMN content, and render it.
Automated visual tests will simplify our life with each refactoring, addition of a new component, update of the positioning algorithm of the different BPMN elements, or update of the MxGraph rendering library.

Prerequisites

As first step, we need to install the required packages as devDependencies:

  • Jest + its type definition: A JavaScript Testing Framework Jest is a fully featured testing framework, developed by Facebook. It needs very little configuration and works basically out of the box.

npm install -D jest @types/jest

  • Puppeteer + its type definition: A Node library to control Chrome or Chromium, both in headless mode and with a user interface. It is possible to perform most of the actions that are done manually on a browser and take screenshots.

npm install -D puppeteer @types/puppeteer jest-puppeteer

  • Jest-Image-Snapshot + its type definition: A Jest matcher to perform image comparisons

npm i -D jest-image-snapshot @types/jest-image-snapshot

Configuration

Let’s configure the previous libraries.

Configure Jest

I won't go into detail here on all the different ways to configure Jest.
If you already use Jest for your unit/e2e tests, this is not new for you. If you would like more explanations about Jest, there are many great articles available.

In this example, we have 3 Jest configurations: unit tests, e2e tests, and performance tests. We added the visual tests in the e2e test suite.
Here I will just explain how we configure Jest for the e2e tests.

First, create the Jest configuration file (jest.config.js) at ./test/e2e directory:

module.exports = { rootDir: '../..', roots: ['./test/e2e', './src'], transform: { '^.+\\.ts?$': 'ts-jest' }, testMatch: ['**/?(*.)+(spec|test).[t]s'], testPathIgnorePatterns: ['/node_modules/', 'dist', 'src'], testTimeout: 200000, }

This configuration sets the root directory to the root project directory, runs .ts files with ts-jest module and looks for .spec.ts and test.ts files under any subdirectory of ./test/e2e directory.

Configure Puppeteer

  • Specify the preset in the Jest configuration (./test/e2e/jest.config.js), as specified in the official documentation of Jest:

    module.exports = { // ... preset: 'jest-puppeteer', }

  • Create a new file (./test/e2e/jest-puppeteer.config.js) for the Puppeteer configuration to run the server & launch the browser once for all tests:

    module.exports = { server: { // How you build your bundle. If you use Rollup, add the plugin rollup-plugin-serve with the configuration serve({ contentBase: ‘dist’, port: 10002 }) command: `npm run start`, port: 10002, // if default or tcp, the test starts right await whereas the dev server is not available on http protocol: 'http', // in ms launchTimeout: 30000, debug: true, }, launch: { dumpio: true, headless: process.env.HEADLESS !== 'false', args: ['--disable-infobars', '--no-sandbox', '--disable-setuid-sandbox'], timeout: 120000, }, };

With this configuration, we start a server on the port 10002 with a timeout of 30s, start a browser with a timeout of 2 minutes, and pipe the browser process stdout and stderr into process.stdout and process.stderr.

Extend the Jest expect assertion mechanism to use Jest Image Snapshot

This is the part that might be new, but with a little configuration, we will be ready soon.

By default, Jest doesn’t know anything about Jest-Image-Snapshot and its assertion toMatchImageSnapshot. So we’ll need to extend Jest. For that, create a new file (./test/e2e/jest.image.ts), like the following:

import { toMatchImageSnapshot } from 'jest-image-snapshot';

expect.extend({ toMatchImageSnapshot });

To avoid extending Jest in each test file or import the previous file globally in all test files, we need to configure Jest to run it immediately after the test framework has been installed in the environment with setupFilesAfterEnv (Jest property) in ./test/e2e/jest.config.js.

module.exports = { // ... setupFilesAfterEnv: ['./test/e2e/jest.image.ts'], }

Add a new command

To simply the test execution, add the following script in the package.json file:

{ //... "scripts": { //... "test:e2e": "cross-env DEBUG=test JEST_PUPPETEER_CONFIG=./test/e2e/jest-puppeteer.config.js jest --runInBand --detectOpenHandles --config=./test/e2e/jest.config.js", } }

Now, you can run your e2e tests with the following command:
npm run test:e2e

Note: cross-env is useful if you run the tests on different OS.

You can find the different properties to customize Jest-Image-Snapshot in its README on Github.

Create a basic test with Jest-Image-Snapshot

If everything is configured correctly, we are now ready to create our first visual regression test (./test/e2e/bpmn.rendering.test.ts) by combining Puppeteer and Jest and Jest-Image-Snapshot!

// jest-image-snapshot custom configuration function getConfig () { return { diffDirection: 'vertical', // useful on CI (no need to retrieve the diff image, copy/paste image content from logs) dumpDiffToConsole: true, // use SSIM to limit false positive // https://github.com/americanexpress/jest-image-snapshot#recommendations-when-using-ssim-comparison comparisonMethod: 'ssim', }; }

it(`no BPMN Gateway visual regression`, async () => { // Redirect the current page in the browser to a new url with puppeteer const response = await page.goto(‘http://localhost:10002/non-regression.html?bpmn=./gateways.bpmn’);

// Be sure the page is displayed correctly with puppeteer & Jest expect(response.status()).toBe(200); await expect(page.title()).resolves.toMatch('BPMN Visualization Non Regression' ); await page.waitForSelector(‘#bpmn-container’, { timeout: 5_000 });

// Take the screenshot of the page with puppeteer const image = await page.screenshot({ fullPage: true });

// Compare the taken screenshot with the baseline screenshot (if exists), or create it (else) const config = getConfig(); expect(image).toMatchImageSnapshot(config); });

After the test runs, a new directory will be created -
__image_snapshots__ - with an image for each toMatchImageSnapshot call. The names of the snapshots are computed by default with testPath, currentTestName, counter and defaultIdentifier.

Example of generated snapshot:

bpmn-rendering-test-ts-no-bpmn-gateway-visual-regression-1-snap.png

Note: Make sure that the snapshot files are committed in your source control so they are shared with other developers and CI environments.

Test on different machines

One issue with one-to-one pixel matching is that there is a good chance that the test will be in error on a machine other than on which it was developed, because every environment has slightly different ways of rendering the same application.

For example, suppose that we want to run the tests on the CI environment every time we create a pull request to the master branch in GitHub.
Without any modifications to the code, the test is passed locally; but on the CI environment, it fails with a message like this:

Error: Expected image to match or be a close match to snapshot but was 0.0005804554357724534% different from snapshot (2.7861860917077763 differing pixels).

And a new image file for the diff is stored in the __image_snapshots__/__diff_output__ directory with the name <snapshot_name>-diff.png.

If we use the previous test, we’ll have something like this:

bpmn-rendering-test-ts-no-bpmn-gateway-visual-regression-1-diff.png

You can modify the previous jest-image-snapshot configuration (./test/e2e/bpmn.rendering.test.ts), and update the value of failureThreshold (default value: 0) & failureThresholdType (default value: pixel). These properties are used to calculate the threshold of tolerated differences (before the test fails).

// jest-image-snapshot custom configuration function getConfig () { return { // …,

// anything less than 0.5 percent difference passes as the same failureThreshold: 0.005, failureThresholdType: 'percent', }; }

// ...

Warning: If you increase the failure threshold too much, when there is too much difference between local and CI environments, it may be impossible to detect visual regressions.

Order the snapshots

If you have 10 or more tests, it can become complicated to find which screenshot corresponds to which test/feature in the directory __image_snapshots__.

Modify the customSnapshotsDir property to have a different value according to the tests.

  • ./test/e2e/helpers/visu-utils.ts

    // jest-image-snapshot custom configuration export function getConfig (customSnapshotsDir: string) { return { // …,

    // custom absolute path of a directory to keep this snapshot in customSnapshotsDir, }; }

    export function async gotoPageWithBPMNContainer(): Promise<ElementHandle<Element>> { // Redirect the current page in the browser to a new url with puppeteer const response = await page.goto(‘http://localhost:10002/non-regression.html?bpmn=./gateways.bpmn’);

    // Be sure the page is displayed correctly with puppeteer & Jest expect(response.status()).toBe(200); await expect(page.title()).resolves.toMatch('BPMN Visualization Non Regression' ); return await page.waitForSelector(‘#bpmn-container’, { timeout: 5_000 }); }

  • ./test/e2e/bpmn.rendering.test.ts

    import { gotoPageWithBPMNContainer, getConfig } from './helpers/visu-utils';

    it(`no BPMN Gateway visual regression`, async () => { await gotoPageWithBPMNContainer();

    // Take the screenshot of the page with puppeteer const image = await page.screenshot({ fullPage: true });

    // Compare the taken screenshot with the baseline screenshot (if exists), or create it (else) const config = getConfig('__image_snapshots__/bpmn'); expect(image).toMatchImageSnapshot(config); });

  • ./test/e2e/bpmn.navigation.test.ts

    import { gotoPageWithBPMNContainer, getConfig } from './helpers/visu-utils';

    it(`no visual regression for drag & drop with the mouse of the BPMN content in the container`, async () => { const bpmnContainerElement = await gotoPageWithBPMNContainer(); const bounding_box = await bpmnContainerElement.boundingBox();

    // Move the mouse pointer to the center of the BPMN Container const containerCenterX = bounding_box.x + bounding_box.width / 2; const containerCenterY = bounding_box.y + bounding_box.height / 2; await page.mouse.move(containerCenterX, containerCenterY);

    // Drag & Drop the BPMN content in the BPMN Container await page.mouse.down(); await page.mouse.move(containerCenterX + 150, containerCenterY + 40); await page.mouse.up();

    // Take the screenshot of the page with puppeteer const image = await page.screenshot({ fullPage: true });

    // Compare the taken screenshot with the baseline screenshot (if exists), or create it (else) const config = getConfig('__image_snapshots__/navigation'); expect(image).toMatchImageSnapshot(config); });

Reuse the snapshots

Sometimes the expected result/snapshot is the same even after different actions. To avoid having a lot of identical snapshots in the Github repository, it’s better to reuse a snapshot.

For that, it’s necessary to override the default customSnapshotIdentifier & customDiffDir properties.

  • customSnapshotIdentifier: the custom name to give this snapshot. This prevents the name of the snapshots from being computed with testPath, currentTestName, counter and defaultIdentifier.

  • customDiffDir: the custom absolute path of a directory to keep this diff in. As we use the same snapshot in different tests, to know which diff file corresponds to which test, we need to set a different value according to the tests.

Example

  • ./test/e2e/helpers/visu-utils.ts

    // jest-image-snapshot custom configuration export function getConfig (customSnapshotIdentifier: string, customDiffDir: string) { return { // …, customSnapshotIdentifier, customDiffDir }; }

    // …

  • ./test/e2e/diagram.rendering.test.ts

    import { getConfig } from './helpers/visu-utils';

    function async gotoPageWithBPMNContainer(margin: number): Promise<ElementHandle<Element>> { // Redirect the current page in the browser to a new url with puppeteer const response = await page.goto(‘http://localhost:10002/rendering-diagram.html?bpmn=./gateways.bpmn&fitMargin=${margin}’);

    // Be sure the page is displayed correctly with puppeteer & Jest expect(response.status()).toBe(200); await expect(page.title()).resolves.toMatch('BPMN Visualization - Diagram Rendering' ); return await page.waitForSelector(‘#bpmn-container’, { timeout: 5_000 }); }

    it.each([-100, 0, null])('load with margin %s', async (margin: number) => { const bpmnContainerElement = await gotoPageWithBPMNContainer(margin);

    // Take the screenshot of the page with puppeteer const image = await page.screenshot({ fullPage: true });

    // Compare the taken screenshot with the baseline screenshot (if exists), or create it (else) const config = getConfig(‘load_with_no_margin’,`__image_snapshots__/__diff_output__/${margin}`); expect(image).toMatchImageSnapshot(config); });

Conclusion

With so many operating systems, web browsers, and screen resolutions, Visual Testing can be a powerful tool to assure that an application works well in all possible environments. It is definitely worth trying it as a complement to other sets of tests.

Now you have everything you need to start your first visual regression test in Typescript with Jest & Puppeteer.

Thank you for reading and I hope I helped or inspired you :)

References


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK