34 lines
980 B
Nix
34 lines
980 B
Nix
|
{ system ? builtins.currentSystem,
|
||
|
config ? {},
|
||
|
pkgs ? import ../.. { inherit system config; }
|
||
|
}:
|
||
|
|
||
|
with import ../lib/testing-python.nix { inherit system pkgs; };
|
||
|
|
||
|
builtins.listToAttrs (
|
||
|
builtins.map
|
||
|
(nginxPackage:
|
||
|
{
|
||
|
name = pkgs.lib.getName nginxPackage;
|
||
|
value = makeTest {
|
||
|
name = "nginx-variant-${pkgs.lib.getName nginxPackage}";
|
||
|
|
||
|
nodes.machine = { pkgs, ... }: {
|
||
|
services.nginx = {
|
||
|
enable = true;
|
||
|
virtualHosts.localhost.locations."/".return = "200 'foo'";
|
||
|
package = nginxPackage;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
testScript = ''
|
||
|
machine.wait_for_unit("nginx")
|
||
|
machine.wait_for_open_port(80)
|
||
|
machine.succeed('test "$(curl -fvvv http://localhost/)" = foo')
|
||
|
'';
|
||
|
};
|
||
|
}
|
||
|
)
|
||
|
[ pkgs.angie pkgs.angieQuic pkgs.nginxStable pkgs.nginxMainline pkgs.nginxQuic pkgs.nginxShibboleth pkgs.openresty pkgs.tengine ]
|
||
|
)
|