An open API service indexing awesome lists of open source software.

https://github.com/bbc/a11y-tests-web

Runs automated accessibility tests against configurable lists of webpages
https://github.com/bbc/a11y-tests-web

accessibility automated-testing bbc iplayer-web lighthouse

Last synced: 6 months ago
JSON representation

Runs automated accessibility tests against configurable lists of webpages

Awesome Lists containing this project

README

          

# a11y-tests-web

![Build Status](https://github.com/bbc/a11y-tests-web/workflows/Node.js%20CI/badge.svg)

Uses [bbc-a11y](https://github.com/bbc/bbc-a11y) and [Google Lighthouse](https://developers.google.com/web/tools/lighthouse/) to run a suite of automated tests to test accessibility across a set of webpages, defined in a config file.

## Requirements
- Node v10 or above
- libgconf-2-4
- Docker (if using the `ci` option) - NB The docker image is not always necessary to use bbc-a11y for continuous integration. For example, in TravisCI one option available is to prepend the run script with xvfb-run - [relevant TravisCI documentation](https://docs.travis-ci.com/user/gui-and-headless-browsers/#Using-xvfb-to-Run-Tests-That-Require-a-GUI). Furthermore, an alternative to using the docker image in Jenkins might be to use the [xvfb plugin](https://wiki.jenkins.io/display/JENKINS/Xvfb+Plugin) - though this is untested.

## Running anywhere from the command-line
This package can be run anywhere from the command-line, making it easy to integrate with your existing projects. Here's how:

1. Install the package globally: `npm install @bbc/a11y-tests-web --global`
2. Run the command anywhere from your command-line, e.g. `A11Y_CONFIG=iplayer-web/all a11y-tests-web lighthouse -m junit-headless`

You could also make it part of your application's scripts. Here's how:
1. Add the package to your application's dev dependencies: `npm install @bbc/a11y-tests-web --save-dev`
2. Add a line to your application's scripts e.g. `"test:a11y": "A11Y_CONFIG=iplayer-web/app-playback-test a11y-tests-web bbc-a11y -m interactive"`

You can find out more about using the CLI option by running `a11y-tests-web --help`.

## Usage as an independent package

### Installation of dependencies

```
npm install
```

### Run bbc-a11y using a config, e.g. iplayer-web/all

To run bbc-a11y in interactive mode:

```
A11Y_CONFIG=iplayer-web/all npm run start:bbc-a11y
```

This will generate the commands for bbc-a11y and then run the tests against the pages listed in the iplayer-web/all config file in the config directory.

### Run bbc-a11y in headless mode

To run bbc-a11y in headless mode:

```
A11Y_CONFIG=iplayer-web/all npm run start:bbc-a11y:headless
```

### Run bbc-a11y and generate a JUnit report

To generate a JUnit report, you can tell bbc-a11y to use the JUnit reporter:

```
A11Y_CONFIG=iplayer-web/all npm run start:bbc-a11y:junit
```

### Run bbc-a11y and generate a JUnit report in headless mode

To generate a JUnit report in headless mode:

```
A11Y_CONFIG=iplayer-web/all npm run start:bbc-a11y:junit-headless
```

### Run bbc-a11y and generate a JUnit report using Docker

If you don't have all the necessary libraries on your system required to run Electron, for example if you want to run this on a CI server, or if you want the process to always exit successfully, you can run this command to run them inside a Docker container and exit with success:

```
A11Y_CONFIG=iplayer-web/all npm run start:bbc-a11y:ci
```

Note that Docker obviously needs to be running and you can ignore any messages about XLib and libudev.

### Run Google Lighthouse and generate a JUnit report using a config, e.g. iplayer-web/all

To run Google Lighthouse and generate a JUnit report:

```
A11Y_CONFIG=iplayer-web/all npm run start:lighthouse:junit
```

This will run the Google Lighthouse accessibility audit against the URLs defined in the iplayer-web/all config file, and generate a JUnit report called lighthouse-report.xml.

If you'd like a more human readable report, you can simply use Google Chrome to run the audit, by opening dev tools and going to Audits.

### Run Google Lighthouse in headless mode and generate a JUnit report

To run Google Lighthouse in headless mode and generate a JUnit report:

```
A11Y_CONFIG=iplayer-web/all npm run start:lighthouse:junit-headless
```

### Run Google Lighthouse in headless mode and print results to console

To run Google Lighthouse in headless mode and generate human-readable output to console:

```
A11Y_CONFIG=iplayer-web/all npm run start:lighthouse:headless
```

### Run Google Lighthouse with verbose logging enabled

To run Google Lighthouse in headless mode and enable verbose logging to console for Lighthouse:

```
A11Y_CONFIG=iplayer-web/all A11Y_LOGGING_LEVEL=verbose npm run start:lighthouse:headless
```

## Running on Jenkins

If you'd like to run this on your Jenkins server, ensure your Jenkins meets the requirements above and has a [JUnit plugin](https://plugins.jenkins.io/junit) installed and then:
- Create a Jenkins job
- Add this repo to the Jenkins job
- Get the job to run `npm i --production`
- Get the job to run the `start:bbc-a11y:ci` command for bbc-a11y or `start:lighthouse:junit-headless` for Lighthouse, with your `A11Y_CONFIG`
- Add a post-build action to "Publish JUnit test results report" (or such like). The bbc-a11y XML file is called "bbc-a11y-report.xml" and the Lighthouse XML file is called "lighthouse-report.xml".

## Creating a config

If your product/team does not already have a folder, create one in `config`.
You then need to create a new file in this folder which should either be a JSON file or a JS file that exports an object.

The data should include:
- `options` - Object - Options as defined by bbc-a11y, e.g. hide, skip and visit. Note that skip and visit are currently **ignored** by Google Lighthouse, but hide is used.
- `baseUrl` - String - The domain to run the tests against, e.g. "https://www.bbc.co.uk"
- `paths` - Array - The paths on that domain to run the tests against
- `signedInPaths` - Array - An optional list of paths to run the tests against, after signing in to BBC ID.

Note that if you have a list of `signedInPaths`, the username and password to use when logging in to BBC ID should be specified using the environment variables A11Y_USERNAME and A11Y_PASSWORD.

## Contributing
See [CONTRIBUTING.md](https://github.com/bbc/a11y-tests-web/blob/master/CONTRIBUTING.md)