2020-07-29 18:40:38 +01:00
|
|
|
import ./make-test-python.nix ({ pkgs, ... }: {
|
|
|
|
name = "ft2-clone";
|
|
|
|
meta = with pkgs.lib.maintainers; {
|
|
|
|
maintainers = [ fgaz ];
|
|
|
|
};
|
|
|
|
|
2022-03-20 23:15:30 +00:00
|
|
|
nodes.machine = { config, pkgs, ... }: {
|
2020-07-29 18:40:38 +01:00
|
|
|
imports = [
|
|
|
|
./common/x11.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
services.xserver.enable = true;
|
|
|
|
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")
|
|
|
|
|
2021-11-05 00:43:22 +00:00
|
|
|
machine.execute("ft2-clone >&2 &")
|
2020-07-29 18:40:38 +01:00
|
|
|
|
|
|
|
machine.wait_for_window(r"Fasttracker")
|
|
|
|
machine.sleep(5)
|
|
|
|
# One of the few words that actually get recognized
|
|
|
|
if "Songlen" not in machine.get_screen_text():
|
|
|
|
raise Exception("Program did not start successfully")
|
|
|
|
machine.screenshot("screen")
|
|
|
|
'';
|
|
|
|
})
|
|
|
|
|