2015-07-12 11:09:40 +01:00
|
|
|
import ./make-test.nix ({ pkgs, ...} : {
|
2014-06-28 15:04:49 +01:00
|
|
|
name = "gnome3";
|
2015-07-12 11:09:40 +01:00
|
|
|
meta = with pkgs.stdenv.lib.maintainers; {
|
2016-05-17 12:57:28 +01:00
|
|
|
maintainers = [ domenkozar eelco chaoflow lethalman ];
|
2015-07-12 11:09:40 +01:00
|
|
|
};
|
2014-02-08 20:47:28 +00:00
|
|
|
|
|
|
|
machine =
|
2018-07-20 21:56:59 +01:00
|
|
|
{ ... }:
|
2014-02-08 20:47:28 +00:00
|
|
|
|
|
|
|
{ imports = [ ./common/user-account.nix ];
|
|
|
|
|
|
|
|
services.xserver.enable = true;
|
|
|
|
|
2018-06-09 21:02:48 +01:00
|
|
|
services.xserver.displayManager.lightdm.enable = true;
|
|
|
|
services.xserver.displayManager.lightdm.autoLogin.enable = true;
|
|
|
|
services.xserver.displayManager.lightdm.autoLogin.user = "alice";
|
2014-02-08 20:47:28 +00:00
|
|
|
services.xserver.desktopManager.gnome3.enable = true;
|
2018-07-28 17:23:35 +01:00
|
|
|
services.xserver.desktopManager.default = "gnome";
|
2014-11-02 15:33:10 +00:00
|
|
|
|
2017-09-01 06:49:35 +01:00
|
|
|
virtualisation.memorySize = 1024;
|
2014-02-08 20:47:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
testScript =
|
|
|
|
''
|
|
|
|
$machine->waitForX;
|
2018-06-09 21:02:48 +01:00
|
|
|
|
|
|
|
# wait for alice to be logged in
|
|
|
|
$machine->waitForUnit("default.target","alice");
|
2014-02-08 20:47:28 +00:00
|
|
|
|
|
|
|
# Check that logging in has given the user ownership of devices.
|
|
|
|
$machine->succeed("getfacl /dev/snd/timer | grep -q alice");
|
|
|
|
|
|
|
|
$machine->succeed("su - alice -c 'DISPLAY=:0.0 gnome-terminal &'");
|
2016-04-12 18:12:47 +01:00
|
|
|
$machine->succeed("xauth merge ~alice/.Xauthority");
|
2014-02-08 20:47:28 +00:00
|
|
|
$machine->waitForWindow(qr/Terminal/);
|
2016-12-29 15:19:43 +00:00
|
|
|
$machine->succeed("timeout 900 bash -c 'while read msg; do if [[ \$msg =~ \"GNOME Shell started\" ]]; then break; fi; done < <(journalctl -f)'");
|
2015-09-30 17:29:08 +01:00
|
|
|
$machine->sleep(10);
|
2014-02-08 20:47:28 +00:00
|
|
|
$machine->screenshot("screen");
|
|
|
|
'';
|
2015-07-12 11:09:40 +01:00
|
|
|
})
|