about summary refs log tree commit diff
path: root/nixpkgs/nixos/tests/ragnarwm.nix
blob: f7c588b920081eb7cacc3c1db7a56ac65a3eccad (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
import ./make-test-python.nix ({ lib, ...} : {
  name = "ragnarwm";

  meta = {
    maintainers = with lib.maintainers; [ sigmanificient ];
  };

  nodes.machine = { pkgs, lib, ... }: {
    imports = [ ./common/x11.nix ./common/user-account.nix ];
    test-support.displayManager.auto.user = "alice";
    services.xserver.displayManager.defaultSession = lib.mkForce "ragnar";
    services.xserver.windowManager.ragnarwm.enable = true;

    # Setup the default terminal of Ragnar
    environment.systemPackages = [ pkgs.alacritty ];
  };

  testScript = ''
    with subtest("ensure x starts"):
        machine.wait_for_x()
        machine.wait_for_file("/home/alice/.Xauthority")
        machine.succeed("xauth merge ~alice/.Xauthority")

    with subtest("ensure we can open a new terminal"):
        # Sleeping a bit before the test, as it may help for sending keys
        machine.sleep(2)
        machine.send_key("meta_l-ret")
        machine.wait_for_window(r"alice.*?machine")
        machine.sleep(2)
        machine.screenshot("terminal")
  '';
})