-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #84 from boxuk/backstop
- Loading branch information
Showing
29 changed files
with
1,802 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,6 +37,7 @@ debug.log | |
!/bin/makepot | ||
!/bin/pot2po | ||
!/bin/po2mo | ||
!/bin/backstop_report | ||
|
||
.env | ||
/.env.local | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/usr/bin/env bash | ||
|
||
ENVIRONMENT="${@:-local}" | ||
|
||
# TODO: Add Windows support. | ||
|
||
if [ ! -d "tests/visual-regression/output/${ENVIRONMENT}/html_report/" ]; then | ||
exit 1; | ||
fi | ||
|
||
if [[ "$OSTYPE" == "darwin"* ]]; then | ||
# Mac OS. | ||
open tests/visual-regression/output/${ENVIRONMENT}/html_report/index.html; | ||
else | ||
# Linux. | ||
xdg-open tests/visual-regression/output/${ENVIRONMENT}/html_report/index.html; | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/usr/bin/env bash | ||
|
||
docker-compose -f docker-compose.yml run --rm --workdir /src backstop node ./bin/backstop.js "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/usr/bin/env bash | ||
|
||
ENVIRONMENT="${@:-local}" | ||
|
||
docker-compose -f docker-compose.yml run --rm --workdir /src backstop cp config/${ENVIRONMENT}/cookies.json.dist config/${ENVIRONMENT}/cookies.json; | ||
docker-compose -f docker-compose.yml run --rm --workdir /src backstop cp config/${ENVIRONMENT}/secrets.json.dist config/${ENVIRONMENT}/secrets.json; | ||
|
||
docker-compose -f docker-compose.yml run --rm --workdir /src backstop npm install; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
FROM node:14.18.1 | ||
|
||
ARG BACKSTOPJS_VERSION | ||
|
||
ENV \ | ||
BACKSTOPJS_VERSION=$BACKSTOPJS_VERSION | ||
|
||
# Base packages | ||
RUN apt-get update && \ | ||
apt-get install -y git sudo software-properties-common --no-install-recommends; \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
#RUN sudo npm install -g --unsafe-perm=true --allow-root backstopjs@${BACKSTOPJS_VERSION} | ||
|
||
RUN wget --progress=dot:giga https://dl-ssl.google.com/linux/linux_signing_key.pub && apt-key add linux_signing_key.pub; \ | ||
add-apt-repository "deb http://dl.google.com/linux/chrome/deb/ stable main" | ||
|
||
# RUN apt-get -y update && apt-get -y install google-chrome-stable | ||
|
||
# RUN apt-get install -y firefox-esr | ||
|
||
# gconf-service libxext6.... added for https://github.com/garris/BackstopJS/issues/1225 | ||
|
||
RUN apt-get -qqy update \ | ||
&& apt-get -qqy --no-install-recommends install \ | ||
libfontconfig \ | ||
libfreetype6 \ | ||
xfonts-cyrillic \ | ||
xfonts-scalable \ | ||
fonts-liberation \ | ||
fonts-ipafont-gothic \ | ||
fonts-wqy-zenhei \ | ||
gconf-service libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libcairo2 libcups2 libdbus-1-3 libexpat1 libfontconfig1 libgcc1 libgconf-2-4 libgdk-pixbuf2.0-0 libglib2.0-0 libgtk-3-0 libnspr4 libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 libx11-xcb1 libxcb1 libxcomposite1 libxcursor1 libxdamage1 libxss1 libxtst6 libappindicator1 libnss3 libasound2 libatk1.0-0 libc6 ca-certificates fonts-liberation lsb-release xdg-utils wget \ | ||
&& rm -rf /var/lib/apt/lists/* \ | ||
&& apt-get -qyy clean | ||
|
||
|
||
WORKDIR /src | ||
|
||
#ENTRYPOINT ["backstop"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
# Testing | ||
|
||
Testing WordPress sites can be a challenge. We should strive to make use of different testing techniques to ensure we're getting good test coverage across our sites. Here are the different types of tests we recommend and how to achieve each. | ||
|
||
* [Unit Testing](#unit-testing) | ||
* [Integration Testing](#integration-testing) | ||
* [Visual Regression Testing](#visual-regression-testing) | ||
* [Acceptance Testing](#acceptance-testing) | ||
|
||
## Unit Testing | ||
|
||
Unit tests should be added for every `(mu-)plugin`/`theme` we create. We should always aim to decouple the core logic from WordPress, for this to be true we should avoid any use of global functions or hidden dependencies in any classes/functions we use for our core logic. We should then be able to unit test these easily. | ||
|
||
We use [PHPUnit](https://phpunit.de/) for unit testing. | ||
|
||
## Integration Testing | ||
|
||
Integration tests should also be added wherever appropriate. For any part of your `(mu-)plugin`/`theme` that interacts with WordPress this should be covered by an integration test. | ||
|
||
We also use [PHPUnit](https://phpunit.de/) for integration testing along with [WP PHPUnit](https://github.com/wp-phpunit/wp-phpunit) which will allow you to interact with the WordPress install easily. It also provides a number of helpers to allow for easy generation of synthetic data for testing. | ||
|
||
### Running the unit & integration tests | ||
|
||
Both the unit tests and integration tests follow the same structure, tests are designed to be added within each `mu-plugin` you create within a `tests` directory. The test runner sits outside though in the root of this repo. It works by looping over each `mu-plugin` and running its test. | ||
|
||
> It's important each `mu-plugin` follows the format `plugin-name/plugin-name.php` | ||
`bin/docker/phpunit` | ||
|
||
(or `bin/phpunit` if not using docker) | ||
|
||
## Visual Regression Testing | ||
|
||
Sometimes hard to find bugs can be present even though all our automated tests are passing, this could be due to something that's fallen through the cracks, a JS/CSS issue, an update to a plugin or theme, an update to a browser or something else entirely. It's therefore useful to run Visual Regression (VR) tests to catch anything that may have changed how the site appears to the end user. | ||
|
||
VR tests work by taking screenshots of given scenarios (typically defined pages/posts), approving the screenshots to a known state and then comparing future runs against this approved state to see if anything has changed. Tests will then fail if the difference between the screenshots is above a set tolerance. | ||
|
||
We use [BackstopJS](https://github.com/garris/BackstopJS/) for VR testing. | ||
|
||
### Running the tests | ||
|
||
Tests (or scenarios) should be added to `tests/visual-regression/backstop.json` within the `scenarios` section. For example: | ||
|
||
```json | ||
"scenarios": [ | ||
{ | ||
"label": "Page or post to test", | ||
"cookiePath": "config/%env_name%/cookies.json", | ||
"url": "%base_url%/page-or-post-slug", | ||
"delay": 500, | ||
"misMatchThreshold": 0.1, | ||
"requireSameDimensions": true | ||
} | ||
] | ||
``` | ||
|
||
You can configure things like cookies, env vars and secrets within the `config` directory. You can do so for each environment you want to test, `local` is set up currently that will allow you to test the local environment. | ||
|
||
* Setup backstop | ||
|
||
`bin/docker/setup_backstop` | ||
|
||
* Run backstop tests | ||
|
||
`bin/docker/backstop test [environment]` | ||
|
||
* Approve detected changes | ||
|
||
`bin/docker/backstop approve [environment]` | ||
|
||
> [environment] is the environment you want to test against, falls back to `local`. | ||
* Open report | ||
|
||
`bin/backstop_report` | ||
|
||
> This will open the test report in your default browser. | ||
## Acceptance testing | ||
|
||
As well as the other tests we also want to run Acceptance Tests, so we can test our `(mu-)plugin`/`theme` does what it's supposed to do for the end user. For this we typically want to run some automated browser based testing to make sure clicking links, navigating between sections works the way it should. | ||
|
||
We use... [coming soon] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
node_modules | ||
output | ||
!output/.gitkeep | ||
config/**/cookies.json | ||
config/**/secrets.json | ||
config/profile.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
{ | ||
"docker": "%use_docker%", | ||
"config": { | ||
"id": "backstop_default", | ||
"viewports": [ | ||
{ | ||
"label": "phone", | ||
"width": 320, | ||
"height": 480 | ||
}, | ||
{ | ||
"label": "tablet", | ||
"width": 1024, | ||
"height": 768 | ||
}, | ||
{ | ||
"label": "desktop", | ||
"width": 1920, | ||
"height": 1080 | ||
} | ||
], | ||
"onBeforeScript": "puppet/onBefore.js", | ||
"onReadyScript": "puppet/onReady.js", | ||
"scenarios": [ | ||
{ | ||
"label": "Homepage", | ||
"cookiePath": "config/%env_name%/cookies.json", | ||
"url": "%base_url%/", | ||
"delay": 500, | ||
"misMatchThreshold": 0.1, | ||
"requireSameDimensions": true | ||
}, | ||
{ | ||
"label": "About page", | ||
"cookiePath": "config/%env_name%/cookies.json", | ||
"url": "%base_url%/about", | ||
"delay": 500, | ||
"misMatchThreshold": 0.1, | ||
"requireSameDimensions": true | ||
}, | ||
|
||
{ | ||
"label": "Sample post", | ||
"cookiePath": "config/%env_name%/cookies.json", | ||
"url": "%base_url%/sample-post", | ||
"delay": 500, | ||
"misMatchThreshold": 0.1, | ||
"requireSameDimensions": true | ||
} | ||
], | ||
"paths": { | ||
"bitmaps_reference": "output/%env_name%/bitmaps_reference", | ||
"bitmaps_test": "output/%env_name%/bitmaps_test", | ||
"engine_scripts": "scripts", | ||
"html_report": "output/%env_name%/html_report", | ||
"ci_report": "output/%env_name%/ci_report" | ||
}, | ||
"report": [ | ||
"html" | ||
], | ||
"engine": "puppeteer", | ||
"engineOptions": { | ||
"ignoreHTTPSErrors": true, | ||
"args": [ | ||
"--no-sandbox" | ||
] | ||
}, | ||
"asyncCaptureLimit": 5, | ||
"asyncCompareLimit": 50, | ||
"debug": false, | ||
"debugWindow": false | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
const backstop = require('backstopjs'); | ||
const envVars = require('../scripts/envVars.js'); | ||
const utils = require('../scripts/utils.js'); | ||
const { exec } = require("child_process"); | ||
|
||
const validOperations = [ 'test', 'approve' ]; | ||
|
||
const myArgs = process.argv.slice( 2 ); | ||
const operation = myArgs[ 0 ]; | ||
const env = myArgs[ 1 ] || 'local'; | ||
|
||
const configFolderPath = 'config/'; | ||
const envVarsFilePath = configFolderPath + env + '/env_vars.json'; | ||
const envSecretsFilePath = configFolderPath + env + '/secrets.json'; | ||
const profilePath = configFolderPath + 'profile.json'; | ||
const profilePathFallback = configFolderPath + 'profile.json.dist'; | ||
const backstopFilePath = 'backstop.json'; | ||
|
||
if ( ! utils.isOperationValid( operation, validOperations ) ) { | ||
utils.exitWithReason( '"' + operation + '" is not a valid operation. Valid operations are: ' + validOperations.join( ', ' ) ); | ||
} | ||
|
||
if ( ! utils.doesFileExist( envVarsFilePath ) ) { | ||
utils.exitWithReason( 'Required file not found at ' + envVarsFilePath ); | ||
} | ||
|
||
if ( ! utils.doesFileExist( envSecretsFilePath ) ) { | ||
utils.exitWithReason( 'Required file not found at ' + envSecretsFilePath ); | ||
} | ||
|
||
if ( ! utils.doesFileExist( backstopFilePath ) ) { | ||
utils.exitWithReason( 'Required file not found at ' + backstopFilePath ); | ||
} | ||
|
||
console.log( 'Using environment variables file ' + envVarsFilePath ); | ||
console.log( 'Using environment secrets file ' + envSecretsFilePath ); | ||
console.log( 'Using backstop file ' + backstopFilePath ); | ||
|
||
envVars.setVars( utils.parseJsonFile( envVarsFilePath ) ); | ||
envVars.setVars( utils.parseJsonFile( envSecretsFilePath ) ); | ||
|
||
const profilePathToUse = utils.doesFileExist( profilePath ) ? profilePath : profilePathFallback; | ||
console.log( 'Using profile file ' + profilePathToUse ); | ||
|
||
envVars.setVars( utils.parseJsonFile( profilePathToUse ) ); | ||
|
||
// Add env_name to the configuration object, so it can be referenced from within the config. | ||
envVars.setVar( 'env_name', env ); | ||
|
||
const config = utils.parseJsonFile( backstopFilePath, envVars.getVars() ); | ||
|
||
backstop( operation, config ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
[ | ||
{ | ||
"domain": ".boxuk-wp-skeleton.local", | ||
"path": "/", | ||
"name": "yourCookieName", | ||
"value": "yourCookieValue", | ||
"expirationDate": 1798790400, | ||
"hostOnly": false, | ||
"httpOnly": false, | ||
"secure": false, | ||
"session": false, | ||
"sameSite": "no_restriction" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"base_url": "https://boxuk-wp-skeleton.local" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"use_docker": false | ||
} |
Oops, something went wrong.