summary refs log blame commit diff
path: root/nixos/tests/xss-lock.nix
blob: b46bb1a8f6e9d90b4e331cc266a94c9a3f7ca138 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                                









                                                                  
                                                

     
import ./make-test.nix ({ pkgs, lib, ... }:

with lib;

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

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

  testScript = ''
    $machine->start;
    $machine->waitForX;
    $machine->waitForUnit("xss-lock.service", "alice");

    $machine->fail("pgrep xlock");
    $machine->succeed("su -l alice -c 'xset dpms force standby'");
    $machine->waitUntilSucceeds("pgrep i3lock");
  '';
})