aboutsummaryrefslogtreecommitdiff
path: root/nixos/tests/xss-lock.nix
blob: 0d757e8cef3fc341c75197670b6f37cf7ae88057 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import ./make-test.nix ({ pkgs, lib, ... }:

with lib;

{
  name = "xss-lock";
  meta.maintainers = with pkgs.stdenv.lib.maintainers; [ ma27 ];

  nodes = {
    simple = {
      imports = [ ./common/x11.nix ./common/user-account.nix ];
      programs.xss-lock.enable = true;
      services.xserver.displayManager.auto.user = "alice";
    };

    custom_lockcmd = { pkgs, ... }: {
      imports = [ ./common/x11.nix ./common/user-account.nix ];
      services.xserver.displayManager.auto.user = "alice";

      programs.xss-lock = {
        enable = true;
        extraOptions = [ "-n" "${pkgs.libnotify}/bin/notify-send 'About to sleep!'"];
        lockerCommand = "${pkgs.xlockmore}/bin/xlock -mode ant";
      };
    };
  };

  testScript = ''
    startAll;

    ${concatStringsSep "\n" (mapAttrsToList (name: lockCmd: ''
      ${"$"+name}->start;
      ${"$"+name}->waitForX;
      ${"$"+name}->waitForUnit("xss-lock.service", "alice");
      ${"$"+name}->fail("pgrep ${lockCmd}");
      ${"$"+name}->succeed("su -l alice -c 'xset dpms force standby'");
      ${"$"+name}->waitUntilSucceeds("pgrep ${lockCmd}");
    '') { simple = "i3lock"; custom_lockcmd = "xlock"; })}
  '';
})