nixos/graphite: ensure graphite-api is properly tested
Until now, it was failing to start in the test, as it was searching for an influxdb database
This commit is contained in:
parent
3c8762de8e
commit
3f31678607
|
@ -16,7 +16,7 @@ import ./make-test-python.nix ({ pkgs, ... } :
|
||||||
api = {
|
api = {
|
||||||
enable = true;
|
enable = true;
|
||||||
port = 8082;
|
port = 8082;
|
||||||
finders = [ pkgs.python3Packages.influxgraph ];
|
finders = [ ];
|
||||||
};
|
};
|
||||||
carbon.enableCache = true;
|
carbon.enableCache = true;
|
||||||
seyren.enable = false; # Implicitely requires openssl-1.0.2u which is marked insecure
|
seyren.enable = false; # Implicitely requires openssl-1.0.2u which is marked insecure
|
||||||
|
@ -36,10 +36,14 @@ import ./make-test-python.nix ({ pkgs, ... } :
|
||||||
# even if they're still in preStart (which takes quite long for graphiteWeb).
|
# even if they're still in preStart (which takes quite long for graphiteWeb).
|
||||||
# Wait for ports to open so we're sure the services are up and listening.
|
# Wait for ports to open so we're sure the services are up and listening.
|
||||||
one.wait_for_open_port(8080)
|
one.wait_for_open_port(8080)
|
||||||
|
one.wait_for_open_port(8082)
|
||||||
one.wait_for_open_port(2003)
|
one.wait_for_open_port(2003)
|
||||||
one.succeed('echo "foo 1 `date +%s`" | nc -N localhost 2003')
|
one.succeed('echo "foo 1 `date +%s`" | nc -N localhost 2003')
|
||||||
one.wait_until_succeeds(
|
one.wait_until_succeeds(
|
||||||
"curl 'http://localhost:8080/metrics/find/?query=foo&format=treejson' --silent | grep foo >&2"
|
"curl 'http://localhost:8080/metrics/find/?query=foo&format=treejson' --silent | grep foo >&2"
|
||||||
)
|
)
|
||||||
|
one.wait_until_succeeds(
|
||||||
|
"curl 'http://localhost:8082/metrics/find/?query=foo&format=treejson' --silent | grep foo >&2"
|
||||||
|
)
|
||||||
'';
|
'';
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue