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

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

  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")
  '';
})