summary refs log tree commit diff
path: root/nixos/tests/metabase.nix
blob: be9e5ed5b1e8f3473222f0cad39510d8b0ccf4af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import ./make-test.nix ({ pkgs, ... }: {
  name = "metabase";
  meta = with pkgs.stdenv.lib.maintainers; {
    maintainers = [ mmahut ];
  };

  nodes = {
    machine = { ... }: {
      services.metabase.enable = true;
      virtualisation.memorySize = 1024;
    };
  };

  testScript = ''
    startAll;
    $machine->waitForUnit("metabase.service");
    $machine->waitForOpenPort(3000);
    $machine->waitUntilSucceeds("curl -L http://localhost:3000/setup | grep Metabase");
  '';
})