2019-11-06 15:38:26 +00:00
|
|
|
import ./make-test-python.nix ({ pkgs, ...} :
|
2019-05-22 23:50:51 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
name = "signal-desktop";
|
|
|
|
meta = with pkgs.stdenv.lib.maintainers; {
|
|
|
|
maintainers = [ flokli ];
|
|
|
|
};
|
|
|
|
|
|
|
|
machine = { ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
./common/user-account.nix
|
|
|
|
./common/x11.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
services.xserver.enable = true;
|
2020-01-26 22:41:19 +00:00
|
|
|
test-support.displayManager.auto.user = "alice";
|
2019-05-22 23:50:51 +01:00
|
|
|
environment.systemPackages = [ pkgs.signal-desktop ];
|
2020-03-09 13:13:51 +00:00
|
|
|
virtualisation.memorySize = 1024;
|
2019-05-22 23:50:51 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
enableOCR = true;
|
|
|
|
|
|
|
|
testScript = { nodes, ... }: let
|
|
|
|
user = nodes.machine.config.users.users.alice;
|
|
|
|
in ''
|
2019-11-06 15:38:26 +00:00
|
|
|
start_all()
|
|
|
|
machine.wait_for_x()
|
2019-05-22 23:50:51 +01:00
|
|
|
|
|
|
|
# start signal desktop
|
2019-11-06 15:38:26 +00:00
|
|
|
machine.execute("su - alice -c signal-desktop &")
|
2019-05-22 23:50:51 +01:00
|
|
|
|
2020-09-13 17:29:13 +01:00
|
|
|
# Wait for the Signal window to appear. Since usually the tests
|
|
|
|
# are run sandboxed and therfore with no internet, we can not wait
|
|
|
|
# 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 15:38:26 +00:00
|
|
|
machine.screenshot("signal_desktop")
|
2019-05-22 23:50:51 +01:00
|
|
|
'';
|
|
|
|
})
|