python312Packages.homematicip: 1.1.2 -> 1.1.3 (#356780)
[NixPkgs.git] / nixos / tests / monado.nix
blob6f0d27ee4245468b52da798dd4af612c1615acdd
1 import ./make-test-python.nix ({ pkgs, ... }: {
2   name = "monado";
4   nodes.machine =
5     { pkgs, ... }:
7     {
8       hardware.graphics.enable = true;
9       users.users.alice = {
10         isNormalUser = true;
11         uid = 1000;
12       };
14       services.monado = {
15         enable = true;
16         defaultRuntime = true;
17       };
18       # Stop Monado from probing for any hardware
19       systemd.user.services.monado.environment.SIMULATED_ENABLE = "1";
21       environment.systemPackages = with pkgs; [ openxr-loader ];
22     };
24   testScript = { nodes, ... }:
25     let
26       userId = toString nodes.machine.users.users.alice.uid;
27       runtimePath = "/run/user/${userId}";
28     in
29     ''
30       machine.succeed("loginctl enable-linger alice")
31       machine.wait_for_unit("user@${userId}.service")
33       machine.wait_for_unit("monado.socket", "alice")
34       machine.systemctl("start monado.service", "alice")
35       machine.wait_for_unit("monado.service", "alice")
37       machine.succeed("su -- alice -c env XDG_RUNTIME_DIR=${runtimePath} openxr_runtime_list")
38     '';