nixpkgs/nixos/tests/etcd.nix

26 lines
583 B
Nix
Raw Normal View History

# This test runs simple etcd node
2014-11-15 15:27:27 +00:00
2019-11-24 00:38:24 +00:00
import ./make-test-python.nix ({ pkgs, ... } : {
name = "etcd";
2014-11-15 15:27:27 +00:00
meta = with pkgs.lib.maintainers; {
maintainers = [ offline ];
};
2014-11-15 15:27:27 +00:00
nodes = {
node = { ... }: {
services.etcd.enable = true;
2014-11-15 15:27:27 +00:00
};
};
2014-11-15 15:27:27 +00:00
testScript = ''
2019-11-24 00:38:24 +00:00
with subtest("should start etcd node"):
node.start()
node.wait_for_unit("etcd.service")
2014-11-15 15:27:27 +00:00
2019-11-24 00:38:24 +00:00
with subtest("should write and read some values to etcd"):
node.succeed("etcdctl set /foo/bar 'Hello world'")
node.succeed("etcdctl get /foo/bar | grep 'Hello world'")
2014-11-15 15:27:27 +00:00
'';
})