1
0
Fork 0
selfhostblocks/test/vm/ssl.nix

108 lines
4.1 KiB
Nix
Raw Normal View History

2024-01-12 08:22:46 +01:00
{ pkgs, lib, ... }:
{
test = pkgs.nixosTest {
name = "ssl-test";
nodes.server = { config, pkgs, ... }: {
imports = [
../../modules/blocks/ssl.nix
];
shb.certs = {
cas.selfsigned = {
myca = {
name = "My CA";
};
myotherca = {
name = "My Other CA";
};
};
certs.selfsigned = {
2024-01-21 05:11:03 +01:00
top = {
2024-01-12 08:22:46 +01:00
ca = config.shb.certs.cas.selfsigned.myca;
domain = "example.com";
};
2024-01-21 05:11:03 +01:00
subdomain = {
ca = config.shb.certs.cas.selfsigned.myca;
domain = "subdomain.example.com";
};
2024-01-12 08:22:46 +01:00
};
};
# The configuration below is to create a webserver that uses the server certificate.
2024-01-21 05:11:03 +01:00
networking.hosts."127.0.0.1" = [ "example.com" "subdomain.example.com" "wrong.example.com" ];
2024-01-12 08:22:46 +01:00
services.nginx.enable = true;
services.nginx.virtualHosts."example.com" =
{
onlySSL = true;
2024-01-21 05:11:03 +01:00
sslCertificate = config.shb.certs.certs.selfsigned.top.paths.cert;
sslCertificateKey = config.shb.certs.certs.selfsigned.top.paths.key;
locations."/".extraConfig = ''
add_header Content-Type text/plain;
return 200 'Top domain';
'';
};
services.nginx.virtualHosts."subdomain.example.com" =
{
onlySSL = true;
sslCertificate = config.shb.certs.certs.selfsigned.subdomain.paths.cert;
sslCertificateKey = config.shb.certs.certs.selfsigned.subdomain.paths.key;
2024-01-12 08:22:46 +01:00
locations."/".extraConfig = ''
add_header Content-Type text/plain;
2024-01-21 05:11:03 +01:00
return 200 'Subdomain';
2024-01-12 08:22:46 +01:00
'';
};
systemd.services.nginx = {
2024-01-21 05:11:03 +01:00
after = [ config.shb.certs.certs.selfsigned.top.systemdService config.shb.certs.certs.selfsigned.subdomain.systemdService ];
requires = [ config.shb.certs.certs.selfsigned.top.systemdService config.shb.certs.certs.selfsigned.subdomain.systemdService ];
2024-01-12 08:22:46 +01:00
};
};
# Taken from https://github.com/NixOS/nixpkgs/blob/7f311dd9226bbd568a43632c977f4992cfb2b5c8/nixos/tests/custom-ca.nix
testScript = { nodes, ... }:
let
myca = nodes.server.shb.certs.cas.selfsigned.myca;
myotherca = nodes.server.shb.certs.cas.selfsigned.myotherca;
2024-01-21 05:11:03 +01:00
top = nodes.server.shb.certs.certs.selfsigned.top;
subdomain = nodes.server.shb.certs.certs.selfsigned.subdomain;
2024-01-12 08:22:46 +01:00
in
''
start_all()
# Make sure certs are generated.
server.wait_for_file("${myca.paths.key}")
server.wait_for_file("${myca.paths.cert}")
server.wait_for_file("${myotherca.paths.key}")
server.wait_for_file("${myotherca.paths.cert}")
2024-01-21 05:11:03 +01:00
server.wait_for_file("${top.paths.key}")
server.wait_for_file("${top.paths.cert}")
server.wait_for_file("${subdomain.paths.key}")
server.wait_for_file("${subdomain.paths.cert}")
2024-01-12 08:22:46 +01:00
# Wait for jkkk
server.require_unit_state("${nodes.server.shb.certs.systemdService}", "inactive")
2024-01-21 05:11:03 +01:00
machine.wait_for_unit("nginx")
machine.wait_for_open_port(443)
2024-01-12 08:22:46 +01:00
with subtest("Certificate is trusted in curl"):
2024-01-21 05:11:03 +01:00
resp = machine.succeed("curl --fail-with-body -v https://example.com")
if resp != "Top domain":
raise Exception('Unexpected response, got: {}'.format(resp))
resp = machine.succeed("curl --fail-with-body -v https://subdomain.example.com")
if resp != "Subdomain":
raise Exception('Unexpected response, got: {}'.format(resp))
with subtest("Fail if certificate is not in CA bundle"):
machine.fail("curl --cacert /etc/static/ssl/certs/ca-bundle.crt --fail-with-body -v https://example.com")
machine.fail("curl --cacert /etc/static/ssl/certs/ca-bundle.crt --fail-with-body -v https://subdomain.example.com")
machine.fail("curl --cacert /etc/static/ssl/certs/ca-certificates.crt --fail-with-body -v https://example.com")
machine.fail("curl --cacert /etc/static/ssl/certs/ca-certificates.crt --fail-with-body -v https://subdomain.example.com")
2024-01-12 08:22:46 +01:00
'';
};
}