python312Packages.homematicip: 1.1.2 -> 1.1.3 (#356780)
[NixPkgs.git] / nixos / tests / ragnarwm.nix
blob6dc08a805ab126834dc6e653651070c983e0cfd5
1 import ./make-test-python.nix ({ lib, ...} : {
2   name = "ragnarwm";
4   meta = {
5     maintainers = with lib.maintainers; [ sigmanificient ];
6   };
8   nodes.machine = { pkgs, lib, ... }: {
9     imports = [ ./common/x11.nix ./common/user-account.nix ];
10     test-support.displayManager.auto.user = "alice";
11     services.displayManager.defaultSession = lib.mkForce "ragnar";
12     services.xserver.windowManager.ragnarwm.enable = true;
14     # Setup the default terminal of Ragnar
15     environment.systemPackages = [ pkgs.alacritty ];
16   };
18   testScript = ''
19     with subtest("ensure x starts"):
20         machine.wait_for_x()
21         machine.wait_for_file("/home/alice/.Xauthority")
22         machine.succeed("xauth merge ~alice/.Xauthority")
24     with subtest("ensure we can open a new terminal"):
25         # Sleeping a bit before the test, as it may help for sending keys
26         machine.sleep(2)
27         machine.send_key("meta_l-ret")
28         machine.wait_for_window(r"alice.*?machine")
29         machine.sleep(2)
30         machine.screenshot("terminal")
31   '';