Testing
Unit Tests
Rust
We are using regular unit tests as by the Rust Book. You can run them with cargo test
.
Note: For async unit test, we are using tokio
so mark them with #[tokio:test]
(rather than #[test]
). Example:
use anyhow::Result;
#[tokio::test]
async fn testing_my_feature() -> Result<()> {
// ... test code
Ok(())
}
Flutter Widget tests
Note: We currently don't have proper widget unit tests. So this is mainly here for when we do have them available.
cd app
flutter test
Integration Tests
Infrastructure
You need a fresh synapse
matrix backend with a specific configuration. We recommend to just use our docker-compose setup for that to run them locally - for an installation guide see below. As a team member with access to bitwarden, you can also run them against the stageing / testing instances (see below).
Docker Container
We have a docker
container image available with that setup already for you at lightyear/acter-synapse-ci:latest
. Easiest is to use docker-compose up -d
to run it locally from the root directory. This will also create the necessary admin
account.
Alternatives
Using the shared testing servers
If you are a team member with access to bitwarden, you can also use the staging and testing instances we have set up. They registered with a registration token to prevent unauthorized access, which are also prefixed to each password and thus need to be supplied for running the tests. Currently the following servers are available for testing with mock-data pre-installed, the registration tokens can be found in bitwarden under the same name.
m-1.acter.global
(export DEFAULT_HOMESERVER_URL=https://matrix.m-1.acter.global DEFAULT_HOMESERVER_NAME=m-1.acter.global
)
Custom Synapse-Server
If you can't or don't want to use the docker containers, you'll need a synapse matrix backend with the following settings included (in the homeserver.yaml
):
allow_guest_access: true
enable_registration_without_verification: true
enable_registration: true
registration_shared_secret: "randomly_generated_string"
rc_message:
per_second: 1000
burst_count: 1000
rc_registration:
per_second: 1000
burst_count: 1000
rc_login:
address:
per_second: 1000
burst_count: 1000
and an admin
account with the username admin
and passwort admin
(which you can create with register_new_matrix_user -u admin -p admin -a -c $HOMESERVER_CONFIG_PATH $HOMESERVER_URL
). To avoid the change of server URL under VMWare, you can use NAT mode not Bridged mode as network.
Please change bind_addresses
of listeners
from ['::1', '127.0.0.1']
to ['0.0.0.0']
(in the homeserver.yaml
), that means any address and allows remote connection (non-localhost).
To avoid the change of server URL under VMWare, you can use NAT mode not Bridged mode as network.
Ubuntu VM Guide under sqlite
sudo apt update
sudo apt upgrade
sudo apt install lsb-release wget apt-transport-https
sudo wget -qO /usr/share/keyrings/matrix-org-archive-keyring.gpg https://packages.matrix.org/debian/matrix-org-archive-keyring.gpg
sudo echo "deb [signed-by=/usr/share/keyrings/matrix-org-archive-keyring.gpg] https://packages.matrix.org/debian/ $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/matrix-org.list
sudo apt update
sudo apt upgrade
sudo apt install matrix-synapse-py3
At the end of sudo apt install matrix-synapse-py3
, you will get the following dialog.
Keep localhost
in this dialog, that is domain applied to all users in acter-test
.
server_name
in /etc/matrix-synapse/homeserver.yaml
seems to not affect synapse config and the setting of this dialog during installation affects synapse config clearly.
In homeserver.yaml
, you have to change bind_addresses: ['::1', '127.0.0.1']
to bind_addresses: ['0.0.0.0']
.
And append the following content to homeserver.yaml
.
allow_guest_access: true
enable_registration_without_verification: true
enable_registration: true
registration_shared_secret: "2lyjkU7Ybp24rWR1TBJkut65RFcXZZA"
rc_message:
per_second: 1000
burst_count: 1000
rc_registration:
per_second: 1000
burst_count: 1000
rc_login:
address:
per_second: 1000
burst_count: 1000
account:
per_second: 1000
burst_count: 1000
failed_attempts:
per_second: 1000
burst_count: 1000
rc_admin_redaction:
per_second: 1000
burst_count: 1000
rc_joins:
local:
per_second: 1000
burst_count: 1000
remote:
per_second: 1000
burst_count: 1000
rc_3pid_validation:
per_second: 1000
burst_count: 1000
rc_invites:
per_room:
per_second: 1000
burst_count: 1000
per_user:
per_second: 1000
burst_count: 1000
Update firewall. But it may not be necessary.
sudo ufw allow 8008
Start synapse service.
sudo systemctl enable matrix-synapse
sudo systemctl start matrix-synapse
sudo systemctl status matrix-synapse
You needn't to add admin
user with register_new_matrix_user
.
Firewall
If you are running synapse on a virtual or remote machine and API call is not working, you can update the firewall rules to allow access to the ports. To turn off the public profile of a server firewall on a Ubuntu
linux, you can use gufw
and disable it like so:
Ubuntu VM Guide under postgresql
sudo apt update
sudo apt upgrade
sudo apt install lsb-release wget apt-transport-https
sudo wget -qO /usr/share/keyrings/matrix-org-archive-keyring.gpg https://packages.matrix.org/debian/matrix-org-archive-keyring.gpg
sudo echo "deb [signed-by=/usr/share/keyrings/matrix-org-archive-keyring.gpg] https://packages.matrix.org/debian/ $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/matrix-org.list
sudo apt update
sudo apt upgrade
sudo apt install matrix-synapse-py3
At the end of sudo apt install matrix-synapse-py3
, you will get the following dialog.
Keep localhost
in this dialog, that is domain applied to all users in acter-test
.
server_name
in homeserver.yaml
seems to not affect synapse config and the setting of this dialog during installation affects synapse config clearly.
In homeserver.yaml
, you have to change bind_addresses: ['::1', '127.0.0.1']
to bind_addresses: ['0.0.0.0']
.
And append the following content to homeserver.yaml
.
allow_guest_access: true
enable_registration_without_verification: true
enable_registration: true
registration_shared_secret: "2lyjkU7Ybp24rWR1TBJkut65RFcXZZA"
rc_message:
per_second: 1000
burst_count: 1000
rc_registration:
per_second: 1000
burst_count: 1000
rc_login:
address:
per_second: 1000
burst_count: 1000
account:
per_second: 1000
burst_count: 1000
failed_attempts:
per_second: 1000
burst_count: 1000
rc_admin_redaction:
per_second: 1000
burst_count: 1000
rc_joins:
local:
per_second: 1000
burst_count: 1000
remote:
per_second: 1000
burst_count: 1000
rc_3pid_validation:
per_second: 1000
burst_count: 1000
rc_invites:
per_room:
per_second: 1000
burst_count: 1000
per_user:
per_second: 1000
burst_count: 1000
You need to install postgresql.
sudo apt install postgresql postgresql-contrib
sudo -i -u postgres
psql
CREATE USER "synapseuser" WITH PASSWORD 'Pass';
CREATE DATABASE synapse ENCODING 'UTF8' LC_COLLATE='C' LC_CTYPE='C' template=template0 OWNER "synapseuser";
Add the following to /etc/postgresql/pg_hba.conf
.
host synapse synapse_user ::1/128 scram-sha-256
Restart postgresql.
sudo systemctl restart postgresql.service
Install psycopg2.
sudo apt install python3-psycopg2
Update the database
section in homeserver.yaml
.
#database:
# name: sqlite3
# args:
# database: /var/lib/matrix-synapse/homeserver.db
database:
name: psycopg2
args:
user: synapseuser
password: Pass
database: synapse
host: localhost
cp_min: 5
cp_max: 10
Update firewall.
sudo ufw allow 8008
Start synapse server
sudo systemctl enable matrix-synapse
sudo systemctl start matrix-synapse
sudo systemctl status matrix-synapse
You needn't to add admin
user with register_new_matrix_user
.
Firewall
If you are running synapse on a virtual or remote machine and API call is not working, you can update the firewall rules to allow access to the ports. To turn off the public profile of a server firewall on a Ubuntu
linux, you can use gufw
and disable it like so:
Mock data
The integration tests expect a certain set of mock
data. You can easily get this set up by running
cargo run -p acter-cli -- mock --homeserver-url $HOMESERVER --homeserver-name localhost
Reset docker
To start the docker-compose afresh:
- stop the service with
docker-compose stop
- remove the data at
rm -rf .local
- start the service with
docker-compose up -d
Reset database (in case of SQLite)
- Stop service with
sudo systemctl stop matrix-synapse
- Delete this file
/var/lib/matrix-synapse/homeserver.db
- Start service with
sudo systemctl start matrix-synapse
- Run this command
cargo run -p acter-cli -- mock --homeserver-url $HOMESERVER --homeserver-name localhost
Don't forget to rerun the mock data
generation again.
Reset database (in case of PostgreSQL)
- Stop service with
sudo systemctl stop matrix-synapse
- Delete and recreate the database
sudo su - postgres
psql
DROP DATABASE synapse;
CREATE DATABASE synapse ENCODING 'UTF8' LC_COLLATE='C' LC_CTYPE='C' template=template0 OWNER "synapseuser";
\q
- Start service with
sudo systemctl start matrix-synapse
- Run this command
cargo run -p acter-cli mock --homeserver-url http://192.168.142.130:8008 --homeserver-name ds9.acter.global
This server name must be the same as one in /etc/matrix-synapse/conf.d/server_name.yaml
.
Rust integration tests
To run the rust integration tests, you need a fresh integration testing infrastructure (see above) available at $HOMESERVER
. Assuming you are running the docker-compose setup, this would be http://localhost:8118
(which is the fallback default, so you don't have to put it into your environment). Then you can run the integration test with:
Custom Environment variable under Windows PowerShell
You can set up environment variable for cargo
as following (assuming the server is accessible at 10.0.0.1:8008
and log level is info
):
$env:HOMESERVER="http://10.0.0.1:8008"; $env:RUST_LOG="info"; cargo test -p acter-test -- --nocapture
Custom Environment variable under Linux Shell
You can set up environment variable for cargo
as following (assuming the server is available at 10.0.0.1:8008
and log level is warn
):
HOMESERVER="http://10.0.0.1:8008" RUST_LOG="warn" cargo test -p acter-test -- --nocapture
Flutter UI integration tests
We are using convenient_tests
framework to build and run flutter integration tests. The default test target is an Android Emulator. You need the above mentioned backend setup
Running with the Manager
Requirements:
- To run the rust integration tests, you need a fresh integration testing infrastructure (see above) available at
$DEFAULT_HOMESERVER_URL
with the$DEFAULT_HOMESERVER_NAME
set. - Have your test target ready: build the latest rust-sdk for it (e.g.
cargo make android-dev
), and have the emulator up and running
To the run the tests from the interactive manager UI, start the manager in one terminal: cd util/conv_test_man && flutter run
(-d linux
/ -d macos
/ -d windows
for whichever is your desktop host), then from the app
folder run the integration test version of the app by running:
flutter run integration_test/main_test.dart --host-vmservice-port 9753 --disable-service-auth-codes --dart-define CONVENIENT_TEST_APP_CODE_DIR=lib --dart-define DEFAULT_HOMESERVER_URL=$DEFAULT_HOMESERVER_URL --dart-define DEFAULT_HOMESERVER_NAME=$DEFAULT_HOMESERVER_NAME
if you are running it with the Android emulator and have the server exposed on 8118 on your localhost, you need point the urls to 10.0.2.2
and also expose the CONVENIENT_TEST_MANAGER_HOST
IP as follows:
flutter run integration_test/main_test.dart --host-vmservice-port 9753 --disable-service-auth-codes --dart-define CONVENIENT_TEST_APP_CODE_DIR=lib --dart-define CONVENIENT_TEST_MANAGER_HOST=10.0.2.2 --dart-define DEFAULT_HOMESERVER_URL=http:/10.0.2.2:8118/ --dart-define DEFAULT_HOMESERVER_NAME=localhost
Once the app is up and ready click "reconnect" in the manager and then you can select the tests you want to run.
Running from the cli
Requirements:
- To run the rust integration tests, you need a fresh integration testing infrastructure (see above) available at
$DEFAULT_HOMESERVER_URL
with the$DEFAULT_HOMESERVER_NAME
set. - Have your test target ready: build the latest rust-sdk for it (e.g.
cargo make android-dev
), and have the emulator up and running
From the app
folder run the integration test version of the app by running:
flutter run integration_test/main_test.dart --host-vmservice-port 9753 --disable-service-auth-codes --dart-define CONVENIENT_TEST_APP_CODE_DIR=lib --dart-define DEFAULT_HOMESERVER_URL=$DEFAULT_HOMESERVER_URL --dart-define DEFAULT_HOMESERVER_NAME=$DEFAULT_HOMESERVER_NAME
if you are running it with the Android emulator and have the server exposed on 8118 on your localhost, you need point the urls to 10.0.2.2
and also expose the CONVENIENT_TEST_MANAGER_HOST
IP as follows:
flutter run integration_test/main_test.dart --host-vmservice-port 9753 --disable-service-auth-codes --dart-define CONVENIENT_TEST_APP_CODE_DIR=lib --dart-define CONVENIENT_TEST_MANAGER_HOST=10.0.2.2 --dart-define DEFAULT_HOMESERVER_URL=http:/10.0.2.2:8118/ --dart-define DEFAULT_HOMESERVER_NAME=localhost
Once ready, start the automatic full cli-runner by running (from /app
):
dart run convenient_test_manager_dart --enable-report-saver
That will create a folder with the entire report in your $TMPFOLDER/ConvenientTest/
From Visual Studio Code
If you have the Flutter extension for vscode you can also run the Run Integration Tests (acter)
launch commend from within your VSCode to run the tests directly or use the Run Local Integration Tests
on the specific test from within your editor. To debug an integration tests, use the Debug Integration Tests (acter)
on the specific test from within the editor - which allows you to add breakpoints and debugging widgets as usual: