summaryrefslogtreecommitdiffstats
path: root/nixos/tests/pgweb.nix
blob: 70894e6e34e4878d36e5aac8968259c31324d90a (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
{ lib, ... }:
{
  name = "pgweb";
  meta.maintainers = [ lib.maintainers.zupo ];

  nodes.machine =
    { config, pkgs, ... }:
    {
      services.postgresql = {
        enable = true;
        authentication = ''
          host    all   all   ::1/128        trust
        '';
      };
      environment.systemPackages = [ pkgs.pgweb ];

      systemd.services.myservice = {
        serviceConfig = {
          ExecStart = "${pkgs.pgweb}/bin/pgweb --url postgresql://postgres@localhost:5432/postgres";
        };
        path = [ pkgs.getent ];
        after = [ "postgresql.target" ];
        wantedBy = [ "multi-user.target" ];
      };
    };

  testScript = ''
    machine.wait_for_unit("myservice.service")
    machine.wait_for_open_port(8081)
    machine.wait_until_succeeds("curl -sSf localhost:8081 | grep '<div class=\"title\">Table Information</div>'")
  '';
}