-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathauth_request_set.t
More file actions
168 lines (125 loc) · 4.23 KB
/
Copy pathauth_request_set.t
File metadata and controls
168 lines (125 loc) · 4.23 KB
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
#!/usr/bin/perl
# (C) Maxim Dounin
# Tests for auth request module, auth_request_set.
###############################################################################
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 rewrite proxy auth_request/)
->plan(8);
$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 = /t1.html {
auth_request /auth;
auth_request_set $username $upstream_http_x_username;
add_header X-Set-Username $username;
}
location = /t2.html {
auth_request /auth;
auth_request_set $username $upstream_http_x_username;
error_page 404 = /fallback;
}
location = /fallback {
add_header X-Set-Username $username;
return 204;
}
location = /t3.html {
auth_request /auth;
auth_request_set $username $upstream_http_x_username;
error_page 404 = @fallback;
}
location @fallback {
add_header X-Set-Username $username;
return 204;
}
location = /t4.html {
auth_request /auth;
auth_request_set $username $upstream_http_x_username;
error_page 404 = /t4-fallback.html;
}
location = /t4-fallback.html {
auth_request /auth2;
auth_request_set $username $upstream_http_x_username;
add_header X-Set-Username $username;
}
location = /t5.html {
auth_request /auth;
auth_request_set $args "setargs";
proxy_pass http://127.0.0.1:8081/t5.html;
}
location = /t6.html {
add_header X-Unset-Username "x${username}x";
return 204;
}
location = /prefix {
add_header X-Foo $arg_foo;
return 204;
}
location = /prefix_set {
auth_request /auth;
auth_request_set $arg_foo "set";
add_header X-Foo $arg_foo;
}
location = /auth {
proxy_pass http://127.0.0.1:8081;
}
location = /auth2 {
proxy_pass http://127.0.0.1:8081;
}
}
server {
listen 127.0.0.1:8081;
server_name localhost;
location = /auth {
add_header X-Username "username";
return 204;
}
location = /auth2 {
add_header X-Username "username2";
return 204;
}
location = /t5.html {
add_header X-Args $args;
return 204;
}
}
}
EOF
$t->write_file('t1.html', '');
$t->write_file('t4-fallback.html', '');
$t->write_file('prefix_set', '');
$t->run();
###############################################################################
like(http_get('/t1.html'), qr/X-Set-Username: username/, 'set normal');
like(http_get('/t2.html'), qr/X-Set-Username: username/, 'set after redirect');
like(http_get('/t3.html'), qr/X-Set-Username: username/,
'set after named location');
like(http_get('/t4.html'), qr/X-Set-Username: username2/,
'set on second auth');
# there are two variables with set_handler: $args and $limit_rate
# we do test $args as it's a bit more simple thing to do
like(http_get('/t5.html'), qr/X-Args: setargs/, 'variable with set_handler');
# check that using variable without setting it returns empty content
like(http_get('/t6.html'), qr/X-Unset-Username: xx/, 'unset variable');
# variables introduced by auth_request_set did not use the NGX_HTTP_VAR_WEAK
# flag, thus overriding corresponding prefix variables in unrelated contexts
TODO: {
local $TODO = 'not yet' unless $t->has_version('1.31.3');
like(http_get('/prefix?foo=arg'), qr/X-Foo: arg/, 'prefix variable');
}
like(http_get('/prefix_set?foo=arg'), qr/X-Foo: set/, 'set prefix variable');
###############################################################################