about summary refs log tree commit diff
path: root/nixpkgs/nixos/tests/apache_datasketches.nix
blob: 2bf099ac7991be4b9abcd35529ac0a280f7867c8 (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
import ./make-test-python.nix ({ pkgs, ...} : {
  name = "postgis";
  meta = with pkgs.lib.maintainers; {
    maintainers = [ lsix ]; # TODO: Who's the maintener now?
  };

  nodes = {
    master =
      { pkgs, ... }:

      {
        services.postgresql = let mypg = pkgs.postgresql_15; in {
            enable = true;
            package = mypg;
            extraPlugins = with mypg.pkgs; [
              apache_datasketches
            ];
        };
      };
  };

  testScript = ''
    start_all()
    master.wait_for_unit("postgresql")
    master.sleep(10)  # Hopefully this is long enough!!
    master.succeed("sudo -u postgres psql -c 'CREATE EXTENSION datasketches;'")
    master.succeed("sudo -u postgres psql -c 'SELECT hll_sketch_to_string(hll_sketch_build(1));'")
  '';
})