summaryrefslogtreecommitdiffstats
path: root/nixos/tests/nginx-etag-compression.nix
blob: a194c6fd26b4e15ac160636cd00740f8ae9dde7f (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{ ... }:
{
  name = "nginx-etag-compression";

  nodes.machine =
    { pkgs, lib, ... }:
    {
      services.nginx = {
        enable = true;
        recommendedGzipSettings = true;
        virtualHosts.default = {
          root = pkgs.runCommandLocal "testdir" { } ''
            mkdir "$out"
            cat > "$out/index.html" <<EOF
            Hello, world!
            Hello, world!
            Hello, world!
            Hello, world!
            Hello, world!
            Hello, world!
            Hello, world!
            Hello, world!
            EOF
            ${pkgs.gzip}/bin/gzip -k "$out/index.html"
          '';
        };
      };
    };

  testScript =
    { nodes, ... }:
    ''
      machine.wait_for_unit("nginx")
      machine.wait_for_open_port(80)

      etag_plain = machine.succeed("curl -s -w'%header{etag}' -o/dev/null -H 'Accept-encoding:' http://127.0.0.1/")
      etag_gzip = machine.succeed("curl -s -w'%header{etag}' -o/dev/null -H 'Accept-encoding:gzip' http://127.0.0.1/")

      with subtest("different representations have different etags"):
        assert etag_plain != etag_gzip, f"etags should differ: {etag_plain} == {etag_gzip}"

      with subtest("etag for uncompressed response is reproducible"):
        etag_plain_repeat = machine.succeed("curl -s -w'%header{etag}' -o/dev/null -H 'Accept-encoding:' http://127.0.0.1/")
        assert etag_plain == etag_plain_repeat, f"etags should be the same: {etag_plain} != {etag_plain_repeat}"

      with subtest("etag for compressed response is reproducible"):
        etag_gzip_repeat = machine.succeed("curl -s -w'%header{etag}' -o/dev/null -H 'Accept-encoding:gzip' http://127.0.0.1/")
        assert etag_gzip == etag_gzip_repeat, f"etags should be the same: {etag_gzip} != {etag_gzip_repeat}"
    '';
}