nixpkgs/nixos/tests/tika.nix
2024-07-12 18:46:53 +02:00

22 lines
329 B
Nix

{ lib, ... }:
{
name = "tika-server";
nodes = {
machine = { pkgs, ... }: {
services.tika = {
enable = true;
};
};
};
testScript = ''
machine.start()
machine.wait_for_unit("tika.service")
machine.wait_for_open_port(9998)
'';
meta.maintainers = [ lib.maintainers.drupol ];
}