annotate proxy_cache_min_free.t @ 1858:cdcd75657e52

Tests: added has_feature() tests for IO::Socket::SSL. The following distinct features supported: - "socket_ssl", which requires IO::Socket::SSL and also implies existance of the IO::Socket::SSL::SSL_VERIFY_NONE() symbol. It is used by most of the tests. - "socket_ssl_sni", which requires IO::Socket::SSL with the can_client_sni() function (1.84), and SNI support available in Net::SSLeay and the OpenSSL library being used. Used by ssl_sni.t, ssl_sni_sessions.t, stream_ssl_preread.t. Additional Net::SSLeay testing is believed to be unneeded and was removed. - "socket_ssl_alpn", which requires IO::Socket::SSL with ALPN support (2.009), and ALPN support in Net::SSLeay and the OpenSSL library being used. Used by h2_ssl.t, h2_ssl_verify_client.t, stream_ssl_alpn.t, stream_ssl_preread_alpn.t. - "socket_ssl_sslversion", which requires IO::Socket::SSL with the get_sslversion() and get_sslversion_int() methods (1.964). Used by mail_imap_ssl.t. - "socket_ssl_reused", which requires IO::Socket::SSL with the get_session_reused() method (2.057). To be used in the following patches. This makes it possible to simplify and unify various SSL tests.
author Maxim Dounin <mdounin@mdounin.ru>
date Thu, 18 May 2023 18:07:02 +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 ###############################################################################