2019-08-22 02:04:29 +00:00
|
|
|
import ./make-test.nix ({ pkgs, ...} : {
|
|
|
|
name = "xfce4-14";
|
|
|
|
|
|
|
|
machine =
|
|
|
|
{ pkgs, ... }:
|
|
|
|
|
|
|
|
{ imports = [ ./common/user-account.nix ];
|
|
|
|
|
|
|
|
services.xserver.enable = true;
|
|
|
|
|
|
|
|
services.xserver.displayManager.auto.enable = true;
|
|
|
|
services.xserver.displayManager.auto.user = "alice";
|
|
|
|
|
|
|
|
services.xserver.desktopManager.xfce4-14.enable = true;
|
2019-09-10 02:13:06 +00:00
|
|
|
|
|
|
|
hardware.pulseaudio.enable = true; # needed for the factl test, /dev/snd/* exists without them but udev doesn't care then
|
2019-10-11 21:20:57 +00:00
|
|
|
|
2019-09-10 02:18:08 +00:00
|
|
|
virtualisation.memorySize = 1024;
|
2019-08-22 02:04:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
testScript =
|
|
|
|
''
|
|
|
|
$machine->waitForX;
|
|
|
|
$machine->waitForFile("/home/alice/.Xauthority");
|
|
|
|
$machine->succeed("xauth merge ~alice/.Xauthority");
|
|
|
|
$machine->waitForWindow(qr/xfce4-panel/);
|
|
|
|
$machine->sleep(10);
|
|
|
|
|
|
|
|
# Check that logging in has given the user ownership of devices.
|
2019-10-11 21:20:57 +00:00
|
|
|
$machine->succeed("getfacl -p /dev/snd/timer | grep -q alice");
|
2019-08-22 02:04:29 +00:00
|
|
|
|
|
|
|
$machine->succeed("su - alice -c 'DISPLAY=:0.0 xfce4-terminal &'");
|
|
|
|
$machine->waitForWindow(qr/Terminal/);
|
|
|
|
$machine->sleep(10);
|
|
|
|
$machine->screenshot("screen");
|
|
|
|
'';
|
|
|
|
})
|