nixpkgs/nixos/tests/qtile/default.nix

68 lines
1.7 KiB
Nix

{ lib, ... }:
{
name = "qtile";
meta = {
maintainers = with lib.maintainers; [
sigmanificient
gurjaka
];
};
nodes.machine =
{
pkgs,
lib,
...
}:
let
# We create a custom Qtile configuration file that adds a
# startup hook to qtile. This ensure we can reproducibly check
# when Qtile is truly ready to receive our inputs
config-deriv = pkgs.callPackage ./config.nix { };
in
{
imports = [
../common/x11.nix
../common/user-account.nix
];
test-support.displayManager.auto.user = "alice";
services.xserver.windowManager.qtile = {
enable = true;
configFile = "${config-deriv}/config.py";
};
services.displayManager.defaultSession = lib.mkForce "qtile";
environment.systemPackages = [
pkgs.kitty
pkgs.xorg.xwininfo
];
};
testScript = ''
from pathlib import Path
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 client is available"):
machine.succeed("qtile --version")
with subtest("Qtile signals that it is ready"):
qtile_logfile = Path("/home/alice/.local/share/qtile/qtile.log")
machine.succeed(f"mkdir -p {qtile_logfile.parent}")
machine.succeed(f"touch {qtile_logfile}")
machine.succeed(f"sh -c 'tail -f {qtile_logfile} | grep --line-buffered \'ready\' -m 1'")
with subtest("ensure we can open a new terminal"):
machine.send_key("meta_l-ret")
machine.wait_for_window(r"alice.*?machine")
machine.screenshot("terminal")
'';
}