nixpkgs/nixos/tests/cadvisor.nix

35 lines
905 B
Nix
Raw Normal View History

2019-11-06 13:23:44 +00:00
import ./make-test-python.nix ({ pkgs, ... } : {
2014-12-28 19:21:41 +00:00
name = "cadvisor";
meta = with pkgs.stdenv.lib.maintainers; {
maintainers = [ offline ];
};
2014-12-28 19:21:41 +00:00
nodes = {
machine = { ... }: {
2014-12-28 19:21:41 +00:00
services.cadvisor.enable = true;
};
influxdb = { lib, ... }: with lib; {
2014-12-28 19:21:41 +00:00
services.cadvisor.enable = true;
services.cadvisor.storageDriver = "influxdb";
services.influxdb.enable = true;
};
};
2019-11-06 13:23:44 +00:00
testScript = ''
start_all()
machine.wait_for_unit("cadvisor.service")
machine.succeed("curl http://localhost:8080/containers/")
2014-12-28 19:21:41 +00:00
2019-11-06 13:23:44 +00:00
influxdb.wait_for_unit("influxdb.service")
2016-09-15 12:28:41 +00:00
# create influxdb database
2019-11-06 13:23:44 +00:00
influxdb.succeed(
'curl -XPOST http://localhost:8086/query --data-urlencode "q=CREATE DATABASE root"'
)
2016-09-15 12:28:41 +00:00
2019-11-06 13:23:44 +00:00
influxdb.wait_for_unit("cadvisor.service")
influxdb.succeed("curl http://localhost:8080/containers/")
2014-12-28 19:21:41 +00:00
'';
})