python312Packages.homematicip: 1.1.2 -> 1.1.3 (#356780)
[NixPkgs.git] / nixos / tests / tika.nix
blob61a3a6ad22aed0b96442ce482906635a881c6a16
1 { lib, ... }:
4   name = "tika-server";
6   nodes = {
7     machine = { pkgs, ... }: {
8       services.tika = {
9         enable = true;
10       };
11     };
12   };
14   testScript = ''
15     machine.start()
16     machine.wait_for_unit("tika.service")
17     machine.wait_for_open_port(9998)
18   '';
20   meta.maintainers = [ lib.maintainers.drupol ];