nixpkgs/nixos/tests/typesense.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
770 B
Nix
Raw Permalink Normal View History

{ pkgs, ... }:
let
testPort = 8108;
in
{
name = "typesense";
meta.maintainers = with pkgs.lib.maintainers; [ oddlama ];
2023-07-19 00:29:30 +02:00
nodes.machine =
{ ... }:
{
services.typesense = {
enable = true;
apiKeyFile = pkgs.writeText "typesense-api-key" "dummy";
settings.server = {
api-port = testPort;
api-address = "0.0.0.0";
};
2023-07-19 00:29:30 +02:00
};
};
2023-07-19 00:29:30 +02:00
testScript = ''
machine.wait_for_unit("typesense.service")
machine.wait_for_open_port(${toString testPort})
# After waiting for the port, typesense still hasn't initialized the database, so wait until we can connect successfully
assert machine.wait_until_succeeds("curl --fail http://localhost:${toString testPort}/health") == '{"ok":true}'
'';
}