2015-09-15 12:25:19 +00:00
|
|
|
import ./make-test.nix ({ pkgs, ...} : {
|
|
|
|
name = "gnome3-gdm";
|
|
|
|
meta = with pkgs.stdenv.lib.maintainers; {
|
|
|
|
maintainers = [ lethalman ];
|
|
|
|
};
|
|
|
|
|
|
|
|
machine =
|
2018-07-20 20:56:59 +00:00
|
|
|
{ ... }:
|
2015-09-15 12:25:19 +00:00
|
|
|
|
|
|
|
{ imports = [ ./common/user-account.nix ];
|
|
|
|
|
|
|
|
services.xserver.enable = true;
|
|
|
|
|
|
|
|
services.xserver.displayManager.gdm = {
|
|
|
|
enable = true;
|
|
|
|
autoLogin = {
|
|
|
|
enable = true;
|
|
|
|
user = "alice";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
services.xserver.desktopManager.gnome3.enable = true;
|
|
|
|
|
2017-09-28 14:58:45 +00:00
|
|
|
virtualisation.memorySize = 1024;
|
2015-09-15 12:25:19 +00:00
|
|
|
};
|
|
|
|
|
2018-12-09 15:35:51 +00:00
|
|
|
testScript = let
|
|
|
|
# Keep line widths somewhat managable
|
|
|
|
bus = "DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus";
|
|
|
|
gdbus = "${bus} gdbus";
|
|
|
|
# Call javascript in gnome shell, returns a tuple (success, output), where
|
|
|
|
# `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";
|
|
|
|
# False when startup is done
|
|
|
|
startingUp = "${gdbus} ${eval} Main.layoutManager._startingUp";
|
|
|
|
# Hopefully gnome-terminal's wm class
|
|
|
|
wmClass = "${gdbus} ${eval} global.display.focus_window.wm_class";
|
|
|
|
in ''
|
|
|
|
# wait for gdm to start
|
2018-04-21 10:09:30 +00:00
|
|
|
$machine->waitForUnit("display-manager.service");
|
|
|
|
|
|
|
|
# wait for alice to be logged in
|
|
|
|
$machine->waitForUnit("default.target","alice");
|
2015-09-15 12:25:19 +00:00
|
|
|
|
|
|
|
# Check that logging in has given the user ownership of devices.
|
|
|
|
$machine->succeed("getfacl /dev/snd/timer | grep -q alice");
|
|
|
|
|
2018-12-09 15:35:51 +00:00
|
|
|
# Wait for the wayland server
|
|
|
|
$machine->waitForFile("/run/user/1000/wayland-0");
|
|
|
|
|
|
|
|
# Wait for gnome shell, correct output should be "(true, 'false')"
|
|
|
|
$machine->waitUntilSucceeds("su - alice -c '${startingUp} | grep -q true,..false'");
|
|
|
|
|
|
|
|
# open a terminal
|
|
|
|
$machine->succeed("su - alice -c '${bus} gnome-terminal'");
|
|
|
|
# and check it's there
|
|
|
|
$machine->waitUntilSucceeds("su - alice -c '${wmClass} | grep -q gnome-terminal-server'");
|
2018-04-21 10:09:30 +00:00
|
|
|
|
|
|
|
# wait to get a nice screenshot
|
2015-09-15 12:25:19 +00:00
|
|
|
$machine->sleep(20);
|
|
|
|
$machine->screenshot("screen");
|
|
|
|
'';
|
|
|
|
})
|