herbstluftwm: add NixOS test
This commit is contained in:
@@ -147,6 +147,7 @@ in
|
|||||||
haproxy = handleTest ./haproxy.nix {};
|
haproxy = handleTest ./haproxy.nix {};
|
||||||
hardened = handleTest ./hardened.nix {};
|
hardened = handleTest ./hardened.nix {};
|
||||||
hedgedoc = handleTest ./hedgedoc.nix {};
|
hedgedoc = handleTest ./hedgedoc.nix {};
|
||||||
|
herbstluftwm = handleTest ./herbstluftwm.nix {};
|
||||||
installed-tests = pkgs.recurseIntoAttrs (handleTest ./installed-tests {});
|
installed-tests = pkgs.recurseIntoAttrs (handleTest ./installed-tests {});
|
||||||
oci-containers = handleTestOn ["x86_64-linux"] ./oci-containers.nix {};
|
oci-containers = handleTestOn ["x86_64-linux"] ./oci-containers.nix {};
|
||||||
# 9pnet_virtio used to mount /nix partition doesn't support
|
# 9pnet_virtio used to mount /nix partition doesn't support
|
||||||
|
|||||||
@@ -0,0 +1,38 @@
|
|||||||
|
import ./make-test-python.nix ({ lib, ...} : {
|
||||||
|
name = "herbstluftwm";
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
maintainers = with lib.maintainers; [ thibautmarty ];
|
||||||
|
timeout = 30;
|
||||||
|
};
|
||||||
|
|
||||||
|
machine = { pkgs, lib, ... }: {
|
||||||
|
imports = [ ./common/x11.nix ./common/user-account.nix ];
|
||||||
|
test-support.displayManager.auto.user = "alice";
|
||||||
|
services.xserver.displayManager.defaultSession = lib.mkForce "none+herbstluftwm";
|
||||||
|
services.xserver.windowManager.herbstluftwm.enable = true;
|
||||||
|
environment.systemPackages = [ pkgs.dzen2 ]; # needed for upstream provided panel
|
||||||
|
};
|
||||||
|
|
||||||
|
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 client is available"):
|
||||||
|
machine.succeed("herbstclient --version")
|
||||||
|
|
||||||
|
with subtest("ensure keybindings are set"):
|
||||||
|
machine.wait_until_succeeds("herbstclient list_keybinds | grep xterm")
|
||||||
|
|
||||||
|
with subtest("ensure panel starts"):
|
||||||
|
machine.wait_for_window("dzen title")
|
||||||
|
|
||||||
|
with subtest("ensure we can open a new terminal"):
|
||||||
|
machine.send_key("alt-ret")
|
||||||
|
machine.wait_for_window(r"alice.*?machine")
|
||||||
|
machine.sleep(2)
|
||||||
|
machine.screenshot("terminal")
|
||||||
|
'';
|
||||||
|
})
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
{ lib, stdenv, fetchurl, cmake, pkgconfig, python3, libX11, libXext, libXinerama, libXrandr, asciidoc
|
{ lib, stdenv, fetchurl, cmake, pkgconfig, python3, libX11, libXext, libXinerama, libXrandr, asciidoc
|
||||||
, xdotool, xorgserver, xsetroot, xterm, runtimeShell }:
|
, xdotool, xorgserver, xsetroot, xterm, runtimeShell
|
||||||
|
, nixosTests }:
|
||||||
|
|
||||||
# Doc generation is disabled by default when cross compiling because asciidoc
|
# Doc generation is disabled by default when cross compiling because asciidoc
|
||||||
# dependency is broken when cross compiling for now
|
# dependency is broken when cross compiling for now
|
||||||
@@ -75,6 +76,10 @@ in stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
pytestFlagsArray = [ "../tests" ];
|
pytestFlagsArray = [ "../tests" ];
|
||||||
|
|
||||||
|
passthru = {
|
||||||
|
tests.herbstluftwm = nixosTests.herbstluftwm;
|
||||||
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A manual tiling window manager for X";
|
description = "A manual tiling window manager for X";
|
||||||
homepage = "https://herbstluftwm.org/";
|
homepage = "https://herbstluftwm.org/";
|
||||||
|
|||||||
Reference in New Issue
Block a user