summaryrefslogtreecommitdiffstats
path: root/nixos/tests/soapui.nix
blob: a5ae9a91a10b851fb14e4071678203aa0a85cb48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ pkgs, ... }:
{
  name = "soapui";
  meta = {
    maintainers = [ ];
  };

  nodes.machine =
    { config, pkgs, ... }:
    {
      imports = [
        ./common/x11.nix
      ];

      services.xserver.enable = true;

      environment.systemPackages = [ pkgs.soapui ];
    };

  testScript = ''
    machine.wait_for_x()
    machine.succeed("soapui >&2 &")
    machine.wait_for_window(r"SoapUI \d+\.\d+\.\d+")
    machine.sleep(1)
    machine.screenshot("soapui")
  '';
}