25 lines
520 B
Nix
25 lines
520 B
Nix
import ./make-test-python.nix ({ pkgs, ... }: {
|
|
name = "soapui";
|
|
meta = with pkgs.lib.maintainers; {
|
|
maintainers = [ asbachb ];
|
|
};
|
|
|
|
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")
|
|
'';
|
|
})
|