vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / nixos / tests / sfxr-qt.nix
blobcca3e5f3ea7654520f73127563ea55dd60a6f9a4
1 import ./make-test-python.nix ({ pkgs, ... }: {
2   name = "sfxr-qt";
3   meta = with pkgs.lib.maintainers; {
4     maintainers = [ fgaz ];
5   };
7   machine = { config, pkgs, ... }: {
8     imports = [
9       ./common/x11.nix
10     ];
12     services.xserver.enable = true;
13     environment.systemPackages = [ pkgs.sfxr-qt ];
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("sfxr-qt >&2 &")
26       machine.wait_for_window(r"sfxr")
27       machine.sleep(10)
28       machine.wait_for_text("requency")
29       machine.screenshot("screen")
30     '';