2016-08-25 15:41:47 +03:00
|
|
|
# This test runs simple etcd node
|
2014-11-15 18:27:27 +03:00
|
|
|
|
2019-11-24 03:38:24 +03:00
|
|
|
import ./make-test-python.nix ({ pkgs, ... } : {
|
2016-08-24 21:11:39 +03:00
|
|
|
name = "etcd";
|
2014-11-15 18:27:27 +03:00
|
|
|
|
2021-01-10 22:08:30 +03:00
|
|
|
meta = with pkgs.lib.maintainers; {
|
2016-08-24 21:11:39 +03:00
|
|
|
maintainers = [ offline ];
|
|
|
|
};
|
2014-11-15 18:27:27 +03:00
|
|
|
|
2016-08-24 21:11:39 +03:00
|
|
|
nodes = {
|
2018-07-20 23:56:59 +03:00
|
|
|
node = { ... }: {
|
2016-08-25 15:41:47 +03:00
|
|
|
services.etcd.enable = true;
|
2014-11-15 18:27:27 +03:00
|
|
|
};
|
2016-08-24 21:11:39 +03:00
|
|
|
};
|
2014-11-15 18:27:27 +03:00
|
|
|
|
2016-08-24 21:11:39 +03:00
|
|
|
testScript = ''
|
2019-11-24 03:38:24 +03:00
|
|
|
with subtest("should start etcd node"):
|
|
|
|
node.start()
|
|
|
|
node.wait_for_unit("etcd.service")
|
2014-11-15 18:27:27 +03:00
|
|
|
|
2019-11-24 03:38:24 +03: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 18:27:27 +03:00
|
|
|
'';
|
2015-07-12 13:09:40 +03:00
|
|
|
})
|