about summary refs log tree commit diff
path: root/nixpkgs/nixos/tests/mate-wayland.nix
blob: df39ead286e150f17fa86e545209ea3606b51144 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import ./make-test-python.nix ({ pkgs, lib, ... }: {
  name = "mate-wayland";

  meta.maintainers = lib.teams.mate.members;

  nodes.machine = { ... }: {
    imports = [
      ./common/user-account.nix
    ];

    services.xserver.enable = true;
    services.xserver.displayManager = {
      sddm.enable = true; # https://github.com/canonical/lightdm/issues/63
      sddm.wayland.enable = true;
      defaultSession = "MATE";
      autoLogin = {
        enable = true;
        user = "alice";
      };
    };
    services.xserver.desktopManager.mate.enableWaylandSession = true;

    hardware.pulseaudio.enable = true;

    # Need to switch to a different GPU driver than the default one (-vga std) so that wayfire can launch:
    virtualisation.qemu.options = [ "-vga none -device virtio-gpu-pci" ];
  };

  enableOCR = true;

  testScript = { nodes, ... }:
    let
      user = nodes.machine.users.users.alice;
    in
    ''
      machine.wait_for_unit("display-manager.service")

      with subtest("Wait for Wayland server"):
          machine.wait_for_file("/run/user/${toString user.uid}/wayland-1")

      with subtest("Check if MATE session components actually start"):
          for i in ["wayfire", "mate-panel", "mate-wayland.sh", "mate-wayland-components.sh"]:
              machine.wait_until_succeeds(f"pgrep -f {i}")
          machine.wait_for_text('(Applications|Places|System)')
          # It is expected that this applet doesn't work in Wayland
          machine.wait_for_text('WorkspaceSwitcherApplet')

      with subtest("Check if various environment variables are set"):
          cmd = "xargs --null --max-args=1 echo < /proc/$(pgrep -xf mate-panel)/environ"
          machine.succeed(f"{cmd} | grep 'XDG_SESSION_TYPE' | grep 'wayland'")
          machine.succeed(f"{cmd} | grep 'XDG_SESSION_DESKTOP' | grep 'MATE'")
          machine.succeed(f"{cmd} | grep 'MATE_PANEL_APPLETS_DIR' | grep '${pkgs.mate.mate-panel-with-applets.pname}'")

      with subtest("Check if Wayfire config is properly configured"):
          for i in ["button_style = mate", "firedecor", "mate-wayland-components.sh"]:
              machine.wait_until_succeeds(f"cat /home/${user.name}/.config/mate/wayfire.ini | grep '{i}'")

      with subtest("Check if Wayfire has ever coredumped"):
          machine.fail("coredumpctl --json=short | grep wayfire")
          machine.sleep(10)
          machine.screenshot("screen")
    '';
})