forked from nginx/nginx-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproxy_cookie.t
122 lines (89 loc) · 3.31 KB
/
proxy_cookie.t
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
#!/usr/bin/perl
# (C) Maxim Dounin
# (C) Valentin Bartenev
# Tests for the proxy_cookie_domain and proxy_cookie_path directives.
###############################################################################
use warnings;
use strict;
use Test::More;
BEGIN { use FindBin; chdir($FindBin::Bin); }
use lib 'lib';
use Test::Nginx;
###############################################################################
select STDERR; $| = 1;
select STDOUT; $| = 1;
my $t = Test::Nginx->new()->has(qw/http proxy rewrite/);
$t->write_file_expand('nginx.conf', <<'EOF');
%%TEST_GLOBALS%%
daemon off;
events {
}
http {
%%TEST_GLOBALS_HTTP%%
server {
listen 127.0.0.1:8080;
server_name localhost;
location / {
proxy_pass http://127.0.0.1:8081;
proxy_cookie_domain www.example.org .example.com;
proxy_cookie_domain .$server_name.com en.$server_name.org;
proxy_cookie_domain ~^(.+)\.com$ $1.org;
proxy_cookie_path /path/ /new/;
proxy_cookie_path /$server_name/ /new/$server_name/;
proxy_cookie_path ~^/regex/(.+)$ /$1;
proxy_cookie_path ~*^/caseless/(.+)$ /$1;
location /off/ {
proxy_pass http://127.0.0.1:8081;
proxy_cookie_domain off;
proxy_cookie_path off;
}
}
}
server {
listen 127.0.0.1:8081;
server_name localhost;
location / {
if ($arg_domain) {
set $sc_domain "; Domain=$arg_domain";
}
if ($arg_path) {
set $sc_path "; Path=$arg_path";
}
add_header Set-Cookie v=path=domain=$sc_domain$sc_path;
return 200 OK;
}
}
}
EOF
$t->run()->plan(9);
###############################################################################
my $port = port(8080);
is(http_get_set_cookie('/?domain=www.Example.org'),
'v=path=domain=; Domain=example.com', 'domain rewrite');
is(http_get_set_cookie('/?domain=.LocalHost.com'),
'v=path=domain=; Domain=.en.localhost.org',
'domain rewrite with vars');
is(http_get_set_cookie('/?domain=www.example.COM'),
'v=path=domain=; Domain=www.example.org', 'domain regex rewrite');
is(http_get_set_cookie('/?path=/path/test.html'),
'v=path=domain=; Path=/new/test.html', 'path rewrite');
is(http_get_set_cookie('/?path=/localhost/test.html'),
'v=path=domain=; Path=/new/localhost/test.html',
'path rewrite with vars');
is(http_get_set_cookie('/?path=/regex/test.html'),
'v=path=domain=; Path=/test.html', 'path regex rewrite');
is(http_get_set_cookie('/?path=/CASEless/test.html'),
'v=path=domain=; Path=/test.html', 'path caseless regex rewrite');
is(http_get_set_cookie('/?domain=www.example.org&path=/path/test.html'),
'v=path=domain=; Domain=example.com; Path=/new/test.html',
'domain and path rewrite');
is(http_get_set_cookie('/off/?domain=www.example.org&path=/path/test.html'),
'v=path=domain=; Domain=www.example.org; Path=/path/test.html',
'domain and path rewrite off');
###############################################################################
sub http_get_set_cookie {
my ($uri) = @_;
http_get("http://127.0.0.1:$port$uri") =~ /^Set-Cookie:\s(.+?)\x0d?$/mi;
return $1;
}
###############################################################################