summary refs log tree commit diff
path: root/nixos/tests/flatpak.nix
blob: 9a5bdf07021737ac0941c871ac1811a43b004a26 (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
# run installed tests
import ./make-test.nix ({ pkgs, ... }:

{
  name = "flatpak";
  meta = {
    maintainers = pkgs.flatpak.meta.maintainers;
  };

  machine = { config, pkgs, ... }: {
    imports = [ ./common/x11.nix ];
    services.xserver.desktopManager.gnome3.enable = true; # TODO: figure out minimal environment where the tests work
    environment.gnome3.excludePackages = pkgs.gnome3.optionalPackages;
    services.flatpak.enable = true;
    environment.systemPackages = with pkgs; [ gnupg gnome-desktop-testing ostree python2 ];
    virtualisation.memorySize = 2047;
    virtualisation.diskSize = 1024;
  };

  testScript = ''
    $machine->waitForX();
    $machine->succeed("gnome-desktop-testing-runner -d '${pkgs.flatpak.installedTests}/share' --timeout 3600");
  '';
})