2019-05-24 14:00:03 +00:00
|
|
|
# SyTest
|
|
|
|
|
|
|
|
Dendrite uses [SyTest](https://github.com/matrix-org/sytest) for its
|
2019-06-21 15:49:37 +00:00
|
|
|
integration testing. When creating a new PR, add the test IDs (see below) that
|
2020-01-22 13:31:22 +00:00
|
|
|
your PR should allow to pass to `sytest-whitelist` in dendrite's root
|
|
|
|
directory. Not all PRs need to make new tests pass. If we find your PR should
|
|
|
|
be making a test pass we may ask you to add to that file, as generally
|
|
|
|
Dendrite's progress can be tracked through the amount of SyTest tests it
|
|
|
|
passes.
|
2019-06-21 15:49:37 +00:00
|
|
|
|
|
|
|
## Finding out which tests to add
|
|
|
|
|
|
|
|
We recommend you run the tests locally by manually setting up SyTest or using a
|
|
|
|
SyTest docker image. After running the tests, a script will print the tests you
|
2020-01-22 13:31:22 +00:00
|
|
|
need to add to `sytest-whitelist`.
|
2019-06-21 15:49:37 +00:00
|
|
|
|
|
|
|
You should proceed after you see no build problems for dendrite after running:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
./build.sh
|
|
|
|
```
|
|
|
|
|
|
|
|
### Manually Setting up SyTest
|
|
|
|
|
|
|
|
Make sure you have Perl v5+ installed, and get SyTest with:
|
|
|
|
|
|
|
|
(Note that this guide assumes your SyTest checkout is next to your
|
|
|
|
`dendrite` checkout.)
|
|
|
|
|
|
|
|
```sh
|
|
|
|
git clone -b develop https://github.com/matrix-org/sytest
|
|
|
|
cd sytest
|
|
|
|
./install-deps.pl
|
|
|
|
```
|
|
|
|
|
|
|
|
Set up the database:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
sudo -u postgres psql -c "CREATE USER dendrite PASSWORD 'itsasecret'"
|
|
|
|
sudo -u postgres psql -c "CREATE DATABASE sytest_template OWNER dendrite"
|
|
|
|
mkdir -p "server-0"
|
|
|
|
cat > "server-0/database.yaml" << EOF
|
|
|
|
args:
|
|
|
|
user: dendrite
|
|
|
|
database: dendrite
|
|
|
|
host: 127.0.0.1
|
2020-02-11 13:53:00 +00:00
|
|
|
sslmode: disable
|
2019-06-21 15:49:37 +00:00
|
|
|
type: pg
|
|
|
|
EOF
|
|
|
|
```
|
|
|
|
|
|
|
|
Run the tests:
|
|
|
|
|
|
|
|
```sh
|
2020-01-22 13:31:22 +00:00
|
|
|
./run-tests.pl -I Dendrite::Monolith -d ../dendrite/bin -W ../dendrite/sytest-whitelist -O tap --all | tee results.tap
|
2019-06-21 15:49:37 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
where `tee` lets you see the results while they're being piped to the file.
|
|
|
|
|
|
|
|
Once the tests are complete, run the helper script to see if you need to add
|
2020-01-22 13:31:22 +00:00
|
|
|
any newly passing test names to `sytest-whitelist` in the project's root directory:
|
2019-06-21 15:49:37 +00:00
|
|
|
|
|
|
|
```sh
|
2020-01-22 13:31:22 +00:00
|
|
|
../dendrite/show-expected-fail-tests.sh results.tap ../dendrite/sytest-whitelist ../dendrite/sytest-blacklist
|
2019-06-21 15:49:37 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
If the script prints nothing/exits with 0, then you're good to go.
|
|
|
|
|
|
|
|
### Using a SyTest Docker image
|
|
|
|
|
|
|
|
Ensure you have the latest image for SyTest, then run the tests:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
docker pull matrixdotorg/sytest-dendrite
|
|
|
|
docker run --rm -v /path/to/dendrite/:/src/ matrixdotorg/sytest-dendrite
|
|
|
|
```
|
|
|
|
|
|
|
|
where `/path/to/dendrite/` should be replaced with the actual path to your
|
|
|
|
dendrite source code. The output should tell you if you need to add any tests to
|
2020-01-22 13:31:22 +00:00
|
|
|
`sytest-whitelist`.
|