summary refs log tree commit diff
path: root/nixos/tests/domination.nix
blob: c76d4ed8c61b3870578cf4546a0da1e4f6e87364 (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
import ./make-test-python.nix ({ pkgs, ... }: {
  name = "domination";
  meta = with pkgs.lib.maintainers; {
    maintainers = [ fgaz ];
  };

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

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

  enableOCR = true;

  testScript =
    ''
      machine.wait_for_x()
      machine.execute("domination >&2 &")
      machine.wait_for_window("Menu")
      machine.wait_for_text("New Game")
      machine.screenshot("screen")
    '';
})