forked from matrix-org/matrix-rust-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: Merge the two integration test suites into a single one
- Loading branch information
Showing
16 changed files
with
88 additions
and
265 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
data/ |
35 changes: 31 additions & 4 deletions
35
testing/matrix-sdk-integration-testing/assets/docker-compose.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,43 @@ | ||
|
||
version: '3' | ||
|
||
services: | ||
|
||
synapse: | ||
build: . | ||
restart: "no" | ||
healthcheck: | ||
disable: true | ||
volumes: | ||
- matrix-rust-sdk-ci-data:/data | ||
- ./data/synapse:/data | ||
ports: | ||
- 8228:8008/tcp | ||
|
||
volumes: | ||
matrix-rust-sdk-ci-data: | ||
postgres: | ||
image: docker.io/postgres | ||
environment: | ||
POSTGRES_PASSWORD: postgres | ||
POSTGRES_USER: postgres | ||
POSTGRES_DB: syncv3 | ||
healthcheck: | ||
test: ["CMD", "pg_isready"] | ||
interval: 10s | ||
timeout: 5s | ||
retries: 5 | ||
volumes: | ||
- ./data/db:/var/lib/postgresql/data | ||
|
||
sliding-sync-proxy: | ||
image: ghcr.io/matrix-org/sliding-sync:v0.99.4 | ||
depends_on: | ||
postgres: | ||
condition: service_healthy | ||
links: | ||
- synapse | ||
- postgres | ||
environment: | ||
SYNCV3_SERVER: http://synapse:8008 | ||
SYNCV3_SECRET: SUPER_SECRET | ||
SYNCV3_BINDADDR: ":8338" | ||
SYNCV3_DB: "user=postgres password=postgres dbname=syncv3 sslmode=disable host=postgres" | ||
ports: | ||
- 8338:8338 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ mod invitations; | |
mod reactions; | ||
mod redaction; | ||
mod repeated_join; | ||
mod sliding_sync; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.