This is the documentation for the e2e testing setup based on Playwright and wp-env
.
- Pre-requisites
- Introduction
- About the Environment
- Guide for writing e2e tests
- Guide for using test reports
- Debugging tests
- Go through the WooCommerce Monorepo prerequisites first, including the commands to get everything working.
- Install Docker and Docker Compose (Installation instructions).
Note, that if you are on Mac and you install Docker through other methods such as homebrew, for example, your steps to set it up might be different. The commands listed in steps below may also vary.
If you are using Windows, we recommend using Windows Subsystem for Linux (WSL) for running E2E tests. Follow the WSL Setup Instructions first before proceeding with the steps below.
End-to-end tests are powered by Playwright. By default, the test site is spun up using wp-env
.
Running tests for the first time:
Start in the repository root folder:
nvm use
(uses the default node version you have set in NVM)pnpm install
(installs dependencies)pnpm --filter='@woocommerce/plugin-woocommerce' build
(builds WooCommerce locally)cd plugins/woocommerce
(changes into the WooCommerce plugin folder)pnpm env:start
(starts thewp-env
based local environment)pnpm test:e2e
(runs all the tests in headless mode)
To re-create the environment for a fresh state:
pnpm env:restart
(resets and restarts the local environment)
You can refer to the pnpm scripts in the package.json
file for more commands. Check out the env:some-command
scripts
for managing the wp-env
environment.
Other ways of running tests (make sure you are in the plugins/woocommerce
folder):
pnpm test:e2e
(usual, headless run)pnpm test:e2e --headed
(headed -- displaying browser window and test interactions)pnpm test:e2e --debug
(runs tests in debug mode)pnpm test:e2e basic.spec.js
(runs a single test file -basic.spec.js
in this case)pnpm test:e2e ./tests/e2e-pw/tests/merchant
(runs all tests that are found in themerchant
folder)pnpm test:e2e --ui
(open tests in Playwright UI mode).
To see all the Playwright options, make sure you are in the plugins/woocommerce
folder and
run pnpm playwright test --help
Tip
If you're looking on how to run the API tests (which are part of the same suite as the classic e2e tests), they can be run as you would run any other tests folder in the suite. Keep in mind that from a tool point of view they are only a folder in the main e2e tests project as any other folder.
For convenience, a test:api
command is offered that will run all the tests in the api-tests
folder against the
default environment, but this may change. You can always find the setup by checking the package.json
scripts section and the playwright.config.js
.
The default environment configuration can be found in the .wp-env.json
file in the plugins/woocommerce
folder.
For more information on how to configure the test environment for wp-env
, please check out
the official documentation.
The test site URL and the credentials can be set via environment variables. If no variables are set, the defaults will be used,
as configured in the test-data/data.js
file.
If you'd like to overwrite the default values to run against a different environment (external host for
example), you can create a .env
file in tests/e2e-pw/
:
BASE_URL='https://www.example.com'
ADMIN_USER='admin.username'
ADMIN_PASSWORD='admin.password'
CUSTOMER_USER='customer.username'
CUSTOMER_PASSWORD='customer.password'
Warning
Running the tests using the test:e2e
command will overwrite the .env
file! If you want to use your own custom .env
file you should read further on how to create an alternative env, or you should run the tests using the raw Playwright
command: pnpm playwright ...
There are some pre-defined environments set in the tests/e2e-pw/envs
path.
Each folder represents an environment, and contains a setup script, a playwright.config.js
file and optionally an
encrypted .env
file.
Running the tests with one of these environments will first decrypt the .env.enc
file if it exists, execute the setup
script and then run the tests using the configuration in the playwright.config.js
file.
To run the tests using one of these environment, you can use the test:e2e:with-env
script. Some examples:
# Runs the tests using the gutenberg-stable environment,
# which is set up to run a subset of relevant tests against a wp-env instance with the latest stable version of the Gutenberg plugin
pnpm test:e2e:with-env gutenberg-stable
# Runs the tests using the default-pressable environment,
# which is an external site configured to run the tests against a permanent environment.
# The envs/default-pressable/.env.enc file will be decrypted into .env and used to set the required environment variables
pnpm test:e2e:with-env default-pressable
# Runs all the tests with the default environment. `pnpm test:e2e` already does that, but only runs e2e, ignoring the API tests.
pnpm test:e2e:with-env default
To decrypt the .env file, the E2E_ENV_KEY
environment variable must be set.
If you're an a11n you can find the key in the Secret Store.
Run with the E2E_ENV_KEY
environment variable set:
E2E_ENV_KEY='your-key' pnpm test:e2e:with-env default-pressable
If you need to create a new pre-defined environment, you can follow these steps:
- create a new folder in the
tests/e2e-pw/envs
directory with the name of the environment. Example:tests/e2e-pw/envs/my-new-env
- create an
env-setup.sh
file in the new folder. This file should contain any setup steps for the environment. This will run before any test execution. - create a
playwright.config.js
file in the new folder. This file should contain the configuration for the environment. It's recommended that the config extends the default configuration and only updates the necessary values. - if you need to store an encrypted
.env
file, first create the.env
file in thetests/e2e-pw
folder, then runE2E_ENV_KEY='your-key' ./tests/e2e-pw/bin/dotenv.sh -e my-new-env
. This script command will encrypt the.env
file intotests/e2e-pw/envs/my-new-env/.env.enc
.
Tip
Creating an environment directory starting with _local
will make it ignored by git, so you can store your local environment configurations without worrying about accidentally committing them.
Example: _local_my-own-jn-testing-site
There are no hard rules for writing tests, but use your common sense when it comes to code duplication and layers of abstractions. The tests should be easy to read and maintain. We think that Playwright offers a good balance between simplicity and power, so we recommend using it as it is.
Still, here's a few tips to get you started:
- create isolated tests
- use fixtures for common setup steps
- create utils for common actions
- use web first assertions
- when locating elements, prioritize user-facing attributes
Playwright's Best Practices guide is a good read: Playwright Best Practices.
The tests would generate three kinds of reports after the run:
- A Playwright HTML report.
- A Playwright JSON report.
- Allure results.
By default, they are saved inside the test-results
folder.
Use the playwright show-report $PATH_TO_PLAYWRIGHT_HTML_REPORT
command to open the report. For example, assuming that
you're at the root of the WooCommerce monorepo, and that you did not specify a custom location for the report, you would
use the following commands:
cd plugins/woocommerce
pnpm exec playwright show-report tests/e2e-pw/test-results/playwright-report
For more details about the Playwright HTML report, see their HTML Reporter documentation.
This assumes that you're already familiar with reports generated by the Allure Framework, particularly:
- What the
allure-results
andallure-report
folders are, and how they're different from each other. - Allure commands like
allure generate
andallure open
.
Use the allure generate
command to generate an HTML report from the allure-results
directory created at the end of
the test run. Then, use the allure open
command to open it on your browser. For example, assuming that:
- You're at the root of the WooCommerce monorepo
- You want to generate the
allure-report
folder inplugins/woocommerce/tests/e2e-pw/test-results
Then you would need to use the following commands:
pnpm exec allure generate --clean plugins/woocommerce/tests/e2e-pw/test-results/allure-results --output plugins/woocommerce/tests/e2e-pw/test-results/allure-report
pnpm exec allure open plugins/woocommerce/tests/e2e-pw/test-results/allure-report
A browser window should open the Allure report.
If you're on WSL however, you might get this message right after
running the allure open
command:
Starting web server...
2022-12-09 18:52:01.323:INFO::main: Logging initialized @286ms to org.eclipse.jetty.util.log.StdErrLog
Can not open browser because this capability is not supported on your platform. You can use the link below to open the report manually.
Server started at <http://127.0.1.1:38917/>. Press <Ctrl+C> to exit
In this case, take note of the port number (38917 in the example above) and then use it to navigate to localhost. Taking the example above, you should be able to view the Allure report on localhost:38917 in your browser.
To know more about the allure-playwright
integration, see
their GitHub documentation.
For Playwright debugging, follow Playwright's documentation.