diff options
author | Dirk Klimpel <5740567+dklimpel@users.noreply.github.com> | 2023-02-01 16:45:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-01 15:45:19 +0000 |
commit | bf82b56babc9e2cacba34f8878da3b3834914b3a (patch) | |
tree | 1c2485346b556620707d65025e4e2b604ec4c833 /.ci | |
parent | lnav config for synpase logs (#14953) (diff) | |
download | synapse-bf82b56babc9e2cacba34f8878da3b3834914b3a.tar.xz |
Add more user information to export-data command. (#14894)
* The user's profile information. * The user's devices. * The user's connections / IP address information.
Diffstat (limited to '.ci')
-rwxr-xr-x | .ci/scripts/test_export_data_command.sh | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/.ci/scripts/test_export_data_command.sh b/.ci/scripts/test_export_data_command.sh index 9f6c49acff..36f836345c 100755 --- a/.ci/scripts/test_export_data_command.sh +++ b/.ci/scripts/test_export_data_command.sh @@ -23,8 +23,9 @@ poetry run python -m synapse.app.admin_cmd -c .ci/sqlite-config.yaml export-dat --output-directory /tmp/export_data # Test that the output directory exists and contains the rooms directory -dir="/tmp/export_data/rooms" -if [ -d "$dir" ]; then +dir_r="/tmp/export_data/rooms" +dir_u="/tmp/export_data/user_data" +if [ -d "$dir_r" ] && [ -d "$dir_u" ]; then echo "Command successful, this test passes" else echo "No output directories found, the command fails against a sqlite database." @@ -43,8 +44,9 @@ poetry run python -m synapse.app.admin_cmd -c .ci/postgres-config.yaml export-d --output-directory /tmp/export_data2 # Test that the output directory exists and contains the rooms directory -dir2="/tmp/export_data2/rooms" -if [ -d "$dir2" ]; then +dir_r2="/tmp/export_data2/rooms" +dir_u2="/tmp/export_data2/user_data" +if [ -d "$dir_r2" ] && [ -d "$dir_u2" ]; then echo "Command successful, this test passes" else echo "No output directories found, the command fails against a postgres database." |