nixos/monado: add test

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>

Changed files
+45
nixos
pkgs
applications
graphics
monado
+1
nixos/tests/all-tests.nix
···
mobilizon = handleTest ./mobilizon.nix {};
mod_perl = handleTest ./mod_perl.nix {};
molly-brown = handleTest ./molly-brown.nix {};
+
monado = handleTest ./monado.nix {};
monica = handleTest ./web-apps/monica.nix {};
mongodb = handleTest ./mongodb.nix {};
moodle = handleTest ./moodle.nix {};
+39
nixos/tests/monado.nix
···
+
import ./make-test-python.nix ({ pkgs, ... }: {
+
name = "monado";
+
+
nodes.machine =
+
{ pkgs, ... }:
+
+
{
+
hardware.opengl.enable = true;
+
users.users.alice = {
+
isNormalUser = true;
+
uid = 1000;
+
};
+
+
services.monado = {
+
enable = true;
+
defaultRuntime = true;
+
};
+
# Stop Monado from probing for any hardware
+
systemd.user.services.monado.environment.SIMULATED_ENABLE = "1";
+
+
environment.systemPackages = with pkgs; [ openxr-loader ];
+
};
+
+
testScript = { nodes, ... }:
+
let
+
userId = toString nodes.machine.users.users.alice.uid;
+
runtimePath = "/run/user/${userId}";
+
in
+
''
+
machine.succeed("loginctl enable-linger alice")
+
machine.wait_for_unit("user@${userId}.service")
+
+
machine.wait_for_unit("monado.socket", "alice")
+
machine.systemctl("start monado.service", "alice")
+
machine.wait_for_unit("monado.service", "alice")
+
+
machine.succeed("su -- alice -c env XDG_RUNTIME_DIR=${runtimePath} openxr_runtime_list")
+
'';
+
})
+5
pkgs/applications/graphics/monado/default.nix
···
, wayland-scanner
, libdrm
, zlib
+
, nixosTests
# Set as 'false' to build monado without service support, i.e. allow VR
# applications linking against libopenxr_monado.so to use OpenXR standalone
# instead of via the monado-service program. For more information see:
···
# We don't have $HOME/.steam when building
./force-enable-steamvr_lh.patch
];
+
+
passthru.tests = {
+
basic-service = nixosTests.monado;
+
};
meta = with lib; {
description = "Open source XR runtime";