nixpkgs/nixos/tests/neo4j.nix

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

27 lines
543 B
Nix
Raw Normal View History

import ./make-test-python.nix {
2019-02-01 08:29:54 -05:00
name = "neo4j";
nodes = {
server =
2019-02-01 08:29:54 -05:00
{ ... }:
{
2022-06-30 09:01:50 -04:00
virtualisation.memorySize = 4096;
virtualisation.diskSize = 1024;
2019-02-01 08:29:54 -05:00
services.neo4j.enable = true;
2020-09-21 17:15:49 -04:00
# require tls certs to be available
services.neo4j.https.enable = false;
services.neo4j.bolt.enable = false;
2019-02-01 08:29:54 -05:00
};
};
testScript = ''
start_all()
2019-02-01 08:29:54 -05:00
server.wait_for_unit("neo4j.service")
server.wait_for_open_port(7474)
server.succeed("curl -f http://localhost:7474/")
2019-02-01 08:29:54 -05:00
'';
}