nixpkgs/nixos/tests/ft2-clone.nix

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

32 lines
714 B
Nix
Raw Normal View History

2020-07-29 17:40:38 +00:00
import ./make-test-python.nix ({ pkgs, ... }: {
name = "ft2-clone";
meta = with pkgs.lib.maintainers; {
maintainers = [ fgaz ];
};
nodes.machine = { pkgs, ... }: {
2020-07-29 17:40:38 +00:00
imports = [
./common/x11.nix
];
sound.enable = true;
environment.systemPackages = [ pkgs.ft2-clone ];
};
enableOCR = true;
testScript =
''
machine.wait_for_x()
# Add a dummy sound card, or the program won't start
machine.execute("modprobe snd-dummy")
machine.execute("ft2-clone >&2 &")
2020-07-29 17:40:38 +00:00
machine.wait_for_window(r"Fasttracker")
machine.sleep(5)
machine.wait_for_text(r"(Songlen|Repstart|Time|About|Nibbles|Help)")
2020-07-29 17:40:38 +00:00
machine.screenshot("screen")
'';
})