nixVersions.stable: 2.15 -> 2.17
[NixPkgs.git] / nixos / tests / shattered-pixel-dungeon.nix
bloba256bbdfd7357681896156a4f02bb00d884a003c
1 import ./make-test-python.nix ({ pkgs, ... }: {
2   name = "shattered-pixel-dungeon";
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     sound.enable = true;
14     environment.systemPackages = [ pkgs.shattered-pixel-dungeon ];
15   };
17   enableOCR = true;
19   testScript =
20     ''
21       machine.wait_for_x()
22       machine.execute("shattered-pixel-dungeon >&2 &")
23       machine.wait_for_window(r"Shattered Pixel Dungeon")
24       machine.sleep(5)
25       if "Enter" not in machine.get_screen_text():
26           raise Exception("Program did not start successfully")
27       machine.screenshot("screen")
28     '';