about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorFelix Bühler <Stunkymonkey@users.noreply.github.com>2024-01-14 14:39:27 +0100
committerGitHub <noreply@github.com>2024-01-14 14:39:27 +0100
commit99f4714039e639c6d2dcc0e7f71a6f258c5686bf (patch)
tree913774278962f27d3b6f3b69a045bf21556146db /nixos
parent214a7d4eda28a49ca3a80375c44c7833e2a01133 (diff)
parent4a4e3f6d4e398979fc9e743b0d7b827bebb43e38 (diff)
Merge pull request #277501 from Stunkymonkey/prowlarr-check-folder
nixos/tests/prowlarr: check for folder existence
Diffstat (limited to 'nixos')
-rw-r--r--nixos/tests/prowlarr.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/nixos/tests/prowlarr.nix b/nixos/tests/prowlarr.nix
index af669afd57004..663743546459f 100644
--- a/nixos/tests/prowlarr.nix
+++ b/nixos/tests/prowlarr.nix
@@ -11,6 +11,8 @@ import ./make-test-python.nix ({ lib, ... }:
   testScript = ''
     machine.wait_for_unit("prowlarr.service")
     machine.wait_for_open_port(9696)
-    machine.succeed("curl --fail http://localhost:9696/")
+    response = machine.succeed("curl --fail http://localhost:9696/")
+    assert '<title>Prowlarr</title>' in response, "Login page didn't load successfully"
+    machine.succeed("[ -d /var/lib/prowlarr ]")
   '';
 })