Merge pull request #312623 from jpds/nixos-test-step-caddy

nixos/step-ca: Added Caddy example to integration tests
This commit is contained in:
Pol Dellaiera 2024-05-19 10:55:17 +02:00 committed by GitHub
commit 006641f290
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -62,6 +62,24 @@ import ./make-test-python.nix ({ pkgs, ... }:
};
};
caclientcaddy =
{ config, pkgs, ... }: {
security.pki.certificateFiles = [ "${test-certificates}/root_ca.crt" ];
networking.firewall.allowedTCPPorts = [ 80 443 ];
services.caddy = {
enable = true;
virtualHosts."caclientcaddy".extraConfig = ''
respond "Welcome to Caddy!"
tls caddy@example.org {
ca https://caserver:8443/acme/acme/directory
}
'';
};
};
catester = { config, pkgs, ... }: {
security.pki.certificateFiles = [ "${test-certificates}/root_ca.crt" ];
};
@ -73,5 +91,8 @@ import ./make-test-python.nix ({ pkgs, ... }:
caserver.wait_for_unit("step-ca.service")
caclient.wait_for_unit("acme-finished-caclient.target")
catester.succeed("curl https://caclient/ | grep \"Welcome to nginx!\"")
caclientcaddy.wait_for_unit("caddy.service")
catester.succeed("curl https://caclientcaddy/ | grep \"Welcome to Caddy!\"")
'';
})