summary refs log tree commit diff
path: root/nixos/tests/metabase.nix
blob: 370114e922230a76060f3cd700a53aaf10254919 (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-python.nix ({ pkgs, ... }: {
  name = "metabase";
  meta = with pkgs.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")
  '';
})