2019-11-09 19:27:26 +01:00
|
|
|
import ./make-test-python.nix ({ pkgs, ... }: {
|
2018-12-19 15:06:53 +01:00
|
|
|
name = "clickhouse";
|
2023-03-03 21:17:25 +01:00
|
|
|
meta.maintainers = with pkgs.lib.maintainers; [ ];
|
2018-12-19 15:06:53 +01:00
|
|
|
|
2022-03-21 00:15:30 +01:00
|
|
|
nodes.machine = {
|
2018-12-19 15:06:53 +01:00
|
|
|
services.clickhouse.enable = true;
|
2021-05-18 12:04:37 +02:00
|
|
|
virtualisation.memorySize = 4096;
|
2018-12-19 15:06:53 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
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
|
|
|
|
''
|
2019-11-09 19:27:26 +01:00
|
|
|
machine.start()
|
|
|
|
machine.wait_for_unit("clickhouse.service")
|
|
|
|
machine.wait_for_open_port(9000)
|
2018-12-19 15:06:53 +01:00
|
|
|
|
2019-11-09 19:27:26 +01:00
|
|
|
machine.succeed(
|
|
|
|
"cat ${tableDDL} | clickhouse-client"
|
|
|
|
)
|
|
|
|
machine.succeed(
|
|
|
|
"cat ${insertQuery} | clickhouse-client"
|
|
|
|
)
|
|
|
|
machine.succeed(
|
|
|
|
"cat ${selectQuery} | clickhouse-client | grep foo"
|
|
|
|
)
|
2018-12-19 15:06:53 +01:00
|
|
|
'';
|
|
|
|
})
|