summary refs log tree commit diff
path: root/nixos/tests/influxdb.nix
blob: 61201202204b6f826aa61cc194d493c948444c76 (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
# This test runs influxdb and checks if influxdb is up and running

import ./make-test.nix ({ pkgs, ...} : {
  name = "influxdb";
  meta = with pkgs.stdenv.lib.maintainers; {
    maintainers = [ offline ];
  };

  nodes = {
    one = { ... }: {
      services.influxdb.enable = true;
    };
  };

  testScript = ''
    startAll;
  
    $one->waitForUnit("influxdb.service");

    # create database
    $one->succeed(q~
      curl -XPOST http://localhost:8086/query --data-urlencode "q=CREATE DATABASE test"
    ~);

    # write some points and run simple query
    $one->succeed(q~
      curl -XPOST 'http://localhost:8086/write?db=test' --data-binary 'cpu_load_short,host=server01,region=us-west value=0.64 1434055562000000000'
    ~);
    $one->succeed(q~
      curl -GET 'http://localhost:8086/query' --data-urlencode "db=test" --data-urlencode "q=SELECT \"value\" FROM \"cpu_load_short\" WHERE \"region\"='us-west'"  | grep "0\.64"
    ~);
  '';
})