mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
efdcf6b96c
Caddy 2.7.x does no longer return etags for files with unix modtimes of 0 and 1. Files in /nix/store have a modtime of 1. This is something that has been specifically implemented for nix. For now, we decided to remove the test. But I might reimplement a similar etag subtest some time in the future.
66 lines
1.9 KiB
Nix
66 lines
1.9 KiB
Nix
import ./make-test-python.nix ({ pkgs, ... }: {
|
|
name = "caddy";
|
|
meta = with pkgs.lib.maintainers; {
|
|
maintainers = [ xfix Br1ght0ne ];
|
|
};
|
|
|
|
nodes = {
|
|
webserver = { pkgs, lib, ... }: {
|
|
services.caddy.enable = true;
|
|
services.caddy.extraConfig = ''
|
|
http://localhost {
|
|
encode gzip
|
|
|
|
file_server
|
|
root * ${
|
|
pkgs.runCommand "testdir" {} ''
|
|
mkdir "$out"
|
|
echo hello world > "$out/example.html"
|
|
''
|
|
}
|
|
}
|
|
'';
|
|
services.caddy.enableReload = true;
|
|
|
|
specialisation.config-reload.configuration = {
|
|
services.caddy.extraConfig = ''
|
|
http://localhost:8080 {
|
|
}
|
|
'';
|
|
};
|
|
specialisation.multiple-configs.configuration = {
|
|
services.caddy.virtualHosts = {
|
|
"http://localhost:8080" = { };
|
|
"http://localhost:8081" = { };
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
testScript = { nodes, ... }:
|
|
let
|
|
justReloadSystem = "${nodes.webserver.system.build.toplevel}/specialisation/config-reload";
|
|
multipleConfigs = "${nodes.webserver.system.build.toplevel}/specialisation/multiple-configs";
|
|
in
|
|
''
|
|
url = "http://localhost/example.html"
|
|
webserver.wait_for_unit("caddy")
|
|
webserver.wait_for_open_port(80)
|
|
|
|
|
|
with subtest("config is reloaded on nixos-rebuild switch"):
|
|
webserver.succeed(
|
|
"${justReloadSystem}/bin/switch-to-configuration test >&2"
|
|
)
|
|
webserver.wait_for_open_port(8080)
|
|
webserver.fail("journalctl -u caddy | grep -q -i stopped")
|
|
webserver.succeed("journalctl -u caddy | grep -q -i reloaded")
|
|
|
|
with subtest("multiple configs are correctly merged"):
|
|
webserver.succeed(
|
|
"${multipleConfigs}/bin/switch-to-configuration test >&2"
|
|
)
|
|
webserver.wait_for_open_port(8080)
|
|
webserver.wait_for_open_port(8081)
|
|
'';
|
|
})
|