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 ];
|
|
|
|
};
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
# wait for the "Link your phone to Signal Desktop" message
|
2019-11-06 15:38:26 +00:00
|
|
|
machine.wait_for_text("Link your phone to Signal Desktop")
|
|
|
|
machine.screenshot("signal_desktop")
|
2019-05-22 23:50:51 +01:00
|
|
|
'';
|
|
|
|
})
|