summary refs log tree commit diff
path: root/nixos/tests/codimd.nix
blob: b1acbf4a8322e065497e4956fd651257340654e3 (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
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
import ./make-test-python.nix ({ pkgs, lib, ... }:
{
  name = "codimd";

  meta = with lib.maintainers; {
    maintainers = [ willibutz ];
  };

  nodes = {
    codimdSqlite = { ... }: {
      services = {
        codimd = {
          enable = true;
          configuration.dbURL = "sqlite:///var/lib/codimd/codimd.db";
        };
      };
    };

    codimdPostgres = { ... }: {
      systemd.services.codimd.after = [ "postgresql.service" ];
      services = {
        codimd = {
          enable = true;
          configuration.dbURL = "postgres://codimd:snakeoilpassword@localhost:5432/codimddb";
        };
        postgresql = {
          enable = true;
          initialScript = pkgs.writeText "pg-init-script.sql" ''
            CREATE ROLE codimd LOGIN PASSWORD 'snakeoilpassword';
            CREATE DATABASE codimddb OWNER codimd;
          '';
        };
      };
    };
  };

  testScript = ''
    start_all()

    with subtest("CodiMD sqlite"):
        codimdSqlite.wait_for_unit("codimd.service")
        codimdSqlite.wait_for_open_port(3000)
        codimdSqlite.wait_until_succeeds("curl -sSf http://localhost:3000/new")

    with subtest("CodiMD postgres"):
        codimdPostgres.wait_for_unit("postgresql.service")
        codimdPostgres.wait_for_unit("codimd.service")
        codimdPostgres.wait_for_open_port(5432)
        codimdPostgres.wait_for_open_port(3000)
        codimdPostgres.wait_until_succeeds("curl -sSf http://localhost:3000/new")
  '';
})