aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/nixos/tests/metabase.nix
blob: 65619cc793a74b39bd5916aa77cd22104e4441eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import ./make-test-python.nix ({ pkgs, ... }: {
  name = "metabase";
  meta = with pkgs.stdenv.lib.maintainers; {
    maintainers = [ mmahut ];
  };

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

  testScript = ''
    start_all()
    machine.wait_for_unit("metabase.service")
    machine.wait_for_open_port(3000)
    machine.wait_until_succeeds("curl -fL http://localhost:3000/setup | grep Metabase")
  '';
})