nixos/tests/prowlarr: check fo folder existance

This commit is contained in:
Felix Buehler 2023-12-29 10:57:56 +01:00
parent a3957236ce
commit 4a4e3f6d4e

View File

@ -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 ]")
'';
})