docs: more integration test suite tweaks
continuous-integration/drone/push Build is passing Details

This commit is contained in:
decentral1se 2023-09-07 15:42:39 +02:00
parent aece8d4118
commit 9eb32ce6f2
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410
1 changed files with 6 additions and 5 deletions

View File

@ -20,25 +20,26 @@ Our [Drone CI configuration](https://git.coopcloud.tech/coop-cloud/abra/src/bran
Please use the [conventional commit format](https://www.conventionalcommits.org/en/v1.0.0/) for your commits so we can automate our change log.
## `abra` integration tests
## Integration tests
We use [`bats`](https://bats-core.readthedocs.io/en/stable/), you can install
the required dependencies with the following. You also need a working
installation of Docker and Go.
```
apt install bats bats-assert bats-support jq make git
apt install bats bats-file bats-assert bats-support jq make git
```
Then you can run the integration test suite with the following:
```
export TEST_DOMAIN="test.example.com"
export ABRA_DIR="$HOME/.abra_test"
bats tests/integration --timing --pretty
bats tests/integration
```
You can use `--filter <name>` to run specific tests. Or pass the filename to
run all tests from a specific file.
`TEST_DOMAIN` should also have a DNS A record for `*.test.example.com` which
points to the same server so that the test suite can deploy apps freely.
## Using the `abra` public API