nixpkgs/nixos/tests/domination.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
631 B
Nix
Raw Normal View History

2021-11-13 22:00:20 +00:00
import ./make-test-python.nix ({ pkgs, ... }: {
name = "domination";
meta = with pkgs.lib.maintainers; {
maintainers = [ fgaz ];
};
2022-03-20 23:15:30 +00:00
nodes.machine = { config, pkgs, ... }: {
2021-11-13 22:00:20 +00:00
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")
2022-10-12 07:32:06 +00:00
machine.wait_for_text(r"(New Game|Start Server|Load Game|Help Manual|Join Game|About|Play Online)")
2021-11-13 22:00:20 +00:00
machine.screenshot("screen")
'';
})