diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-05-29 22:03:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-29 22:03:27 +0200 |
commit | 01d0e0b68079e9b82f3d2640613b3f45b95dc71e (patch) | |
tree | d0adf5cc9a1f96c1f8669fdf5b1256839fc50381 /autotests/adjust-config.sh | |
parent | 346c36768e145435a54ce0ba6138af916410cbea (diff) | |
parent | 886dda59307672f88c38a8555e9bfe67535d953f (diff) | |
download | libquotient-01d0e0b68079e9b82f3d2640613b3f45b95dc71e.tar.gz libquotient-01d0e0b68079e9b82f3d2640613b3f45b95dc71e.zip |
Merge #557: Refresh and organise run-tests.sh/adjust-config.sh
Diffstat (limited to 'autotests/adjust-config.sh')
-rw-r--r-- | autotests/adjust-config.sh | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/autotests/adjust-config.sh b/autotests/adjust-config.sh new file mode 100644 index 00000000..a55ac670 --- /dev/null +++ b/autotests/adjust-config.sh @@ -0,0 +1,55 @@ +#!/bin/bash + +CMD="" + +$CMD perl -pi -w -e \ + 's/rc_messages_per_second.*/rc_messages_per_second: 1000/g;' homeserver.yaml +$CMD perl -pi -w -e \ + 's/rc_message_burst_count.*/rc_message_burst_count: 10000/g;' homeserver.yaml + +( +cat <<HEREDOC +rc_message: + per_second: 10000 + burst_count: 100000 +rc_registration: + per_second: 10000 + burst_count: 30000 +rc_login: + address: + per_second: 10000 + burst_count: 30000 + account: + per_second: 10000 + burst_count: 30000 + failed_attempts: + per_second: 10000 + burst_count: 30000 +rc_admin_redaction: + per_second: 1000 + burst_count: 5000 +rc_joins: + local: + per_second: 10000 + burst_count: 100000 + remote: + per_second: 10000 + burst_count: 100000 +HEREDOC +) | $CMD tee -a data/homeserver.yaml + +$CMD perl -pi -w -e \ + 's/^#enable_registration: false/enable_registration: true/g;' homeserver.yaml +$CMD perl -pi -w -e \ + 's/^#enable_registration_without_verification: .+/enable_registration_without_verification: true/g;' homeserver.yaml +$CMD perl -pi -w -e \ + 's/tls: false/tls: true/g;' homeserver.yaml +$CMD perl -pi -w -e \ + 's/#tls_certificate_path:/tls_certificate_path:/g;' homeserver.yaml +$CMD perl -pi -w -e \ + 's/#tls_private_key_path:/tls_private_key_path:/g;' homeserver.yaml + +$CMD openssl req -x509 -newkey rsa:4096 -keyout localhost.tls.key -out localhost.tls.crt -days 365 -subj '/CN=localhost' -nodes + +$CMD chmod 0777 localhost.tls.crt +$CMD chmod 0777 localhost.tls.key |