matrix-rust-sdk/testing/matrix-sdk-integration-testing
Benjamin Kampmann b5bd6dfee9
fix: Apply redactions to room state events in database, too (#917)
fixes #890
2022-09-27 09:24:53 +02:00
..
assets Update testing/matrix-sdk-integration-testing/assets/ci-start.sh 2022-09-06 12:42:54 +02:00
src fix: Apply redactions to room state events in database, too (#917) 2022-09-27 09:24:53 +02:00
Cargo.toml fix: Apply redactions to room state events in database, too (#917) 2022-09-27 09:24:53 +02:00
README.md style(test): fix styles of integration tests 2022-07-18 17:55:31 +02:00

README.md

Matrix SDK integration test

Requirements

This requires a synapse backend with a ci patched configuration. You can easily get it up and running with docker-compose via:

docker-compose -f assets/docker-compose.yml up -d
docker-compose -f assets/docker-compose.yml logs --tail 100 -f

Patches You can see the patches we do to configuration (namely activate registration and resetting rate limits), check out what assets/ci-start.sh changes.

Running

The integration tests expect environment variables HOMESERVER_URL be the http-url to access the synapse server and HOMESERVER_DOMAIN to be set to the domain configured in that server. If you are using the provided docker-compose, the default will be fine.

Maintenance

To drop the database of your docker-compose run:

docker-compose -f assets/docker-compose.yml stop
docker volume rm -f assets_marix-rust-sdk-ci-data