about summary refs log tree commit diff
path: root/nixos/tests/xscreensaver.nix
blob: 820ddbb0e9626483b8141b805ca71cb026f1ab79 (plain) (blame)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import ./make-test-python.nix ({ pkgs, lib, ... }: {
  name = "pass-secret-service";
  meta.maintainers = with lib.maintainers; [ vancluever AndersonTorres ];

  nodes = {
    ok = { nodes, pkgs, ... }:
      {
        imports = [ ./common/x11.nix ./common/user-account.nix ];
        test-support.displayManager.auto.user = "alice";
        services.xscreensaver.enable = true;
      };

    empty_wrapperPrefix = { nodes, pkgs, ... }:
      {
        imports = [ ./common/x11.nix ./common/user-account.nix ];
        test-support.displayManager.auto.user = "alice";
        services.xscreensaver.enable = true;
        nixpkgs.overlays = [
          (self: super: {
            xscreensaver = super.xscreensaver.override {
              wrapperPrefix = "";
            };
          })
        ];
      };

    bad_wrapperPrefix = { nodes, pkgs, ... }:
      {
        imports = [ ./common/x11.nix ./common/user-account.nix ];
        test-support.displayManager.auto.user = "alice";
        services.xscreensaver.enable = true;
        nixpkgs.overlays = [
          (self: super: {
            xscreensaver = super.xscreensaver.override {
              wrapperPrefix = "/a/bad/path";
            };
          })
        ];
      };
  };

  testScript = ''
    ok.wait_for_x()
    ok.wait_for_unit("xscreensaver", "alice")
    _, output_ok = ok.systemctl("status xscreensaver", "alice")
    assert 'To prevent the kernel from randomly unlocking' not in output_ok
    assert 'your screen via the out-of-memory killer' not in output_ok
    assert '"xscreensaver-auth" must be setuid root' not in output_ok

    empty_wrapperPrefix.wait_for_x()
    empty_wrapperPrefix.wait_for_unit("xscreensaver", "alice")
    _, output_empty_wrapperPrefix = empty_wrapperPrefix.systemctl("status xscreensaver", "alice")
    assert 'To prevent the kernel from randomly unlocking' in output_empty_wrapperPrefix
    assert 'your screen via the out-of-memory killer' in output_empty_wrapperPrefix
    assert '"xscreensaver-auth" must be setuid root' in output_empty_wrapperPrefix

    bad_wrapperPrefix.wait_for_x()
    bad_wrapperPrefix.wait_for_unit("xscreensaver", "alice")
    _, output_bad_wrapperPrefix = bad_wrapperPrefix.systemctl("status xscreensaver", "alice")
    assert 'To prevent the kernel from randomly unlocking' in output_bad_wrapperPrefix
    assert 'your screen via the out-of-memory killer' in output_bad_wrapperPrefix
    assert '"xscreensaver-auth" must be setuid root' in output_bad_wrapperPrefix
  '';
})