Merge pull request #73938 from worldofpeace/port-gnome3-xorg-test

nixosTests.gnome3-xorg: port to python/rewrite
This commit is contained in:
worldofpeace 2020-01-08 09:38:29 -05:00 committed by GitHub
commit a408bcbe44
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 59 additions and 20 deletions

View File

@ -4,6 +4,7 @@
{ isNormalUser = true; { isNormalUser = true;
description = "Alice Foobar"; description = "Alice Foobar";
password = "foobar"; password = "foobar";
uid = 1000;
}; };
users.users.bob = users.users.bob =

View File

@ -1,41 +1,79 @@
import ./make-test.nix ({ pkgs, ...} : { import ./make-test-python.nix ({ pkgs, ...} : {
name = "gnome3-xorg"; name = "gnome3-xorg";
meta = with pkgs.stdenv.lib.maintainers; { meta = with pkgs.stdenv.lib.maintainers; {
maintainers = pkgs.gnome3.maintainers; maintainers = pkgs.gnome3.maintainers;
}; };
machine = machine = { nodes, ... }: let
{ ... }: user = nodes.machine.config.users.users.alice;
in
{ imports = [ ./common/user-account.nix ]; { imports = [ ./common/user-account.nix ];
services.xserver.enable = true; services.xserver.enable = true;
services.xserver.displayManager.gdm.enable = false; services.xserver.displayManager.gdm = {
services.xserver.displayManager.lightdm.enable = true; enable = true;
services.xserver.displayManager.lightdm.autoLogin.enable = true; autoLogin = {
services.xserver.displayManager.lightdm.autoLogin.user = "alice"; enable = true;
user = user.name;
};
};
services.xserver.desktopManager.gnome3.enable = true; services.xserver.desktopManager.gnome3.enable = true;
services.xserver.displayManager.defaultSession = "gnome-xorg"; services.xserver.displayManager.defaultSession = "gnome-xorg";
virtualisation.memorySize = 1024; virtualisation.memorySize = 1024;
}; };
testScript = testScript = { nodes, ... }: let
'' user = nodes.machine.config.users.users.alice;
$machine->waitForX; uid = toString user.uid;
bus = "DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/${uid}/bus";
xauthority = "/run/user/${uid}/gdm/Xauthority";
display = "DISPLAY=:0.0";
env = "${bus} XAUTHORITY=${xauthority} ${display}";
gdbus = "${env} gdbus";
su = command: "su - ${user.name} -c '${env} ${command}'";
# wait for alice to be logged in # Call javascript in gnome shell, returns a tuple (success, output), where
$machine->waitForUnit("default.target","alice"); # `success` is true if the dbus call was successful and output is what the
# javascript evaluates to.
eval = "call --session -d org.gnome.Shell -o /org/gnome/Shell -m org.gnome.Shell.Eval";
# Check that logging in has given the user ownership of devices. # False when startup is done
$machine->succeed("getfacl -p /dev/snd/timer | grep -q alice"); startingUp = su "${gdbus} ${eval} Main.layoutManager._startingUp";
$machine->succeed("su - alice -c 'DISPLAY=:0.0 gnome-terminal &'"); # Start gnome-terminal
$machine->succeed("xauth merge ~alice/.Xauthority"); gnomeTerminalCommand = su "gnome-terminal";
$machine->waitForWindow(qr/alice.*machine/);
$machine->succeed("timeout 900 bash -c 'while read msg; do if [[ \$msg =~ \"GNOME Shell started\" ]]; then break; fi; done < <(journalctl -f)'"); # Hopefully gnome-terminal's wm class
$machine->sleep(10); wmClass = su "${gdbus} ${eval} global.display.focus_window.wm_class";
$machine->screenshot("screen"); in ''
with subtest("Login to GNOME Xorg with GDM"):
machine.wait_for_x()
# Wait for alice to be logged in"
machine.wait_for_unit("default.target", "${user.name}")
machine.wait_for_file("${xauthority}")
machine.succeed("xauth merge ${xauthority}")
# Check that logging in has given the user ownership of devices
assert "alice" in machine.succeed("getfacl -p /dev/snd/timer")
with subtest("Wait for GNOME Shell"):
# correct output should be (true, 'false')
machine.wait_until_succeeds(
"${startingUp} | grep -q 'true,..false'"
)
with subtest("Open Gnome Terminal"):
machine.succeed(
"${gnomeTerminalCommand}"
)
# correct output should be (true, '"Gnome-terminal"')
machine.wait_until_succeeds(
"${wmClass} | grep -q 'true,...Gnome-terminal'"
)
machine.sleep(20)
machine.screenshot("screen")
''; '';
}) })