vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / nixos / tests / soapui.nix
blob3a2d11a167562ee43928c0250ec387ecb10d8b27
1 import ./make-test-python.nix ({ pkgs, ... }: {
2   name = "soapui";
3   meta = with pkgs.lib.maintainers; {
4     maintainers = [ ];
5   };
7   nodes.machine = { config, pkgs, ... }: {
8     imports = [
9       ./common/x11.nix
10     ];
12     services.xserver.enable = true;
14     environment.systemPackages = [ pkgs.soapui ];
15   };
17   testScript = ''
18     machine.wait_for_x()
19     machine.succeed("soapui >&2 &")
20     machine.wait_for_window(r"SoapUI \d+\.\d+\.\d+")
21     machine.sleep(1)
22     machine.screenshot("soapui")
23   '';