title | date | weight | geekdocRepo | geekdocEditPath | geekdocFilePath |
---|---|---|---|---|---|
Running tests |
2021-07-27 00:00:00 +0000 |
60 |
edit/master/docs/testing |
testing.md |
{{< toc >}}
In order to allow us to make changes quickly, often and with a high level of confidence, we heavily rely on tests within the web
repository.
All the steps below require you to have the web
repo cloned locally and dependencies installed.
This can be achieved by running
$ git clone https://github.com/owncloud/web.git
$ cd web
$ pnpm install
We have a steadily growing coverage of unit tests. You can run them locally via
$ pnpm test:unit
You can also specify which tests to run by giving a path param, like so: pnpm test:unit packages/<app-name>/tests/unit/path/to/test.spec.js
.
Our unit tests spec files follow a simple structure:
- fixtures and mocks at the top
- helper functions at the bottom
- tests in between
We usually organize tests with nested describe
blocks. If you would like to get feedback from the core team about
the structure, scope and goals of your unit tests before actually writing some, we invite you to make a pull request
with only describe
blocks and nested it.todo("put your test description here")
lines.
Our end-to-end test suite is built upon the Playwright Framework, which makes it easy to write tests, debug them and have them run cross-browser with minimal overhead.
Please make sure you have installed all dependencies and started the server(s) as described in [tooling]({{< ref "tooling.md#development-setup" >}}).
Bundle the web frontend with the following command:
$ pnpm build:w
Our compose setup automatically mounts it into an oCIS backend, respectively. Web also gets recompiled on changes.
The following command will run all available e2e tests:
$ pnpm test:e2e:cucumber 'tests/e2e/cucumber/**/*.feature'
To run a particular test, simply add the feature file and line number to the test command, e.g. pnpm test:e2e:cucumber tests/e2e/cucumber/features/smoke/admin-settings/users.feature:84
Various options are available via ENV variables, e.g.
BASIC_AUTH=true
use basic authorization for api requests.RETRY=n
to retry failuresn
timesSLOW_MO=n
to slow the execution time byn
millisecondsTIMEOUT=n
to set tests to timeout aftern
millisecondsHEADLESS=bool
to open the browser while the tests run (defaults to true => headless mode)BROWSER=name
to run tests against a specific browser. Defaults to chromium, available are chromium, firefox, webkit, chromiumADMIN_PASSWORD
to set administrator password. By default, theadmin
password is used in the test
For debugging reasons, you may want to record a video or traces of your test run. Again, you can use the following ENV variables in your command:
REPORT_DIR=another/path
to set a directory for your recorded files (defaults to "reports")REPORT_VIDEO=true
to record a video of the test runREPORT_HAR=true
to save request information from the test runREPORT_TRACING=true
to record traces from the test run
To then open e.g. the tracing from the REPORT_DIR
, run
$ npx playwright show-trace path/to/file.zip
Run the following command to find out the lint issues early in the test codes:
$ pnpm lint
And to fix the lint problems run the following command:
$ pnpm lint --fix
If the lint problems are not fixed by --fix
option, we have to manually fix the code.
The cucumber library is used as the test runner for e2e tests. The report generator script lives inside the tests/e2e/cucumber/report
folder. If you want to create a report after the tests are done, run the command:
node tests/e2e/cucumber/report --report-input=tests/e2e/cucumber/report/report.json
By default, the report gets generated to reports/e2e/cucumber/releaseReport/cucumber_report.html.
The location can be changed by adding the --report-location
flag.
To see all available options run
node tests/e2e/cucumber/report --help
We can run some of the e2e tests on oCIS setup with Keycloak as an external idp. To run tests against locally, please follow the steps below:
There's a documentation to serve oCIS with Keycloak. Please follow each step to run oCIS with Keycloak.
KEYCLOAK=true \
BASE_URL_OCIS=ocis.owncloud.test \
pnpm run test:e2e:cucumber tests/e2e/cucumber/features/journeys
Following environment variables come in use while running e2e tests on oCIS with Keycloak:
BASE_URL_OCIS
sets oCIS url (e.g.: ocis.owncloud.test)KEYCLOAK_HOST
sets Keycloak url (e.g.: keycloak.owncloud.test)KEYCLOAK=true
runs the tests with KeycloakKEYCLOAK_REALM
sets oCIS realm name used on Keycloak