Code Monkey home page Code Monkey logo

magento2-cypress-testing-suite's Introduction

elgentos/magento2-cypress-testing-suite

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.

image

A successful Cypress run which tests the store at https://hyva-demo.elgentos.io

Table of Contents

Prerequisites

  • Magento 2.3.x / 2.4.x
  • Hyvä (1.1.17) or Luma-based theme
  • npm
  • An admin bearer token (see Setup)

Assumptions & limitations

Assumptions

  • Magento 2 runs in Single Store Mode

  • Default language is English

  • Viewport is 1920x1280, with support for mobile viewports

  • Sample Data is installed

  • Multi Source Inventory is not used

Not plug & play

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.

Open source-only right now

We don't do Commerce builds over at elgentos, so we haven't spent time creating tests for Commerce-only functionality.

No 100% test coverage

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.

No extensibility / inheritance of tests

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 React Checkout is used

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.

Progress

We are at 73%; 57 out of the proposed 78 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 a add to cart button is present
🔲 it shows the cookie banner when cookies are not accepted yet (vanilla hyva 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 productprices 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 titel 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 wislist
✔️ 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)
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

Installation

First, install Cypress in the root of your Magento 2 project:

npm install cypress --save-dev
npm install cypress-file-upload cypress-localstorage-commands cypress-tags typescript --save-dev

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

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

Setup

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"
}

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>.

Tags

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.

Running

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

Running against local environment

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.

Environment variables

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 to develop the development base URL configured in cypress.config.js will be used, and the default timeout is set to 10 seconds
  • CYPRESS_MAGENTO2_BASE_URL If set, this value will be used as the Magento 2 base_url. Otherwise, the base URL from cypress.config.js will be used.
  • CYPRESS_MAGENTO2_SPEC_PATTERN If set, only tests matching this glob pattern will be executed. Otherwise, the tests configured in cypress.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 to develop, or 4 seconds otherwise.
  • CYPRESS_MAGENTO2_ADMIN_TOKEN Used to authenticate against the Magento 2 API for setting up test fixtures.
  • MAGENTO2_SKIP_CHECKOUT Set to a truthy value to skip any Hyvä tests that assume a Checkout is installed.

Contributing

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 use cy.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).

magento2-cypress-testing-suite's People

Contributors

andrewrmillar avatar gregorrw avatar kolaente avatar lefte avatar morgy93 avatar nisrinemach avatar peterjaap avatar torhoehn avatar vinai avatar vladhorielov avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.