2019-11-26 20:57:07 +00:00
|
|
|
import ./make-test-python.nix ({ pkgs, lib, ... }:
|
2018-05-18 17:24:53 +01:00
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
name = "xss-lock";
|
2021-08-27 21:09:49 +01:00
|
|
|
meta.maintainers = with pkgs.lib.maintainers; [ ];
|
2018-05-18 17:24:53 +01:00
|
|
|
|
2019-05-12 02:22:29 +01:00
|
|
|
nodes = {
|
|
|
|
simple = {
|
|
|
|
imports = [ ./common/x11.nix ./common/user-account.nix ];
|
|
|
|
programs.xss-lock.enable = true;
|
2020-01-26 22:41:19 +00:00
|
|
|
test-support.displayManager.auto.user = "alice";
|
2019-05-12 02:22:29 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
custom_lockcmd = { pkgs, ... }: {
|
|
|
|
imports = [ ./common/x11.nix ./common/user-account.nix ];
|
2020-01-26 22:41:19 +00:00
|
|
|
test-support.displayManager.auto.user = "alice";
|
2019-05-12 02:22:29 +01:00
|
|
|
|
|
|
|
programs.xss-lock = {
|
|
|
|
enable = true;
|
|
|
|
extraOptions = [ "-n" "${pkgs.libnotify}/bin/notify-send 'About to sleep!'"];
|
|
|
|
lockerCommand = "${pkgs.xlockmore}/bin/xlock -mode ant";
|
|
|
|
};
|
|
|
|
};
|
2018-05-18 17:24:53 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
testScript = ''
|
2019-11-26 20:57:07 +00:00
|
|
|
def perform_xsslock_test(machine, lockCmd):
|
|
|
|
machine.start()
|
|
|
|
machine.wait_for_x()
|
|
|
|
machine.wait_for_unit("xss-lock.service", "alice")
|
|
|
|
machine.fail(f"pgrep {lockCmd}")
|
|
|
|
machine.succeed("su -l alice -c 'xset dpms force standby'")
|
|
|
|
machine.wait_until_succeeds(f"pgrep {lockCmd}")
|
|
|
|
|
|
|
|
|
|
|
|
with subtest("simple"):
|
|
|
|
perform_xsslock_test(simple, "i3lock")
|
|
|
|
|
|
|
|
with subtest("custom_cmd"):
|
|
|
|
perform_xsslock_test(custom_lockcmd, "xlock")
|
2018-05-18 17:24:53 +01:00
|
|
|
'';
|
|
|
|
})
|