26 lines
590 B
Nix
26 lines
590 B
Nix
|
# This test runs simple etcd node
|
||
|
|
||
|
import ./make-test-python.nix ({ pkgs, ... } : {
|
||
|
name = "etcd";
|
||
|
|
||
|
meta = with pkgs.stdenv.lib.maintainers; {
|
||
|
maintainers = [ offline ];
|
||
|
};
|
||
|
|
||
|
nodes = {
|
||
|
node = { ... }: {
|
||
|
services.etcd.enable = true;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
testScript = ''
|
||
|
with subtest("should start etcd node"):
|
||
|
node.start()
|
||
|
node.wait_for_unit("etcd.service")
|
||
|
|
||
|
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'")
|
||
|
'';
|
||
|
})
|