-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathmail_imap.t
273 lines (187 loc) · 6.21 KB
/
mail_imap.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
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
#!/usr/bin/perl
# (C) Maxim Dounin
# Tests for nginx mail imap module.
###############################################################################
use warnings;
use strict;
use Test::More;
use MIME::Base64;
use Socket qw/ CRLF /;
BEGIN { use FindBin; chdir($FindBin::Bin); }
use lib 'lib';
use Test::Nginx;
use Test::Nginx::IMAP;
###############################################################################
select STDERR; $| = 1;
select STDOUT; $| = 1;
local $SIG{PIPE} = 'IGNORE';
my $t = Test::Nginx->new()->has(qw/mail imap http rewrite/)
->write_file_expand('nginx.conf', <<'EOF');
%%TEST_GLOBALS%%
daemon off;
events {
}
mail {
proxy_pass_error_message off;
proxy_timeout 15s;
auth_http http://127.0.0.1:8080/mail/auth;
server {
listen 127.0.0.1:8143;
protocol imap;
imap_auth plain cram-md5 external;
}
}
http {
%%TEST_GLOBALS_HTTP%%
server {
listen 127.0.0.1:8080;
server_name localhost;
location = /mail/auth {
set $reply ERROR;
set $passw "";
set $userpass "$http_auth_user:$http_auth_pass";
if ($userpass = '[email protected]:secret') {
set $reply OK;
}
if ($userpass = 'te\\"[email protected]:se\\"cret') {
set $reply OK;
}
if ($userpass = '[email protected]:secret') {
set $reply OK;
}
set $userpass "$http_auth_user:$http_auth_salt:$http_auth_pass";
if ($userpass ~ '^[email protected]:<.*@.*>:0{32}$') {
set $reply OK;
set $passw secret;
}
set $userpass "$http_auth_method:$http_auth_user:$http_auth_pass";
if ($userpass = 'external:[email protected]:') {
set $reply OK;
set $passw secret;
}
add_header Auth-Status $reply;
add_header Auth-Server 127.0.0.1;
add_header Auth-Port %%PORT_8144%%;
add_header Auth-Pass $passw;
add_header Auth-Wait 1;
return 204;
}
}
}
EOF
$t->run_daemon(\&Test::Nginx::IMAP::imap_test_daemon);
$t->run()->plan(31);
$t->waitforsocket('127.0.0.1:' . port(8144));
###############################################################################
# login
my $s = Test::Nginx::IMAP->new();
$s->ok('greeting');
$s->send('a01 LOGIN');
$s->check(qr/^a01 BAD/, 'login without arguments');
$s->send('a02 LOGIN [email protected] bad');
$s->check(qr/^a02 NO/, 'login with bad password');
$s->send('a03 LOGIN [email protected] secret');
$s->ok('login');
# login with untagged capability
TODO: {
local $TODO = 'not yet' unless $t->has_version('1.27.3');
$s = Test::Nginx::IMAP->new();
$s->read();
$s->send('a04 LOGIN [email protected] secret');
$s->check(qr/^\* CAPABILITY /, 'untagged capability');
$s->ok('login after capability');
}
# auth
$s = Test::Nginx::IMAP->new();
$s->read();
$s->send('1 AUTHENTICATE');
$s->check(qr/^\S+ BAD/, 'auth without arguments');
# auth plain
$s->send('1 AUTHENTICATE PLAIN ' . encode_base64("\0test\@example.com\0bad", ''));
$s->check(qr/^\S+ NO/, 'auth plain with bad password');
$s->send('1 AUTHENTICATE PLAIN ' . encode_base64("\0test\@example.com\0secret", ''));
$s->ok('auth plain');
# auth login simple
$s = Test::Nginx::IMAP->new();
$s->read();
$s->send('1 AUTHENTICATE LOGIN');
$s->check(qr/\+ VXNlcm5hbWU6/, 'auth login username challenge');
$s->send(encode_base64('[email protected]', ''));
$s->check(qr/\+ UGFzc3dvcmQ6/, 'auth login password challenge');
$s->send(encode_base64('secret', ''));
$s->ok('auth login simple');
# auth login with username
$s = Test::Nginx::IMAP->new();
$s->read();
$s->send('1 AUTHENTICATE LOGIN ' . encode_base64('[email protected]', ''));
$s->check(qr/\+ UGFzc3dvcmQ6/, 'auth login with username password challenge');
$s->send(encode_base64('secret', ''));
$s->ok('auth login with username');
# auth cram-md5
$s = Test::Nginx::IMAP->new();
$s->read();
$s->send('1 AUTHENTICATE CRAM-MD5');
$s->check(qr/\+ /, 'auth cram-md5 challenge');
$s->send(encode_base64('[email protected] ' . ('0' x 32), ''));
$s->ok('auth cram-md5');
# auth external
$s = Test::Nginx::IMAP->new();
$s->read();
$s->send('1 AUTHENTICATE EXTERNAL');
$s->check(qr/\+ VXNlcm5hbWU6/, 'auth external challenge');
$s->send(encode_base64('[email protected]', ''));
$s->ok('auth external');
# auth external with username
$s = Test::Nginx::IMAP->new();
$s->read();
$s->send('1 AUTHENTICATE EXTERNAL ' . encode_base64('[email protected]', ''));
$s->ok('auth external with username');
# quoted strings
$s = Test::Nginx::IMAP->new();
$s->read();
$s->send('a01 LOGIN "te\\\\\"[email protected]" "se\\\\\"cret"');
$s->ok('quoted strings');
# literals
$s = Test::Nginx::IMAP->new();
$s->read();
$s->send('a01 LOGIN {18}');
$s->check(qr/\+ /, 'login username literal continue');
$s->send('te\"[email protected]' . ' {8}');
$s->check(qr/\+ /, 'login password literal continue');
$s->send('se\"cret');
$s->ok('login literals');
# non-synchronizing literals
$s = Test::Nginx::IMAP->new();
$s->read();
$s->send('a01 LOGIN {18+}' . CRLF
. 'te\"[email protected]' . ' {8+}' . CRLF
. 'se\"cret');
$s->ok('login non-sync literals');
# backslash in quotes and literals
$s = Test::Nginx::IMAP->new();
$s->read();
$s->send('a01 LOGIN {18+}' . CRLF
. 'te\"[email protected]' . ' "se\\\\\"cret"');
$s->ok('backslash in literal');
# pipelining
$s = Test::Nginx::IMAP->new();
$s->read();
$s->send('a01 INVALID COMMAND WITH ARGUMENTS' . CRLF
. 'a02 NOOP');
$s->check(qr/^a01 BAD/, 'pipelined invalid command');
$s->ok('pipelined noop after invalid command');
$s->send('a03 FOOBAR {10+}' . CRLF
. 'test test ' . CRLF
. 'a04 NOOP');
$s->check(qr/^a03 BAD/, 'invalid with non-sync literal');
$s->check(qr/^(a04 |$)/, 'literal not command');
# skipped without a fix, since with level-triggered event methods
# this hogs cpu till the connection is closed by the backend server,
# and generates a lot of debug logs
$s = Test::Nginx::IMAP->new();
$s->read();
$s->send('a01 LOGIN [email protected] secret' . CRLF
. 'a02 LOGOUT');
$s->ok('pipelined login');
$s->ok('pipelined logout');
###############################################################################