2019-11-06 16:38:26 +01:00
|
|
|
import ./make-test-python.nix ({ pkgs, ...} :
|
2019-05-23 00:50:51 +02:00
|
|
|
|
2021-08-05 18:17:49 +02:00
|
|
|
let
|
|
|
|
sqlcipher-signal = pkgs.writeShellScriptBin "sqlcipher" ''
|
|
|
|
set -eu
|
|
|
|
|
|
|
|
readonly CFG=~/.config/Signal/config.json
|
|
|
|
readonly KEY="$(${pkgs.jq}/bin/jq --raw-output '.key' $CFG)"
|
|
|
|
readonly DB="$1"
|
|
|
|
readonly SQL="SELECT * FROM sqlite_master where type='table'"
|
|
|
|
${pkgs.sqlcipher}/bin/sqlcipher "$DB" "PRAGMA key = \"x'$KEY'\"; $SQL"
|
|
|
|
'';
|
|
|
|
in {
|
2019-05-23 00:50:51 +02:00
|
|
|
name = "signal-desktop";
|
2021-01-10 20:08:30 +01:00
|
|
|
meta = with pkgs.lib.maintainers; {
|
2021-05-11 22:04:02 +02:00
|
|
|
maintainers = [ flokli primeos ];
|
2019-05-23 00:50:51 +02:00
|
|
|
};
|
|
|
|
|
2022-03-21 00:15:30 +01:00
|
|
|
nodes.machine = { ... }:
|
2019-05-23 00:50:51 +02:00
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
./common/user-account.nix
|
|
|
|
./common/x11.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
services.xserver.enable = true;
|
2020-01-26 23:41:19 +01:00
|
|
|
test-support.displayManager.auto.user = "alice";
|
2021-08-05 18:17:49 +02:00
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
signal-desktop file sqlite sqlcipher-signal
|
|
|
|
];
|
2019-05-23 00:50:51 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
enableOCR = true;
|
|
|
|
|
|
|
|
testScript = { nodes, ... }: let
|
|
|
|
user = nodes.machine.config.users.users.alice;
|
|
|
|
in ''
|
2019-11-06 16:38:26 +01:00
|
|
|
start_all()
|
|
|
|
machine.wait_for_x()
|
2019-05-23 00:50:51 +02:00
|
|
|
|
|
|
|
# start signal desktop
|
2021-11-05 01:43:22 +01:00
|
|
|
machine.execute("su - alice -c signal-desktop >&2 &")
|
2019-05-23 00:50:51 +02:00
|
|
|
|
2020-09-13 18:29:13 +02:00
|
|
|
# Wait for the Signal window to appear. Since usually the tests
|
2023-05-20 04:10:21 +02:00
|
|
|
# are run sandboxed and therefore with no internet, we can not wait
|
2020-09-13 18:29:13 +02:00
|
|
|
# for the message "Link your phone ...". Nor should we wait for
|
|
|
|
# the "Failed to connect to server" message, because when manually
|
|
|
|
# running this test it will be not sandboxed.
|
|
|
|
machine.wait_for_text("Signal")
|
|
|
|
machine.wait_for_text("File Edit View Window Help")
|
2019-11-06 16:38:26 +01:00
|
|
|
machine.screenshot("signal_desktop")
|
2021-05-11 22:04:02 +02:00
|
|
|
|
|
|
|
# Test if the database is encrypted to prevent these issues:
|
|
|
|
# - https://github.com/NixOS/nixpkgs/issues/108772
|
|
|
|
# - https://github.com/NixOS/nixpkgs/pull/117555
|
|
|
|
print(machine.succeed("su - alice -c 'file ~/.config/Signal/sql/db.sqlite'"))
|
2021-05-14 02:23:56 +02:00
|
|
|
machine.fail(
|
|
|
|
"su - alice -c 'file ~/.config/Signal/sql/db.sqlite' | grep -e SQLite -e database"
|
2021-05-11 22:04:02 +02:00
|
|
|
)
|
2021-08-05 18:17:49 +02:00
|
|
|
# Only SQLCipher should be able to read the encrypted DB:
|
|
|
|
machine.fail(
|
2022-07-22 23:34:54 +02:00
|
|
|
"su - alice -c 'sqlite3 ~/.config/Signal/sql/db.sqlite .tables'"
|
2021-08-05 18:17:49 +02:00
|
|
|
)
|
|
|
|
print(machine.succeed(
|
|
|
|
"su - alice -c 'sqlcipher ~/.config/Signal/sql/db.sqlite'"
|
|
|
|
))
|
2019-05-23 00:50:51 +02:00
|
|
|
'';
|
|
|
|
})
|