Prerequisites:
- Yarn (
1.22.xor newer) - for running E2E tests - Docker (
27.x.xor newer) - for running ELK environment - Kind (
0.26.xor newer) - for running ECK environment
To bootstrap a Docker-based or ECK environment (ES with latest ROR + KBN with latest ROR) and execute Cypress E2E tests run:
./main.sh --mode e2e --elk 8.15.2 --env dockeror
./main.sh --mode e2e --elk 7.17.24 --env eckYou can also run cluster bootstrap test in context of a Docker-based or ECK environment:
./main.sh --mode bootstrap --elk 8.15.2 --env dockeror
./main.sh --mode bootstrap --elk 7.17.24 --env eckYou can bootstrap the test env and run tests separately (to not build the ES+KBN+ROR stack every test run).
To run the env:
(running the latest version of ROR from Docker Hub production repo)
./environments/elk-ror/start.sh --es "8.15.0" --kbn "8.15.2"(running the given version of ROR from Docker Hub development repo)
./environments/elk-ror/start.sh --es "8.15.0" --kbn "8.15.2" --ror-es 1.62.0-pre5 --ror-kbn 1.62.0-pre5 --devor
(running the latest version of ROR from Docker Hub production repo)
./environments/eck-ror/start.sh --es "8.15.0" --kbn "8.15.2"(running the given version of ROR from Docker Hub development repo)
./environments/eck-ror/start.sh --es "8.15.0" --kbn "8.15.2" --ror-es 1.62.0-pre5 --ror-kbn 1.62.0-pre5 --devTo run tests on the env from a docker environment:
./e2e-tests/run-tests.sh "8.15.2" "elk-ror"To run tests on the env from eck environment:
./e2e-tests/run-tests.sh "8.15.2" "eck-ror"cd e2e-tests; yarn cypress open --env kibanaVersion=[KBN_VERSION]Prerequisites:
- Docker (
26.x.xor newer)
Bootstrapping test environment and running tests inside a docker container (you don't need to have Yarn installed on your host - it's a docker-compose based environment):
$ ./docker-based-ror-dev-env/runE2ETests8xInDocker.sh$ ./docker-based-ror-dev-env/runE2ETests7xInDocker.shThe test environment is created with the Docker Compose. All code is located in the environments/elk-ror folder. Currently, the latest version of ROR is downloaded for the sake of tests. In the future, we are going to improve it and build plugins from sources too.
The Cypress-based tests are located in the e2e-tests/cypress/e2e. Screenshots and videos for test runs will be stored in results/videos and results/snapshots folders.
If you prefer, you can use scripts from the docker-based-ror-dev-env folder to run them inside a docker container of the Docker-based ROR development environment image. It's not needed, but it can be helpful in the following cases:
- you don't want to install Yarn (or any other JS-related tools) on your host
- you want to test if maybe there is some problem with your tools installed on the host
- you want to check what has to be installed to run the stack with no issues
- it can be used in the pipeline if you want to use custom runners without special preparation for them
Remember that most of the tests assume that ROR KBN is run with the Enterprise license. You have to set it on your host as an environment variable ROR_ACTIVATION_KEY. You can obtain a trial activation key in the Customer Portal or use the developer one.