infrastructure/checks/nixos-modules/static-page/default.nix
Fabian Hauser c9844276b8
All checks were successful
CI / build (push) Successful in 4m9s
Implement nixos-modules/static-page test
2025-03-24 15:23:49 +02:00

45 lines
849 B
Nix

{
testers,
curl,
lib,
gnugrep,
...
}:
testers.runNixOSTest {
name = "static-page";
nodes.webserver =
{ ... }:
{
# Service under test
imports = [ ../../../nixos-modules/static-page ];
qois.static-page = {
enable = true;
pages = lib.mkForce {
"localhost" = {
domainAliases = [ "example.com" ];
};
};
};
# Test environment
environment.systemPackages = [
curl
gnugrep
];
# Disable TLS services
services.nginx.virtualHosts =
let
tlsOff = {
forceSSL = lib.mkForce false;
enableACME = lib.mkForce false;
};
in
{
"localhost" = tlsOff;
"example.com" = tlsOff;
};
};
testScript = lib.readFile ./test.py;
}