Merge pull request #277501 from Stunkymonkey/prowlarr-check-folder

nixos/tests/prowlarr: check for folder existence
This commit is contained in:
Felix Bühler 2024-01-14 14:39:27 +01:00 committed by GitHub
commit 99f4714039
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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