vuls: init at 0.27.0
[NixPkgs.git] / nixos / tests / domination.nix
blob04899c506531140d8f6b78acaaae1f2193751986
1 import ./make-test-python.nix ({ pkgs, ... }: {
2   name = "domination";
3   meta = with pkgs.lib.maintainers; {
4     maintainers = [ fgaz ];
5   };
7   nodes.machine = { config, pkgs, ... }: {
8     imports = [
9       ./common/x11.nix
10     ];
12     services.xserver.enable = true;
13     environment.systemPackages = [ pkgs.domination ];
14   };
16   enableOCR = true;
18   testScript =
19     ''
20       machine.wait_for_x()
21       # Add a dummy sound card, or an error reporting popup will appear,
22       # covering the main window and preventing OCR
23       machine.execute("modprobe snd-dummy")
24       machine.execute("domination >&2 &")
25       machine.wait_for_window("Menu")
26       machine.wait_for_text(r"(New Game|Start Server|Load Game|Help Manual|Join Game|About|Play Online)")
27       machine.screenshot("screen")
28     '';