about summary refs log tree commit diff
path: root/nixpkgs/nixos/tests/ft2-clone.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/nixos/tests/ft2-clone.nix')
-rw-r--r--nixpkgs/nixos/tests/ft2-clone.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/nixpkgs/nixos/tests/ft2-clone.nix b/nixpkgs/nixos/tests/ft2-clone.nix
new file mode 100644
index 000000000000..5476b38c00bd
--- /dev/null
+++ b/nixpkgs/nixos/tests/ft2-clone.nix
@@ -0,0 +1,31 @@
+import ./make-test-python.nix ({ pkgs, ... }: {
+  name = "ft2-clone";
+  meta = with pkgs.lib.maintainers; {
+    maintainers = [ fgaz ];
+  };
+
+  nodes.machine = { pkgs, ... }: {
+    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 &")
+
+      machine.wait_for_window(r"Fasttracker")
+      machine.sleep(5)
+      machine.wait_for_text(r"(Songlen|Repstart|Time|About|Nibbles|Help)")
+      machine.screenshot("screen")
+    '';
+})