bba5b1c434
enable = false; didn't help, but downgrading did. It's a mystery to me. Discussion: https://github.com/NixOS/nixpkgs/commit/c9f8fb4d127a
69 lines
2.1 KiB
Nix
69 lines
2.1 KiB
Nix
import ./make-test.nix ({ pkgs, ...} :
|
|
|
|
{
|
|
name = "plasma5";
|
|
meta = with pkgs.stdenv.lib.maintainers; {
|
|
maintainers = [ ttuegel ];
|
|
};
|
|
|
|
machine = { lib, ... }: {
|
|
imports = [ ./common/user-account.nix ];
|
|
services.xserver.enable = true;
|
|
services.xserver.displayManager.sddm.enable = true;
|
|
services.xserver.desktopManager.plasma5.enable = true;
|
|
services.xserver.desktopManager.default = "plasma5";
|
|
virtualisation.memorySize = 1024;
|
|
|
|
# fontconfig-penultimate-0.3.3 -> 0.3.4 broke OCR apparently, but no idea why.
|
|
nixpkgs.config.packageOverrides = superPkgs: {
|
|
fontconfig-penultimate = superPkgs.fontconfig-penultimate.overrideAttrs
|
|
(_attrs: rec {
|
|
version = "0.3.3";
|
|
name = "fontconfig-penultimate-${version}";
|
|
src = pkgs.fetchFromGitHub {
|
|
owner = "ttuegel";
|
|
repo = "fontconfig-penultimate";
|
|
rev = version;
|
|
sha256 = "0392lw31jps652dcjazln77ihb6bl7gk201gb7wb9i223avp86w9";
|
|
};
|
|
});
|
|
};
|
|
};
|
|
|
|
enableOCR = true;
|
|
|
|
testScript = { nodes, ... }: let
|
|
user = nodes.machine.config.users.extraUsers.alice;
|
|
xdo = "${pkgs.xdotool}/bin/xdotool";
|
|
in ''
|
|
startAll;
|
|
|
|
# Wait for display manager to start
|
|
$machine->waitForText(qr/${user.description}/);
|
|
$machine->screenshot("sddm");
|
|
|
|
# Log in
|
|
$machine->sendChars("${user.password}\n");
|
|
$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");
|
|
'';
|
|
})
|