nixosTests.graphite: port to python.
The test did not succeed for me before this commit because the dependencies fail their tests (see added comment).
This commit is contained in:
parent
826d61e5d9
commit
ad339ad445
@ -1,6 +1,11 @@
|
|||||||
import ./make-test.nix ({ pkgs, ... } :
|
import ./make-test-python.nix ({ pkgs, ... } :
|
||||||
{
|
{
|
||||||
name = "graphite";
|
name = "graphite";
|
||||||
|
meta = {
|
||||||
|
# Fails on dependency `python-2.7-Twisted`'s test suite
|
||||||
|
# complaining `ImportError: No module named zope.interface`.
|
||||||
|
broken = true;
|
||||||
|
};
|
||||||
nodes = {
|
nodes = {
|
||||||
one =
|
one =
|
||||||
{ ... }: {
|
{ ... }: {
|
||||||
@ -22,20 +27,20 @@ import ./make-test.nix ({ pkgs, ... } :
|
|||||||
};
|
};
|
||||||
|
|
||||||
testScript = ''
|
testScript = ''
|
||||||
startAll;
|
start_all()
|
||||||
$one->waitForUnit("default.target");
|
one.wait_for_unit("default.target")
|
||||||
$one->waitForUnit("graphiteWeb.service");
|
one.wait_for_unit("graphiteWeb.service")
|
||||||
$one->waitForUnit("graphiteApi.service");
|
one.wait_for_unit("graphiteApi.service")
|
||||||
$one->waitForUnit("graphitePager.service");
|
one.wait_for_unit("graphitePager.service")
|
||||||
$one->waitForUnit("graphite-beacon.service");
|
one.wait_for_unit("graphite-beacon.service")
|
||||||
$one->waitForUnit("carbonCache.service");
|
one.wait_for_unit("carbonCache.service")
|
||||||
$one->waitForUnit("seyren.service");
|
one.wait_for_unit("seyren.service")
|
||||||
# The services above are of type "simple". systemd considers them active immediately
|
# The services above are of type "simple". systemd considers them active immediately
|
||||||
# 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->waitForOpenPort(8080);
|
one.wait_for_open_port(8080)
|
||||||
$one->waitForOpenPort(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->waitUntilSucceeds("curl 'http://localhost:8080/metrics/find/?query=foo&format=treejson' --silent | grep foo >&2");
|
one.wait_until_succeeds("curl 'http://localhost:8080/metrics/find/?query=foo&format=treejson' --silent | grep foo >&2")
|
||||||
'';
|
'';
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user