summary refs log tree commit diff
path: root/nixos/tests/installed-tests/gnome-photos.nix
blob: 05e7ccb65ad525f56bc9cdad933866978df49cf9 (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
{ pkgs, makeInstalledTest, ... }:

makeInstalledTest {
  tested = pkgs.gnome-photos;

  withX11 = true;

  testConfig = {
    programs.dconf.enable = true;
    services.gnome3.at-spi2-core.enable = true; # needed for dogtail
    environment.systemPackages = with pkgs; [
      # gsettings tool with access to gsettings-desktop-schemas
      (stdenv.mkDerivation {
        name = "desktop-gsettings";
        dontUnpack = true;
        nativeBuildInputs = [ glib wrapGAppsHook ];
        buildInputs = [ gsettings-desktop-schemas ];
        installPhase = ''
          runHook preInstall
          mkdir -p $out/bin
          ln -s ${glib.bin}/bin/gsettings $out/bin/desktop-gsettings
          runHook postInstall
        '';
      })
    ];
    services.dbus.packages = with pkgs; [ gnome-photos ];
  };

  preTestScript = ''
    # dogtail needs accessibility enabled
    machine.succeed(
        "desktop-gsettings set org.gnome.desktop.interface toolkit-accessibility true 2>&1"
    )
  '';
}