annotate proxy_cache_min_free.t @ 1961:fe6f22da53ec default tip

Tests: tests for usage of discarded body. The client_max_body_size limit should be ignored when the request body is already discarded. In HTTP/1.x, this is done by checking the r->discard_body flag when the body is being discarded, and because r->headers_in.content_length_n is 0 when it's already discarded. This, however, does not happen with HTTP/2 and HTTP/3, and therefore "error_page 413" does not work without relaxing the limit. Further, with proxy_pass, r->headers_in.content_length_n is used to determine length of the request body, and therefore is not correct if discarding of the request body isn't yet complete. While discarding the request body, r->headers_in.content_length_n contains the rest of the body to discard (or, in case of chunked request body, the rest of the current chunk to discard). Similarly, the $content_length variable uses r->headers_in.content_length if available, and also incorrect. The $content_length variable is used when proxying with fastcgi_pass, grpc_pass, and uwsgi_pass (scgi_pass uses the value calculated based on the actual request body buffers, and therefore works correctly).
author Maxim Dounin <mdounin@mdounin.ru>
date Sat, 27 Apr 2024 18:55:50 +0300
parents 5ac6efbe5552
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1576
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
1 #!/usr/bin/perl
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
2
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
3 # (C) Sergey Kandaurov
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
4 # (C) Nginx, Inc.
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
5
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
6 # Tests for http proxy cache, min_free parameter.
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
7
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
8 ###############################################################################
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
9
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
10 use warnings;
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
11 use strict;
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
12
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
13 use Test::More;
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
14
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
15 BEGIN { use FindBin; chdir($FindBin::Bin); }
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
16
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
17 use lib 'lib';
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
18 use Test::Nginx;
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
19
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
20 ###############################################################################
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
21
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
22 select STDERR; $| = 1;
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
23 select STDOUT; $| = 1;
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
24
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
25 my $t = Test::Nginx->new()->has(qw/http proxy cache/)
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
26 ->write_file_expand('nginx.conf', <<'EOF');
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
27
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
28 %%TEST_GLOBALS%%
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
29
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
30 daemon off;
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
31
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
32 events {
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
33 }
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
34
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
35 http {
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
36 %%TEST_GLOBALS_HTTP%%
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
37
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
38 proxy_cache_path %%TESTDIR%%/cache levels=1:2 min_free=4k
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
39 keys_zone=NAME:1m;
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
40
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
41 server {
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
42 listen 127.0.0.1:8080;
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
43 server_name localhost;
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
44
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
45 location / {
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
46 proxy_pass http://127.0.0.1:8081;
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
47
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
48 proxy_cache NAME;
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
49
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
50 proxy_cache_valid any 1m;
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
51
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
52 add_header X-Cache-Status $upstream_cache_status;
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
53 }
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
54 }
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
55
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
56 server {
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
57 listen 127.0.0.1:8081;
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
58 server_name localhost;
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
59
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
60 location / { }
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
61 }
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
62 }
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
63
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
64 EOF
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
65
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
66 $t->write_file('t.html', 'SEE-THIS');
1693
5ac6efbe5552 Tests: removed TODO and try_run() checks for legacy versions.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1576
diff changeset
67 $t->run()->plan(2);
1576
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
68
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
69 ###############################################################################
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
70
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
71 like(http_get('/t.html'), qr/SEE-THIS/, 'proxy request');
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
72
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
73 $t->write_file('t.html', 'NOOP');
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
74 like(http_get('/t.html'), qr/SEE-THIS/, 'proxy request cached');
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
75
8177323823d6 Tests: proxy_cache_path with min_free parameter.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
76 ###############################################################################