summaryrefslogtreecommitdiffstats
path: root/nixos/tests/nginx-variants.nix
blob: 9511f6612b10e4b865e2037a2d9e7c1250bd3780 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ runTest }:
builtins.listToAttrs (
  map
    (packageName: {
      name = packageName;
      value = runTest {
        name = "nginx-variant-${packageName}";

        nodes.machine =
          { pkgs, ... }:
          {
            services.nginx = {
              enable = true;
              virtualHosts.localhost.locations."/".return = "200 'foo'";
              package = pkgs.${packageName};
            };
          };

        testScript = ''
          machine.wait_for_unit("nginx")
          machine.wait_for_open_port(80)
          machine.succeed('test "$(curl -fvvv http://localhost/)" = foo')
        '';
      };
    })
    [
      "angie"
      "nginxStable"
      "nginxMainline"
      "nginxShibboleth"
      "openresty"
    ]
)