about summary refs log tree commit diff
path: root/nixos/tests/prowlarr.nix
diff options
context:
space:
mode:
authorFelix Buehler <account@buehler.rocks>2023-12-29 10:57:56 +0100
committerFelix Buehler <account@buehler.rocks>2023-12-29 10:57:56 +0100
commit4a4e3f6d4e398979fc9e743b0d7b827bebb43e38 (patch)
tree138b736a3157654eada7abed403149efff690849 /nixos/tests/prowlarr.nix
parenta3957236ce752b03d0ba3c388422b730129c6085 (diff)
nixos/tests/prowlarr: check fo folder existance
Diffstat (limited to 'nixos/tests/prowlarr.nix')
-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 ]")
   '';
 })