summary refs log tree commit diff
path: root/nixos/tests/soapui.nix
blob: 205128df91f45122dd80b9d1c09db397419d863e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import ./make-test-python.nix ({ pkgs, ... }: {
  name = "soapui";
  meta = with pkgs.lib.maintainers; {
    maintainers = [ asbachb ];
  };

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

    services.xserver.enable = true;

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

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