mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
308c4bf0f7
Service: - Fix misleading comment: We could in fact implement password copying as a preStart script by amending BindReadOnlyPaths, but adding an extra service is simpler. Test: - Add more detailed subtest names - Simplify date check
44 lines
1.7 KiB
Nix
44 lines
1.7 KiB
Nix
import ./make-test-python.nix ({ lib, ... }: {
|
|
name = "paperless-ng";
|
|
meta.maintainers = with lib.maintainers; [ earvstedt Flakebi ];
|
|
|
|
nodes.machine = { pkgs, ... }: {
|
|
environment.systemPackages = with pkgs; [ imagemagick jq ];
|
|
services.paperless-ng = {
|
|
enable = true;
|
|
passwordFile = builtins.toFile "password" "admin";
|
|
};
|
|
};
|
|
|
|
testScript = ''
|
|
import json
|
|
|
|
machine.wait_for_unit("paperless-ng-consumer.service")
|
|
|
|
with subtest("Add a document via the file system"):
|
|
machine.succeed(
|
|
"convert -size 400x40 xc:white -font 'DejaVu-Sans' -pointsize 20 -fill black "
|
|
"-annotate +5+20 'hello world 16-10-2005' /var/lib/paperless/consume/doc.png"
|
|
)
|
|
|
|
with subtest("Web interface gets ready"):
|
|
machine.wait_for_unit("paperless-ng-web.service")
|
|
# Wait until server accepts connections
|
|
machine.wait_until_succeeds("curl -fs localhost:28981")
|
|
|
|
with subtest("Add a document via the web interface"):
|
|
machine.succeed(
|
|
"convert -size 400x40 xc:white -font 'DejaVu-Sans' -pointsize 20 -fill black "
|
|
"-annotate +5+20 'hello web 16-10-2005' /tmp/webdoc.png"
|
|
)
|
|
machine.wait_until_succeeds("curl -u admin:admin -F document=@/tmp/webdoc.png -fs localhost:28981/api/documents/post_document/")
|
|
|
|
with subtest("Documents are consumed"):
|
|
machine.wait_until_succeeds(
|
|
"(($(curl -u admin:admin -fs localhost:28981/api/documents/ | jq .count) == 2))"
|
|
)
|
|
docs = json.loads(machine.succeed("curl -u admin:admin -fs localhost:28981/api/documents/"))['results']
|
|
assert "2005-10-16" in docs[0]['created']
|
|
assert "2005-10-16" in docs[1]['created']
|
|
'';
|
|
})
|