vuls: init at 0.27.0
[NixPkgs.git] / nixos / tests / ft2-clone.nix
blob813e258cd2becd7ee820a96ebc359e702e376c2e
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     ];
11     environment.systemPackages = [ pkgs.ft2-clone ];
12   };
14   enableOCR = true;
16   testScript =
17     ''
18       machine.wait_for_x()
19       # Add a dummy sound card, or the program won't start
20       machine.execute("modprobe snd-dummy")
22       machine.execute("ft2-clone >&2 &")
24       machine.wait_for_window(r"Fasttracker")
25       machine.sleep(5)
26       machine.wait_for_text(r"(Songlen|Repstart|Time|About|Nibbles|Help)")
27       machine.screenshot("screen")
28     '';