2020-01-12 05:27:59 -06:00
|
|
|
Cypress based test framework for LibreOffice Online
|
|
|
|
====================================================
|
|
|
|
|
2020-01-31 09:03:18 -06:00
|
|
|
|
|
|
|
|
2020-01-21 11:00:23 -06:00
|
|
|
Installation
|
|
|
|
------------------
|
2020-01-23 07:48:21 -06:00
|
|
|
In a normal desktop environment you only need to install npm
|
|
|
|
packages for running cypress tests. This is done by the build
|
2020-01-21 11:00:23 -06:00
|
|
|
system, so running 'make check' will do the basic installation.
|
|
|
|
https://docs.cypress.io/guides/getting-started/installing-cypress.html#npm-install
|
|
|
|
|
2020-01-23 07:48:21 -06:00
|
|
|
For CI you might need to install some additional dependencies:
|
2020-01-21 11:00:23 -06:00
|
|
|
https://docs.cypress.io/guides/guides/continuous-integration.html#Dependencies
|
|
|
|
|
2020-01-31 09:03:18 -06:00
|
|
|
|
2020-01-12 05:27:59 -06:00
|
|
|
Running tests
|
|
|
|
------------------
|
|
|
|
|
|
|
|
All tests are part of the make check build. So you can
|
2020-01-14 07:19:06 -06:00
|
|
|
just execute it from the root folder or under the
|
|
|
|
cypress_test folder to run cypress tests only.
|
2020-01-12 05:27:59 -06:00
|
|
|
|
|
|
|
make check
|
|
|
|
|
2020-01-15 07:55:03 -06:00
|
|
|
To run cypress test cases selectively, you need to
|
|
|
|
go in to the cypress_test folder first and run one of
|
|
|
|
the following commands.
|
2020-01-13 13:20:30 -06:00
|
|
|
|
2020-01-12 05:27:59 -06:00
|
|
|
To run all desktop tests:
|
|
|
|
|
2020-01-14 12:37:17 -06:00
|
|
|
make check-desktop
|
2020-01-12 05:27:59 -06:00
|
|
|
|
|
|
|
To run all mobile tests:
|
|
|
|
|
2020-01-14 12:37:17 -06:00
|
|
|
make check-mobile
|
2020-01-12 05:27:59 -06:00
|
|
|
|
2020-01-13 13:20:30 -06:00
|
|
|
To run one specific test suit of desktop tests:
|
|
|
|
|
2020-01-15 07:55:03 -06:00
|
|
|
make check-desktop spec=example_desktop_test_spec.js
|
2020-01-13 13:20:30 -06:00
|
|
|
|
|
|
|
To run one specific test suit of mobile tests:
|
|
|
|
|
2020-01-15 07:55:03 -06:00
|
|
|
make check-mobile spec=toolbar_spec.js
|
2020-01-13 13:20:30 -06:00
|
|
|
|
2020-01-31 09:03:18 -06:00
|
|
|
|
|
|
|
Running one specific test
|
|
|
|
------------------
|
|
|
|
|
2020-01-20 09:25:58 -06:00
|
|
|
To run one test case of a test suit you can use Mocha's
|
|
|
|
'only' feature. Just replace the it(...) function with
|
|
|
|
it.only(...) in the spec file for the selected test case
|
2020-01-31 09:03:18 -06:00
|
|
|
and run the test suit using the spec parameter.
|
|
|
|
|
|
|
|
For example, to run the test with title 'Apply font name.'
|
|
|
|
inside apply_font_spec.js file, you need to add it.only():
|
|
|
|
|
|
|
|
- it('Apply font name.', function() {
|
|
|
|
+ it.only('Apply font name.', function() {
|
|
|
|
|
|
|
|
Then run the test suit with:
|
|
|
|
|
|
|
|
make check-mobile spec=apply_font_spec.js
|
|
|
|
|
|
|
|
Or open the file in the interactive test runner.
|
|
|
|
|
|
|
|
make run-mobile
|
|
|
|
|
2020-01-20 09:25:58 -06:00
|
|
|
|
2020-01-21 11:00:23 -06:00
|
|
|
Openning interactive test runner
|
|
|
|
----------------------------------
|
|
|
|
|
|
|
|
Cypress has an interactive test runner application which
|
|
|
|
runs the test in the browser. So you can see the result of
|
|
|
|
the different steps your test makes in the browser. It's useful
|
|
|
|
during writing new tests or checking why an existing
|
|
|
|
test fails.
|
|
|
|
https://docs.cypress.io/guides/core-concepts/test-runner.html
|
2020-01-12 05:27:59 -06:00
|
|
|
|
2020-01-21 11:00:23 -06:00
|
|
|
To open desktop tests in the test runner:
|
2020-01-12 05:27:59 -06:00
|
|
|
|
2020-01-15 07:55:03 -06:00
|
|
|
make run-desktop
|
2020-01-12 05:27:59 -06:00
|
|
|
|
2020-01-21 11:00:23 -06:00
|
|
|
To open mobile tests in the test runner:
|
2020-01-12 05:27:59 -06:00
|
|
|
|
2020-01-15 07:55:03 -06:00
|
|
|
make run-mobile
|
2020-01-13 13:20:30 -06:00
|
|
|
|
|
|
|
During the build we run the tests with Chrome browser, so make sure
|
|
|
|
you select Chrome browser on the GUI while checking tests.
|
2020-01-21 11:00:23 -06:00
|
|
|
We are using different configuration and environment variables for
|
|
|
|
mobile and desktop tests, that's why there are two separate commands
|
|
|
|
for them and there is no option to open all the tests in the
|
|
|
|
test runner.
|