summary refs log tree commit diff
path: root/nixos/tests/smokeping.nix
blob: 4c77e4b786130ca536e225e94516ac76ed172fb6 (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
26
27
28
29
30
31
32
33
import ./make-test.nix ({ pkgs, ...} : {
  name = "smokeping";
  meta = with pkgs.stdenv.lib.maintainers; {
    maintainers = [ cransom ];
  };

  nodes = {
    sm =
      { pkgs, config, ... }:
      {
        services.smokeping = {
          enable = true;
          port = 8081;
          mailHost = "127.0.0.2";
          probeConfig = ''
            + FPing
            binary = /run/wrappers/bin/fping
            offset = 0%
          '';
        };
      };
  };

  testScript = ''
    startAll;
    $sm->waitForUnit("smokeping");
    $sm->waitForUnit("thttpd");
    $sm->waitForFile("/var/lib/smokeping/data/Local/LocalMachine.rrd");
    $sm->succeed("curl -s -f localhost:8081/smokeping.fcgi?target=Local");
    $sm->succeed("ls /var/lib/smokeping/cache/Local/LocalMachine_mini.png");
    $sm->succeed("ls /var/lib/smokeping/cache/index.html");
  '';
})