2019-11-23 14:11:09 -08:00
|
|
|
import ./make-test-python.nix {
|
2019-02-01 05:29:54 -08:00
|
|
|
name = "neo4j";
|
|
|
|
|
|
|
|
nodes = {
|
|
|
|
master =
|
|
|
|
{ ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
services.neo4j.enable = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
testScript = ''
|
2019-11-23 14:11:09 -08:00
|
|
|
start_all()
|
2019-02-01 05:29:54 -08:00
|
|
|
|
2019-11-23 14:11:09 -08:00
|
|
|
master.wait_for_unit("neo4j")
|
|
|
|
master.wait_for_open_port(7474)
|
2020-09-15 23:03:14 -07:00
|
|
|
master.succeed("curl -f http://localhost:7474/")
|
2019-02-01 05:29:54 -08:00
|
|
|
'';
|
|
|
|
}
|