summary refs log tree commit diff
path: root/nixos/tests/grafana.nix
blob: 16b8181498a6fb70618d5f2e5b44f0c222ec6737 (plain) (blame)
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
import ./make-test.nix ({ lib, ... }:
{
  name = "grafana";

  meta = with lib.maintainers; {
    maintainers = [ willibutz ];
  };

  machine = { config, pkgs, ... }: {
    services.grafana = {
      enable = true;
      addr = "localhost";
      analytics.reporting.enable = false;
      domain = "localhost";
      security.adminUser = "testusername";
    };
  };

  testScript = ''
    $machine->start;
    $machine->waitForUnit("grafana.service");
    $machine->waitForOpenPort(3000);
    $machine->succeed("curl -sS http://127.0.0.1:3000/");
  '';
})