aboutsummaryrefslogtreecommitdiff
path: root/nixos/tests/etcd.nix
blob: 6c23b31779bc5accb95a57cdc77b94129a77e552 (plain)
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
26
27
# This test runs simple etcd node

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

  meta = with pkgs.stdenv.lib.maintainers; {
    maintainers = [ offline ];
  };

  nodes = {
    node = { ... }: {
      services.etcd.enable = true;
    };
  };

  testScript = ''
    subtest "should start etcd node", sub {
      $node->start();
      $node->waitForUnit("etcd.service");
    };

    subtest "should write and read some values to etcd", sub {
      $node->succeed("etcdctl set /foo/bar 'Hello world'");
      $node->succeed("etcdctl get /foo/bar | grep 'Hello world'");
    }
  '';
})