Merge branch 'staging-next' into staging
[NixPkgs.git] / nixos / tests / ft2-clone.nix
blob5476b38c00bd26d3f4ad15a1e8cdfab87cf00e44
1 import ./make-test-python.nix ({ pkgs, ... }: {
2   name = "ft2-clone";
3   meta = with pkgs.lib.maintainers; {
4     maintainers = [ fgaz ];
5   };
7   nodes.machine = { pkgs, ... }: {
8     imports = [
9       ./common/x11.nix
10     ];
12     sound.enable = true;
13     environment.systemPackages = [ pkgs.ft2-clone ];
14   };
16   enableOCR = true;
18   testScript =
19     ''
20       machine.wait_for_x()
21       # Add a dummy sound card, or the program won't start
22       machine.execute("modprobe snd-dummy")
24       machine.execute("ft2-clone >&2 &")
26       machine.wait_for_window(r"Fasttracker")
27       machine.sleep(5)
28       machine.wait_for_text(r"(Songlen|Repstart|Time|About|Nibbles|Help)")
29       machine.screenshot("screen")
30     '';