24
1
Fork 0
drop.chapril.org-firefoxsend/test/integration
timvisee 3165086869
Remove legal page, add no affiliation text in footer
2021-01-09 19:14:42 +01:00
..
fixtures Added webdriverio integration tests 2018-10-03 11:22:30 -07:00
pages/desktop Strip tracking url parameters 2019-10-15 15:29:48 +02:00
README.md Remove Firefox branding from app name in documentation and other files 2020-10-15 18:52:41 +02:00
download-tests.js Remove Firefox branding from app name in documentation and other files 2020-10-15 18:52:41 +02:00
homepage-tests.js Remove legal page, add no affiliation text in footer 2021-01-09 19:14:42 +01:00
progress-tests.js Remove Firefox branding from app name in documentation and other files 2020-10-15 18:52:41 +02:00
send-test.html Added webdriverio integration tests 2018-10-03 11:22:30 -07:00

README.md

Integration Tests for Send.

How to run the tests locally

Clone the repository

If you have cloned this project already then you can skip this, otherwise you'll need to clone this repo using Git. If you do not know how to clone a GitHub repository, check out this help page from GitHub.

If you think you would like to contribute to the tests by writing or maintaining them in the future, it would be a good idea to create a fork of this repository first, and then clone that. GitHub also has great instructions for forking a repository.

App Setup

Please view the README at the root directory of the project.

Run the tests

Included in the docker-compose file is an image containing Firefox Nightly. tox is our test environment manager and pytest is the test runner.

To run the tests, execute the commands below:

npm run build
npm run test-integration

Adding a test

The tests are written in Python using a POM, or Page Object Model. The plugin we use for this is called pypom. Please read the documentation there for good examples on how to use the Page Object Model when writing tests.

The pytest plugin that we use for running tests has a number of advanced command line options available too. The full documentation for the plugin can be found here.

Watching a test run (within the docker container)

The tests are run on a live version of Firefox, but they are run headless. To access the container where the tests are run to view them follow these steps:

  1. Make sure all of the containers are running:
docker-compose ps

If not start them detached:

docker-compose up -d
  1. Open your favorite VNC viewer and type in localhost:5900.
  2. The password is secret.
  3. The viewer should open a window with a Ubuntu logo. If that happens you are connected to the selenium-firefox image and if you start the test, you should see a Firefox window open and the tests running.

Debugging a failure

Whether a test passes or fails will result in a HTML report being created. This report will have detailed information of the test run and if a test does fail, it will provide geckodriver logs, terminal logs, as well as a screenshot of the browser when the test failed. We use a pytest plugin called pytest-html to create this report. The report can be found at coverage/send-test.html. It should be viewed within a browser.