python310Packages.pydeconz: 104 -> 105
[NixPkgs.git] / nixos / tests / gnome-xorg.nix
blob618458b1f6b5b8d7218f4a67b19d81918ac929f3
1 import ./make-test-python.nix ({ pkgs, lib, ...} : {
2   name = "gnome-xorg";
3   meta = with lib; {
4     maintainers = teams.gnome.members;
5   };
7   nodes.machine = { nodes, ... }: let
8     user = nodes.machine.config.users.users.alice;
9   in
11     { imports = [ ./common/user-account.nix ];
13       services.xserver.enable = true;
15       services.xserver.displayManager = {
16         gdm.enable = true;
17         gdm.debug = true;
18         autoLogin = {
19           enable = true;
20           user = user.name;
21         };
22       };
24       services.xserver.desktopManager.gnome.enable = true;
25       services.xserver.desktopManager.gnome.debug = true;
26       services.xserver.displayManager.defaultSession = "gnome-xorg";
27       programs.gnome-terminal.enable = true;
29       systemd.user.services = {
30         "org.gnome.Shell@x11" = {
31           serviceConfig = {
32             ExecStart = [
33               # Clear the list before overriding it.
34               ""
35               # Eval API is now internal so Shell needs to run in unsafe mode.
36               # TODO: improve test driver so that it supports openqa-like manipulation
37               # that would allow us to drop this mess.
38               "${pkgs.gnome.gnome-shell}/bin/gnome-shell --unsafe-mode"
39             ];
40           };
41         };
42       };
44     };
46   testScript = { nodes, ... }: let
47     user = nodes.machine.config.users.users.alice;
48     uid = toString user.uid;
49     bus = "DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/${uid}/bus";
50     xauthority = "/run/user/${uid}/gdm/Xauthority";
51     display = "DISPLAY=:0.0";
52     env = "${bus} XAUTHORITY=${xauthority} ${display}";
53     gdbus = "${env} gdbus";
54     su = command: "su - ${user.name} -c '${env} ${command}'";
56     # Call javascript in gnome shell, returns a tuple (success, output), where
57     # `success` is true if the dbus call was successful and output is what the
58     # javascript evaluates to.
59     eval = "call --session -d org.gnome.Shell -o /org/gnome/Shell -m org.gnome.Shell.Eval";
61     # False when startup is done
62     startingUp = su "${gdbus} ${eval} Main.layoutManager._startingUp";
64     # Start gnome-terminal
65     gnomeTerminalCommand = su "gnome-terminal";
67     # Hopefully gnome-terminal's wm class
68     wmClass = su "${gdbus} ${eval} global.display.focus_window.wm_class";
69   in ''
70       with subtest("Login to GNOME Xorg with GDM"):
71           machine.wait_for_x()
72           # Wait for alice to be logged in"
73           machine.wait_for_unit("default.target", "${user.name}")
74           machine.wait_for_file("${xauthority}")
75           machine.succeed("xauth merge ${xauthority}")
76           # Check that logging in has given the user ownership of devices
77           assert "alice" in machine.succeed("getfacl -p /dev/snd/timer")
79       with subtest("Wait for GNOME Shell"):
80           # correct output should be (true, 'false')
81           machine.wait_until_succeeds(
82               "${startingUp} | grep -q 'true,..false'"
83           )
85       with subtest("Open Gnome Terminal"):
86           machine.succeed(
87               "${gnomeTerminalCommand}"
88           )
89           # correct output should be (true, '"Gnome-terminal"')
90           machine.wait_until_succeeds(
91               "${wmClass} | grep -q  'true,...Gnome-terminal'"
92           )
93           machine.sleep(20)
94           machine.screenshot("screen")
95     '';