1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/nixos/tests/neo4j.nix

27 lines
543 B
Nix
Raw Normal View History

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