nixos/monado: add test

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
Sefa Eyeoglu 2023-12-18 17:48:48 +01:00
parent 2d2493b23d
commit 8fc2690b73
No known key found for this signature in database
GPG Key ID: E13DFD4B47127951
3 changed files with 45 additions and 0 deletions

View File

@ -535,6 +535,7 @@ in {
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 Normal file
View File

@ -0,0 +1,39 @@
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")
'';
})

View File

@ -41,6 +41,7 @@
, 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:
@ -137,6 +138,10 @@ stdenv.mkDerivation {
./force-enable-steamvr_lh.patch
];
passthru.tests = {
basic-service = nixosTests.monado;
};
meta = with lib; {
description = "Open source XR runtime";
homepage = "https://monado.freedesktop.org/";