vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / nixos / tests / pt2-clone.nix
blob57a8495a3296ad9b3dd0b1069fae41e969eadb59
1 import ./make-test-python.nix ({ pkgs, ... }: {
2   name = "pt2-clone";
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     environment.systemPackages = [ pkgs.pt2-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("pt2-clone >&2 &")
26       machine.wait_for_window(r"ProTracker")
27       machine.sleep(5)
28       # One of the few words that actually get recognized
29       if "LENGTH" not in machine.get_screen_text():
30           raise Exception("Program did not start successfully")
31       machine.screenshot("screen")
32     '';