summaryrefslogtreecommitdiffstats
path: root/nixos/tests/domination.nix
blob: 48f5825afc974ee9c869fef8b451d4faab48a9ca (plain)
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
{ pkgs, ... }:
{
  name = "domination";
  meta = with pkgs.lib.maintainers; {
    maintainers = [ fgaz ];
  };

  nodes.machine =
    { config, pkgs, ... }:
    {
      imports = [
        ./common/x11.nix
      ];

      services.xserver.enable = true;
      environment.systemPackages = [ pkgs.domination ];
    };

  enableOCR = true;

  testScript = ''
    machine.wait_for_x()
    # Add a dummy sound card, or an error reporting popup will appear,
    # covering the main window and preventing OCR
    machine.execute("modprobe snd-dummy")
    machine.execute("domination >&2 &")
    machine.wait_for_window("Menu")
    machine.wait_for_text(r"(New Game|Start Server|Load Game|Help Manual|Join Game|About|Play Online)")
    machine.screenshot("screen")
  '';
}