Newer
Older
There are two types of tests: "testinfra" tests, and "behave" tests. "Testinfra"
tests run on the OAS machine and test if the infrastructure of the machine is
setup correctly. They also test the validity of TLS certificates. The
"behave" tests run in a browser and test if all the interfaces are still up and
running.
Test host configured in `../clusters/CLUSTERNAME/inventory.yml`
export INVENTORY=../clusters/CLUSTERNAME/inventory.yml
py.test -v --ansible-inventory=${INVENTORY} --hosts='ansible://*'
py.test -v --hosts='ssh://root@example.openappstack.net'
Run only tests tagged with `prometheus`:
py.test -v --ansible-inventory=${INVENTORY} --hosts='ansible://*' -m prometheus
Run cert test manually using the ansible inventory file:
ADDRESS='example.openappstack.net' py.test -v -m 'certs' \
--hosts='ansible://*'
Run cert test manually against a different cluster, not configured in any
ansible inventory file, either by using pytest:
ADDRESS='example.openappstack.net' py.test -v -m 'certs'
or directly (allows better debugging since pytest won't eat stdout):
ADDRESS='example.openappstack.net' pytest/test_certs.py
## Run *behave* tests
The behave tests are controlled by the `openappstack` CLI command suite. To run
the behave tests, run the following command in this repository:
python -m openappstack CLUSTERNAME test
In the future, this command will run all tests, but now only *behave* is
implemented. To learn more about the `test` subcommand, run:
python -m openappstack CLUSTERNAME test --help
## Known Issues
- Default ssh backend for testinfra tests is `paramiko`, which doesn't work oout
of the box. It fails to connect to the host because the `ed25519` hostkey was
not verified. Therefore we need to force plain ssh:// with either
# Running bootstrap CI with local gitlab-runner docker executor
Export the following environment variables like this:

Maarten de Waard
committed
export CI_REGISTRY_IMAGE='open.greenhost.net:4567/openappstack/openappstack'
export SSH_PRIVATE_KEY="$(cat ~/.ssh/id_ed25519_oas_ci)"
export COSMOS_API_TOKEN='…'
then:
gitlab-runner exec docker --env CI_REGISTRY_IMAGE="$CI_REGISTRY_IMAGE" --env SSH_PRIVATE_KEY="$SSH_PRIVATE_KEY" --env COSMOS_API_TOKEN="$COSMOS_API_TOKEN" bootstrap