summaryrefslogtreecommitdiffstats
path: root/nixos/tests/couchdb.nix
blob: d11176bdd311ef5bf7449241649a80548cbd5238 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
let
  makeNode =
    couchpkg: user: passwd:
    { pkgs, ... }:

    {
      environment.systemPackages = [ pkgs.jq ];
      services.couchdb.enable = true;
      services.couchdb.package = couchpkg;
      services.couchdb.adminUser = user;
      services.couchdb.adminPass = passwd;
    };
  testuser = "testadmin";
  testpass = "cowabunga";
  testlogin = "${testuser}:${testpass}@";
in
{ pkgs, lib, ... }:
{
  name = "couchdb";
  meta.maintainers = [ ];

  nodes = {
    couchdb3 = makeNode pkgs.couchdb3 testuser testpass;
  };

  testScript =
    let
      curlJqCheck =
        login: action: path: jqexpr: result:
        pkgs.writeScript "curl-jq-check-${action}-${path}.sh" ''
          RESULT=$(curl -X ${action} http://${login}127.0.0.1:5984/${path} | jq -r '${jqexpr}')
          echo $RESULT >&2
          if [ "$RESULT" != "${result}" ]; then
            exit 1
          fi
        '';
    in
    ''
      start_all()

      couchdb3.wait_for_unit("couchdb.service")
      couchdb3.wait_until_succeeds(
          "${curlJqCheck testlogin "GET" "" ".couchdb" "Welcome"}"
      )
      couchdb3.wait_until_succeeds(
          "${curlJqCheck testlogin "GET" "_all_dbs" ". | length" "0"}"
      )
      couchdb3.succeed("${curlJqCheck testlogin "PUT" "foo" ".ok" "true"}")
      couchdb3.succeed(
          "${curlJqCheck testlogin "GET" "_all_dbs" ". | length" "1"}"
      )
      couchdb3.succeed(
          "${curlJqCheck testlogin "DELETE" "foo" ".ok" "true"}"
      )
      couchdb3.succeed(
          "${curlJqCheck testlogin "GET" "_all_dbs" ". | length" "0"}"
      )
      couchdb3.succeed(
          "${curlJqCheck testlogin "GET" "_node/couchdb@127.0.0.1" ".couchdb" "Welcome"}"
      )
    '';
}