mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
f974b979a5
This is brittle and breaks the test
65 lines
2.1 KiB
Nix
65 lines
2.1 KiB
Nix
import ./make-test.nix ({ pkgs, ...} :
|
|
|
|
{
|
|
name = "plasma5";
|
|
meta = with pkgs.stdenv.lib.maintainers; {
|
|
maintainers = [ ttuegel ];
|
|
};
|
|
|
|
machine = { ... }:
|
|
let
|
|
sddm_theme = pkgs.stdenv.mkDerivation {
|
|
name = "breeze-ocr-theme";
|
|
phases = "buildPhase";
|
|
buildCommand = ''
|
|
mkdir -p $out/share/sddm/themes/
|
|
cp -r ${pkgs.plasma-workspace}/share/sddm/themes/breeze $out/share/sddm/themes/breeze-ocr-theme
|
|
chmod -R +w $out/share/sddm/themes/breeze-ocr-theme
|
|
printf "[General]\ntype=color\ncolor=#1d99f3\nbackground=\n" > $out/share/sddm/themes/breeze-ocr-theme/theme.conf
|
|
'';
|
|
};
|
|
in
|
|
{
|
|
imports = [ ./common/user-account.nix ];
|
|
services.xserver.enable = true;
|
|
services.xserver.displayManager.sddm.enable = true;
|
|
services.xserver.displayManager.sddm.theme = "breeze-ocr-theme";
|
|
services.xserver.desktopManager.plasma5.enable = true;
|
|
services.xserver.desktopManager.default = "plasma5";
|
|
services.xserver.displayManager.sddm.autoLogin = {
|
|
enable = true;
|
|
user = "alice";
|
|
};
|
|
virtualisation.memorySize = 1024;
|
|
environment.systemPackages = [ sddm_theme ];
|
|
};
|
|
|
|
testScript = { nodes, ... }: let
|
|
user = nodes.machine.config.users.users.alice;
|
|
xdo = "${pkgs.xdotool}/bin/xdotool";
|
|
in ''
|
|
startAll;
|
|
# wait for log in
|
|
$machine->waitForFile("/home/alice/.Xauthority");
|
|
$machine->succeed("xauth merge ~alice/.Xauthority");
|
|
|
|
$machine->waitUntilSucceeds("pgrep plasmashell");
|
|
$machine->waitForWindow("^Desktop ");
|
|
|
|
# Check that logging in has given the user ownership of devices.
|
|
$machine->succeed("getfacl /dev/snd/timer | grep -q alice");
|
|
|
|
$machine->execute("su - alice -c 'DISPLAY=:0.0 dolphin &'");
|
|
$machine->waitForWindow(" Dolphin");
|
|
|
|
$machine->execute("su - alice -c 'DISPLAY=:0.0 konsole &'");
|
|
$machine->waitForWindow("Konsole");
|
|
|
|
$machine->execute("su - alice -c 'DISPLAY=:0.0 systemsettings5 &'");
|
|
$machine->waitForWindow("Settings");
|
|
|
|
$machine->execute("${xdo} key Alt+F1 sleep 10");
|
|
$machine->screenshot("screen");
|
|
'';
|
|
})
|