summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorBenjamin Asbach <asbachb.github@impl.it>2021-08-01 12:11:12 -0600
committerGitHub <noreply@github.com>2021-08-01 20:11:12 +0200
commitf22a7ae1a8efe6c322de04b86adcf0b6c5ea5646 (patch)
tree42b844f6648c0861212a2e2cbb059680596a569f /nixos
parent9fc2cddf24ad1819f17174cbae47789294ea6dc4 (diff)
downloadnixpkgs-f22a7ae1a8efe6c322de04b86adcf0b6c5ea5646.tar
nixpkgs-f22a7ae1a8efe6c322de04b86adcf0b6c5ea5646.tar.gz
nixpkgs-f22a7ae1a8efe6c322de04b86adcf0b6c5ea5646.tar.bz2
nixpkgs-f22a7ae1a8efe6c322de04b86adcf0b6c5ea5646.tar.lz
nixpkgs-f22a7ae1a8efe6c322de04b86adcf0b6c5ea5646.tar.xz
nixpkgs-f22a7ae1a8efe6c322de04b86adcf0b6c5ea5646.tar.zst
nixpkgs-f22a7ae1a8efe6c322de04b86adcf0b6c5ea5646.zip
soapui: 5.5.0 -> 5.6.0 (#131307)
Co-authored-by: Benjamin Asbach <asbachb@users.noreply.github.com>
Diffstat (limited to 'nixos')
-rw-r--r--nixos/tests/soapui.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/nixos/tests/soapui.nix b/nixos/tests/soapui.nix
new file mode 100644
index 00000000000..205128df91f
--- /dev/null
+++ b/nixos/tests/soapui.nix
@@ -0,0 +1,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")
+  '';
+})