summary refs log tree commit diff
path: root/nixos/tests/clickhouse.nix
blob: 017f2ee35dab0aa81c845a429db511b0bcd875a9 (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
import ./make-test-python.nix ({ pkgs, ... }: {
  name = "clickhouse";
  meta.maintainers = with pkgs.lib.maintainers; [ ma27 ];

  machine = {
    services.clickhouse.enable = true;
    virtualisation.memorySize = 4096;
  };

  testScript =
    let
      # work around quote/substitution complexity by Nix, Perl, bash and SQL.
      tableDDL = pkgs.writeText "ddl.sql" "CREATE TABLE `demo` (`value` FixedString(10)) engine = MergeTree PARTITION BY value ORDER BY tuple();";
      insertQuery = pkgs.writeText "insert.sql" "INSERT INTO `demo` (`value`) VALUES ('foo');";
      selectQuery = pkgs.writeText "select.sql" "SELECT * from `demo`";
    in
      ''
        machine.start()
        machine.wait_for_unit("clickhouse.service")
        machine.wait_for_open_port(9000)

        machine.succeed(
            "cat ${tableDDL} | clickhouse-client"
        )
        machine.succeed(
            "cat ${insertQuery} | clickhouse-client"
        )
        machine.succeed(
            "cat ${selectQuery} | clickhouse-client | grep foo"
        )
      '';
})