Merge pull request #277501 from Stunkymonkey/prowlarr-check-folder
nixos/tests/prowlarr: check for folder existence
This commit is contained in:
commit
99f4714039
1 changed files with 3 additions and 1 deletions
|
@ -11,6 +11,8 @@ import ./make-test-python.nix ({ lib, ... }:
|
||||||
testScript = ''
|
testScript = ''
|
||||||
machine.wait_for_unit("prowlarr.service")
|
machine.wait_for_unit("prowlarr.service")
|
||||||
machine.wait_for_open_port(9696)
|
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 ]")
|
||||||
'';
|
'';
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue