d73ff9b0fb
Deploy Site / deploy-vercel (push) Has been cancelled
Deploy Site / deploy-docs (push) Has been cancelled
Docker / shell lint / Lint Dockerfile (hadolint) (push) Has been cancelled
Docker / shell lint / Lint docker/ shell scripts (shellcheck) (push) Has been cancelled
Docker Build and Publish / build-amd64 (push) Has been cancelled
Docker Build and Publish / build-arm64 (push) Has been cancelled
Lint (ruff + ty) / ruff + ty diff (push) Has been cancelled
Lint (ruff + ty) / ruff enforcement (blocking) (push) Has been cancelled
Lint (ruff + ty) / Windows footguns (blocking) (push) Has been cancelled
Nix Lockfile Fix / auto-fix-main (push) Has been cancelled
Nix Lockfile Fix / fix (push) Has been cancelled
Nix / nix (macos-latest) (push) Has been cancelled
Nix / nix (ubuntu-latest) (push) Has been cancelled
OSV-Scanner / Scan lockfiles (push) Has been cancelled
Build Skills Index / build-index (push) Has been cancelled
Tests / test (1) (push) Has been cancelled
Tests / test (2) (push) Has been cancelled
Tests / test (3) (push) Has been cancelled
Tests / test (4) (push) Has been cancelled
Tests / test (5) (push) Has been cancelled
Tests / test (6) (push) Has been cancelled
Tests / e2e (push) Has been cancelled
uv.lock check / uv lock --check (push) Has been cancelled
Docker Build and Publish / merge (push) Has been cancelled
Build Skills Index / trigger-deploy (push) Has been cancelled
Tests / save-durations (push) Has been cancelled
50 lines
1.8 KiB
Markdown
50 lines
1.8 KiB
Markdown
# Matrix cross-signing bootstrap — E2E test
|
|
|
|
Self-contained end-to-end test for the auto-bootstrap behavior added in
|
|
`gateway/platforms/matrix.py`. Spins up a real Continuwuity homeserver
|
|
in Docker, registers a fresh bot, runs the patched bootstrap path
|
|
against it, and asserts:
|
|
|
|
1. Cross-signing keys get published with **unpadded** base64 keyids
|
|
(the bug this PR fixes — padded keyids are silently rejected by
|
|
matrix-rust-sdk in Element).
|
|
2. On a second startup with the same crypto store, bootstrap is
|
|
skipped.
|
|
3. When `MATRIX_RECOVERY_KEY` is set, the existing recovery-key path
|
|
takes precedence and no fresh bootstrap happens.
|
|
|
|
## Run
|
|
|
|
```bash
|
|
# from repo root
|
|
docker compose -f tests/e2e/matrix_xsign_bootstrap/docker-compose.yml up -d
|
|
python tests/e2e/matrix_xsign_bootstrap/test_bootstrap.py
|
|
docker compose -f tests/e2e/matrix_xsign_bootstrap/docker-compose.yml down -v
|
|
```
|
|
|
|
The `down -v` step removes the persistent volume so the next run gets
|
|
a fresh homeserver — important because Continuwuity's one-time admin
|
|
registration token is only valid before the first user is created.
|
|
|
|
## Port
|
|
|
|
The compose binds Continuwuity to `127.0.0.1:26167` by default. Override
|
|
with `HOMESERVER_HOST_PORT=NNNNN docker compose up -d` if that port is
|
|
busy locally.
|
|
|
|
## What the test exercises
|
|
|
|
The test mirrors the bootstrap snippet from
|
|
`gateway/platforms/matrix.py` (the "if MATRIX_RECOVERY_KEY else
|
|
get_own_cross_signing_public_keys / generate_recovery_key" branch)
|
|
inline so it runs without importing the entire hermes gateway and its
|
|
many dependencies. **If the source diverges from what's in
|
|
`_connect_with_bootstrap`, this test must be updated to match.** A
|
|
small price for not requiring the full hermes-agent runtime in CI.
|
|
|
|
## Skipped when
|
|
|
|
- `mautrix` Python package is not installed
|
|
- The homeserver isn't reachable at `$E2E_MATRIX_HS` (default
|
|
`http://127.0.0.1:26167`)
|