A community-driven Cypress testing suite for Magento 2
This testing suite was announced in Peter Jaap his talk about Cypress testing in Magento 2 at Reacticon 4. Watch the talk for more information about Cypress testing.
A successful Cypress run which tests the store at https://hyva-demo.elgentos.io
homepage.spec.js tests running on https://hyva-demo.elgentos.io
You can see all runs of this testing suite in the public Cypress Dashboard for this project. See for example this succesfull run.
-
Magento 2 runs in Single Store Mode
-
Default language is English
-
Viewport is 1920x1280, with support for mobile viewports
-
Sample Data is installed
This test suite is not plug & play for your store. A number of tests rely on Magento's default sample data. These tests will fail when you don't have the sample data. It is up to you to change the fixtures/selectors/tests to make them pass for your store.
We don't do Commerce builds over at elgentos, so we haven't spent time creating tests for Commerce-only functionality.
We do not particularly strive for 100% test coverage. We have identified the most common and most revenue-dependent scenarios. For example, we do test viewing products, filtering categories, adding products to the cart etc, but we (currently) do not test the Email a Friend or Compare Products feature since these are rarely used in an average Magento store. We are perfectly willing to merge a PR with these tests of course.
You need to copy the whole suite into your project. We are open to suggestions on how to solve this, see Discussions.
The Hyvä checkout tests assume the Hyvä React Checkout. To skip checkout related Hyvä tests, set the environment variable CYPRESS_MAGENTO2_SKIP_CHECKOUT
.
PR's are definitely welcome to improve the checkout related tests.
We are at 80%; 69 out of the proposed 86 tests are done.
Wording & naming are subject to change.
Spec file | Group | Test |
---|---|---|
account.spec.js |
Account test creation | ✔️ it can create an account to log in with |
Account activities | ✔️ it creates an account to log in with and use for further testing | |
✔️ it can log out | ||
✔️ it can show the account information page and display the name of the customer | ||
✔️ it can change the password | ||
✔️ it can change the name of the customer on the account information page | ||
✔️ it can navigate to all customer account pages and displays the correct titles | ||
✔️ it can navigate to order history and displays that there are no placed orders | ||
✔️ it can add a new address | ||
✔️ it can change an existing address | ||
✔️ it can remove an address | ||
✔️ it subscribe through the newsletter subscription page | ||
✔️ it can add an address automatically when an order is placed | ||
✔️ it can add a product to the wishlist of the logged in customer on a productpage and store it | ||
✔️ it can edit the wishlist on the wishlist page | ||
🔲 it can reset the password when it is forgotten | ||
Do not login before these tests | ✔️ it can login from cart without making changes to the cart | |
✔️ it can login from checkout | ||
product-searches.spec.js |
Perform searches | ✔️ it can perform search with multiple hits |
✔️ it can find a single product | ||
✔️ it can show a page for no search results when the searchterm cannot give any results | ||
✔️ it can show suggestions when entering search terms | ||
category.spec.js |
Category page tests | ✔️ it can navigate to the category page and filter products on the color red |
✔️ it can sort the products on price from lowest to highest | ||
✔️ it can change the number of products to be displayed | ||
✔️ it checks if the breadcrumb is displayed correctly | ||
✔️ it checks if the pagination is working | ||
✔️ it can switch from list to grid view | ||
homepage.spec.js |
Home page tests | ✔️ it can navigate to the homepage |
✔️ it can perform search from homepage | ||
✔️ it can open a category | ||
✔️ it can show the header correctly and all links work | ||
✔️ it can show the footer correctly and all links work | ||
🔲 it can show the main section of the homepage correctly and all links work | ||
✔️ it can subscribe to the newsletter | ||
✔️ it can add products shown on the homepage to the cart when an add to cart button is present | ||
🔲 it shows the cookie banner when cookies are not accepted yet (Vanilla Hyvä shows no cookie banner) | ||
checkout.spec.js |
Checkout tests (guest) | 🔲 it shows the correct products and quantities previously added to the cart |
✔️ it shows correct prices like subtotal, VAT, shipping costs and total | ||
✔️ it can see coupon discount in checkout | ||
🔲 it can properly choose and use all listed payment methods | ||
🔲 it can properly choose and use all listed shipping methods | ||
🔲 it a conformation mail is send to the customer after placing the order | ||
🔲 it an invoice is created and sent to the customer after placing the order | ||
✔️ it after placing the order it is properly processed in the backend' | ||
Checkout tests (logged in) | 🔲 it can automatically fill in the name and address of the customer | |
✔️ it can find and order in the customer order history after having placed an order | ||
cart.spec.js |
Cart tests | ✔️ it can add a product to the cart |
✔️ it can change the quantity in the cart | ||
✔️ it can remove a product from the cart | ||
✔️ it can add a coupon to the cart | ||
✔️ it can delete an added coupon from the cart | ||
✔️ it cannot add a non existing coupon | ||
✔️ it displays the correct product prices and totals | ||
🔲 it merges an already existing cart when a customer logs in | ||
minicart.spec.js |
Minicart tests | ✔️ it can open the cart slider by clicking on the cart icon in the header |
✔️ it checks if the items and prices in the slider are displayed correctly | ||
✔️ it can delete an item in the cart slider | ||
✔️ it can change the quantity of an item in the cart slider | ||
✔️ it can navigate to the cart with a link in the slider | ||
✔️ it can navigate to the checkout with a link in the slider | ||
product-page.spec.js |
Product page tests | ✔️ it can display the title and image of the product |
✔️ it shows the product price | ||
✔️ it can configure the product when it is an configurable product | ||
✔️ it can add the product to the cart | ||
✔️ it can't add the product to the cart if it is a configurable product and no options are selected | ||
✔️ it can add the product to the wishlist | ||
✔️ it shows the correct breadcrumb | ||
✔️ it can show reviews made by logged in customers | ||
✔️ it can add a review when logged in | ||
✔️ it can indicate if a product is in stock | ||
✔️ it can't add a product to the cart when the product is out of stock (commented out, needs admin token in the cypress.env.json) | ||
Bundle products test | ✔️ it can render the product name | |
✔️ it can set the price to zero when every associated product qty is zero | ||
✔️ it can calculate the price based on selected options | ||
✔️ it can display selection quantities | ||
✔️ it can add a bundled product to the cart | ||
cms-page.spec.js |
CMS page tests | 🔲 it shows the default 404 page on an non-existent route |
🔲 it can open the default CMS page correctly | ||
contact-form.spec.js |
Contact form tests | ✔️ it shows the contact form correctly |
🔲 it cannot submit a form when no valid email address is entered | ||
✔️ it can submit the form when all validation passes | ||
back-end.spec.js |
Back-end tests | 🔲 it can login on the administration panel of the magento environment |
🔲 it can show customer data | ||
🔲 it processes orders and invoices correctly | ||
🔲 it can edit an order |
First, install Cypress and the dependencies in the root of your Magento 2 project:
npm ci
The easiest way to install the tests is to clone this repository and move the cypress
folder into your project. As of right now, we do not provide a fallback mechanism for customizations to the tests, see Limitations.
git clone [email protected]:elgentos/magento2-cypress-testing-suite.git
mv magento2-cypress-testing-suite/cypress .
mv magento2-cypress-testing-suite/cypress.config.js .
rm -rf magento2-cypress-testing-suite
npm install cypress:^12.2.0 cypress-localstorage-commands:^2.2.2 cypress-tags:^1.1.2 typescript:^4.8.3
If you only need the Hyvä tests:
rm -rf cypress/{fixtures,page-objects,integration}/luma
If you only need the Luma tests;
rm -rf cypress/{fixtures,page-objects,integration}/hyva
Then edit the cypress.config.js
file in the root of your project to update your baseUrl and possibly some other defaults we've set:
const baseUrl =
process.env.NODE_ENV === "develop"
? "http://cypress.magento2.localhost"
: "https://example.com/";
Also add these lines to your .gitignore
to avoid cluttering your Git repo;
node_modules
cypress/screenshots
cypress/videos
cypress.env.json
Some tests are dependent on making changes in the database. This is done through the Magento 2 REST API. You will need to create an admin token for these tests. This is easily done using magerun2.
Get a list of all the admin users: magerun2 admin:user:list
If you don't have any admin users, create one; magerun2 admin:user:create --admin-user=john --admin-firstname=John --admin-lastname=Doe --admin-password=JohnDoe123 --admin-email="[email protected]"
Then create a token: magerun2 admin:token:create username_goes_here
You then can add the token to cypress.env.json
as an environment variable:
{
"MAGENTO2_ADMIN_TOKEN": "token_goes_here"
}
Overwrite the base url
{
"MAGENTO2_BASE_URL": "https://demoshops.splendid-internet.de/magento/demoshop-magento2-daily"
}
Alternatively you can set it in your CI/CD variables by prefixing the environment variable name with CYPRESS_
: CYPRESS_MAGENTO2_ADMIN_TOKEN: <token_goes_here>
.
We use tags to discern between hot tests and cold tests. If you followed the installation instructions above the cypress-tags
module is already installed.
Note: it is used in the cypress.config.js
file in the setupNodeEvents
callback.
npx cypress run
# npx cypress open # if you want to use the GUI
Individual specs can be run using the following command:
npx cypress run --spec ./cypress/integration/path/to/some.spec.js
Hot and cold tests based on tags can be run using the following command:
CYPRESS_INCLUDE_TAGS=hot npx cypress run
Set up your local base URL in cypress.config.js
, or export CYPRESS_MAGENTO2_BASE_URL
.
Then run Cypress with NODE_ENV=develop; npx cypress run
.
Even though the test suite is intended to become part of a project, it is possible to change some behavior using environment variables.
This is useful for running the suite in different environments, for example, development, CI, or against production.
NODE_ENV
if set todevelop
the development base URL configured incypress.config.js
will be used, and the default timeout is set to 10 secondsCYPRESS_MAGENTO2_BASE_URL
If set, this value will be used as the Magento 2 base_url. Otherwise, the base URL fromcypress.config.js
will be used.CYPRESS_MAGENTO2_SPEC_PATTERN
If set, only tests matching this glob pattern will be executed. Otherwise, the tests configured incypress.config.js
will be used.CYPRESS_MAGENTO2_EXPORT_PATTERN
If set, tests matching this glob pattern will be excluded.CYPRESS_MAGENTO2_DEFAULT_TIMEOUT
If set, used as the default timeout. Otherwise, the timeout defaults to 10 seconds if NODE_ENV is set todevelop
, or 4 seconds otherwise.CYPRESS_MAGENTO2_ADMIN_TOKEN
Used to authenticate against the Magento 2 API for setting up test fixtures.CYPRESS_MAGENTO2_SKIP_CHECKOUT
Set to a truthy value to skip any Hyvä tests that assume a Checkout is installed.CYPRESS_MAGENTO2_SPEC_SUITE
Set the test suite to run, if not set defaults toluma
orhyva
depending on response headers.
Any of these can also be configured in a cypress.env.json
file without the CYPRESS_
prefix.
Spec files in extensions will be found by the default spec pattern at
app/code/**/Test/Cypress/hyva/**/*.spec.js
orapp/code/**/Test/Cypress/luma/**/*.spec.js
vendor/**/Test/Cypress/hyva/**/*.spec.js
orvendor/**/Test/Cypress/luma/**/*.spec.js
Tests for different frontends can be supplied by using a different folder in Test/Cypress
and setting the MAGENTO2_SPEC_SUITE
config to that name.
For example: app/code/Example/Module/Test/Cypress/vue/user/account.spec.js
would be found by
CYPRESS_MAGENTO2_SPEC_SUITE=vue npx cypress run
If you do not want all tests to be run, regardless of the folder names, set MAGENTO2_SPEC_SUITE
to an empty string.
homepage.spec.js.mp4
homepage.spec.js tests running on https://hyva-demo.elgentos.io
product.spec.js.mp4
product.spec.js tests running on https://hyva-demo.elgentos.io
category.spec.js.mp4
category.spec.js tests running on https://hyva-demo.elgentos.io
product-searches.spec.js.mp4
product-searches.spec.js tests running on https://hyva-demo.elgentos.io
We are very open to contributions! We would love to have mobile viewport support for Hyvä, tests for Commerce functionality, additional tests, code improvements, a fallback mechanism, etcetera etcetera. See the Issues tab for issues to pick up.
We will be updating this readme soon with extensive contribution guidelines, but here is a short summary:
- Avoid creating global
cy
functions (Custom Commands), instead put functions in utils/helpers and import them - Avoid creating aliases that are only used once
- Use
cy.get()
as much as possible, only usecy.contains()
in specific cases - try to avoid it - Do not add assertions to page objects, move those to the spec files. Red flag;
should()
in a page object - Every test (an
it()
function) has to be able to run stand-alone; it should not depend on any other test. You can test this by add.only
(see Cypress docs).