about summary refs log tree commit diff
path: root/nixpkgs/nixos/tests/etcd/etcd.nix
blob: a32d0f9a55d1766a48bcdebb1631bc4660dcb057 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# This test runs simple etcd node

import ../make-test-python.nix ({ pkgs, ... } : {
  name = "etcd";

  meta = with pkgs.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 put /foo/bar 'Hello world'")
        node.succeed("etcdctl get /foo/bar | grep 'Hello world'")
  '';
})