nixpkgs/nixos/tests/cadvisor.nix

36 lines
910 B
Nix
Raw Normal View History

import ./make-test.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;
};
};
testScript =
''
startAll;
$machine->waitForUnit("cadvisor.service");
$machine->succeed("curl http://localhost:8080/containers/");
$influxdb->waitForUnit("influxdb.service");
2016-09-15 12:28:41 +00:00
# create influxdb database
$influxdb->succeed(q~
curl -XPOST http://localhost:8086/query --data-urlencode "q=CREATE DATABASE root"
~);
2014-12-28 19:21:41 +00:00
$influxdb->waitForUnit("cadvisor.service");
$influxdb->succeed("curl http://localhost:8080/containers/");
'';
})