mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
pgweb: add NixOS test
I maintain this package and I'd llike to be able to merge minor version bumps without having to manually test the package. refs https://github.com/Thaigersprint/thaigersprint-2025/issues/1
This commit is contained in:
parent
20dbbf1d36
commit
2fd6e913b2
2 changed files with 33 additions and 0 deletions
|
@ -822,6 +822,7 @@ in {
|
|||
pgadmin4 = handleTest ./pgadmin4.nix {};
|
||||
pgbouncer = handleTest ./pgbouncer.nix {};
|
||||
pghero = runTest ./pghero.nix;
|
||||
pgweb = runTest ./pgweb.nix;
|
||||
pgmanage = handleTest ./pgmanage.nix {};
|
||||
phosh = handleTest ./phosh.nix {};
|
||||
photonvision = handleTest ./photonvision.nix {};
|
||||
|
|
32
nixos/tests/pgweb.nix
Normal file
32
nixos/tests/pgweb.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{ lib, ... }:
|
||||
{
|
||||
name = "pgweb";
|
||||
meta.maintainers = [ lib.maintainers.zupo ];
|
||||
|
||||
nodes.machine =
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
services.postgresql = {
|
||||
enable = true;
|
||||
authentication = ''
|
||||
host all all ::1/128 trust
|
||||
'';
|
||||
};
|
||||
environment.systemPackages = [ pkgs.pgweb ];
|
||||
|
||||
systemd.services.myservice = {
|
||||
serviceConfig = {
|
||||
ExecStart = "${pkgs.pgweb}/bin/pgweb --url postgresql://postgres@localhost:5432/postgres";
|
||||
};
|
||||
path = [ pkgs.getent ];
|
||||
after = [ "postgresql.service" ];
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
};
|
||||
};
|
||||
|
||||
testScript = ''
|
||||
machine.wait_for_unit("myservice.service")
|
||||
machine.wait_for_open_port(8081)
|
||||
machine.wait_until_succeeds("curl -sSf localhost:8081 | grep '<div class=\"title\">Table Information</div>'")
|
||||
'';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue