nixos/tests/paperless: Use curl --fail
This commit is contained in:
parent
bbd1f02b16
commit
4fc64f27c7
@ -23,14 +23,14 @@ import ./make-test-python.nix ({ lib, ... } : {
|
||||
with subtest("Service gets ready"):
|
||||
machine.wait_for_unit("paperless-server.service")
|
||||
# Wait until server accepts connections
|
||||
machine.wait_until_succeeds("curl -s localhost:28981")
|
||||
machine.wait_until_succeeds("curl -fs localhost:28981")
|
||||
|
||||
with subtest("Test document is consumed"):
|
||||
machine.wait_until_succeeds(
|
||||
"(($(curl -s localhost:28981/api/documents/ | jq .count) == 1))"
|
||||
"(($(curl -fs localhost:28981/api/documents/ | jq .count) == 1))"
|
||||
)
|
||||
assert "2005-10-16" in machine.succeed(
|
||||
"curl -s localhost:28981/api/documents/ | jq '.results | .[0] | .created'"
|
||||
"curl -fs localhost:28981/api/documents/ | jq '.results | .[0] | .created'"
|
||||
)
|
||||
'';
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user