-
-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathPop3Test.php
378 lines (301 loc) · 10.3 KB
/
Pop3Test.php
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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
<?php
/**
* @see https://github.com/laminas/laminas-mail for the canonical source repository
* @copyright https://github.com/laminas/laminas-mail/blob/master/COPYRIGHT.md
* @license https://github.com/laminas/laminas-mail/blob/master/LICENSE.md New BSD License
*/
namespace LaminasTest\Mail\Storage;
use Laminas\Config;
use Laminas\Mail\Protocol;
use Laminas\Mail\Storage;
use Laminas\Mail\Storage\Exception;
use PHPUnit\Framework\TestCase;
/**
* @group Laminas_Mail
* @covers Laminas\Mail\Storage\Pop3<extended>
*/
class Pop3Test extends TestCase
{
protected $params;
public function setUp()
{
if (! getenv('TESTS_LAMINAS_MAIL_POP3_ENABLED')) {
$this->markTestSkipped('Laminas_Mail POP3 tests are not enabled');
}
$this->params = [
'host' => getenv('TESTS_LAMINAS_MAIL_POP3_HOST'),
'user' => getenv('TESTS_LAMINAS_MAIL_POP3_USER'),
'password' => getenv('TESTS_LAMINAS_MAIL_POP3_PASSWORD')
];
if (getenv('TESTS_LAMINAS_MAIL_SERVER_TESTDIR') && getenv('TESTS_LAMINAS_MAIL_SERVER_TESTDIR')) {
if (! file_exists(getenv('TESTS_LAMINAS_MAIL_SERVER_TESTDIR') . DIRECTORY_SEPARATOR . 'inbox')
&& ! file_exists(getenv('TESTS_LAMINAS_MAIL_SERVER_TESTDIR') . DIRECTORY_SEPARATOR . 'INBOX')
) {
$this->markTestSkipped(
'There is no file name "inbox" or "INBOX" in '
. getenv('TESTS_LAMINAS_MAIL_SERVER_TESTDIR') . '. I won\'t use it for testing. '
. 'This is you safety net. If you think it is the right directory just '
. 'create an empty file named INBOX or remove/deactived this message.'
);
}
$this->cleanDir(getenv('TESTS_LAMINAS_MAIL_SERVER_TESTDIR'));
$this->copyDir(
__DIR__ . '/../_files/test.' . getenv('TESTS_LAMINAS_MAIL_SERVER_FORMAT'),
getenv('TESTS_LAMINAS_MAIL_SERVER_TESTDIR')
);
}
}
protected function cleanDir($dir)
{
$dh = opendir($dir);
while (($entry = readdir($dh)) !== false) {
if ($entry == '.' || $entry == '..') {
continue;
}
$fullname = $dir . DIRECTORY_SEPARATOR . $entry;
if (is_dir($fullname)) {
$this->cleanDir($fullname);
rmdir($fullname);
} else {
unlink($fullname);
}
}
closedir($dh);
}
protected function copyDir($dir, $dest)
{
$dh = opendir($dir);
while (($entry = readdir($dh)) !== false) {
if ($entry == '.' || $entry == '..' || $entry == '.svn') {
continue;
}
$fullname = $dir . DIRECTORY_SEPARATOR . $entry;
$destname = $dest . DIRECTORY_SEPARATOR . $entry;
if (is_dir($fullname)) {
mkdir($destname);
$this->copyDir($fullname, $destname);
} else {
copy($fullname, $destname);
}
}
closedir($dh);
}
public function testConnectOk()
{
new Storage\Pop3($this->params);
}
public function testConnectConfig()
{
new Storage\Pop3(new Config\Config($this->params));
}
public function testConnectFailure()
{
$this->params['host'] = 'example.example';
$this->expectException(Exception\InvalidArgumentException::class);
new Storage\Pop3($this->params);
}
public function testNoParams()
{
$this->expectException(Exception\InvalidArgumentException::class);
new Storage\Pop3([]);
}
public function testConnectSSL()
{
if (! getenv('TESTS_LAMINAS_MAIL_POP3_SSL')) {
return;
}
$this->params['ssl'] = 'SSL';
new Storage\Pop3($this->params);
}
public function testConnectTLS()
{
if (! getenv('TESTS_LAMINAS_MAIL_POP3_TLS')) {
return;
}
$this->params['ssl'] = 'TLS';
new Storage\Pop3($this->params);
}
public function testConnectSelfSignedSSL()
{
if (! getenv('TESTS_LAMINAS_MAIL_POP3_SSL')) {
return;
}
$this->params['ssl'] = 'SSL';
$this->params['novalidatecert'] = true;
new Storage\Pop3($this->params);
}
public function testInvalidService()
{
$this->params['port'] = getenv('TESTS_LAMINAS_MAIL_POP3_INVALID_PORT');
$this->expectException(Exception\InvalidArgumentException::class);
new Storage\Pop3($this->params);
}
public function testWrongService()
{
$this->params['port'] = getenv('TESTS_LAMINAS_MAIL_POP3_WRONG_PORT');
$this->expectException(Exception\InvalidArgumentException::class);
new Storage\Pop3($this->params);
}
public function testClose()
{
$mail = new Storage\Pop3($this->params);
$mail->close();
}
public function testHasTop()
{
$mail = new Storage\Pop3($this->params);
$this->assertTrue($mail->hasTop);
}
public function testHasCreate()
{
$mail = new Storage\Pop3($this->params);
$this->assertFalse($mail->hasCreate);
}
public function testNoop()
{
$mail = new Storage\Pop3($this->params);
$mail->noop();
}
public function testCount()
{
$mail = new Storage\Pop3($this->params);
$count = $mail->countMessages();
$this->assertEquals(7, $count);
}
public function testSize()
{
$mail = new Storage\Pop3($this->params);
$shouldSizes = [1 => 397, 89, 694, 452, 497, 101, 139];
$sizes = $mail->getSize();
$this->assertEquals($shouldSizes, $sizes);
}
public function testSingleSize()
{
$mail = new Storage\Pop3($this->params);
$size = $mail->getSize(2);
$this->assertEquals(89, $size);
}
public function testFetchHeader()
{
$mail = new Storage\Pop3($this->params);
$subject = $mail->getMessage(1)->subject;
$this->assertEquals('Simple Message', $subject);
}
/*
public function testFetchTopBody()
{
$mail = new Storage\Pop3($this->params);
$content = $mail->getHeader(3, 1)->getContent();
$this->assertEquals('Fair river! in thy bright, clear flow', trim($content));
}
*/
public function testFetchMessageHeader()
{
$mail = new Storage\Pop3($this->params);
$subject = $mail->getMessage(1)->subject;
$this->assertEquals('Simple Message', $subject);
}
public function testFetchMessageBody()
{
$mail = new Storage\Pop3($this->params);
$content = $mail->getMessage(3)->getContent();
list($content) = explode("\n", $content, 2);
$this->assertEquals('Fair river! in thy bright, clear flow', trim($content));
}
/*
public function testFailedRemove()
{
$mail = new Laminas_Mail_Storage_Pop3($this->params);
try {
$mail->removeMessage(1);
} catch (Exception $e) {
return; // test ok
}
$this->fail('no exception raised while deleting message (mbox is read-only)');
}
*/
public function testWithInstanceConstruction()
{
$protocol = new Protocol\Pop3($this->params['host']);
$mail = new Storage\Pop3($protocol);
$this->expectException(Exception\InvalidArgumentException::class);
// because we did no login this has to throw an exception
$mail->getMessage(1);
}
public function testRequestAfterClose()
{
$mail = new Storage\Pop3($this->params);
$mail->close();
$this->expectException(Exception\InvalidArgumentException::class);
$mail->getMessage(1);
}
public function testServerCapa()
{
$mail = new Protocol\Pop3($this->params['host']);
$this->assertInternalType('array', $mail->capa());
}
public function testServerUidl()
{
$mail = new Protocol\Pop3($this->params['host']);
$mail->login($this->params['user'], $this->params['password']);
$uids = $mail->uniqueid();
$this->assertEquals(count($uids), 7);
$this->assertEquals($uids[1], $mail->uniqueid(1));
}
public function testRawHeader()
{
$mail = new Storage\Pop3($this->params);
$this->assertContains("\r\nSubject: Simple Message\r\n", $mail->getRawHeader(1));
}
public function testUniqueId()
{
$mail = new Storage\Pop3($this->params);
$this->assertTrue($mail->hasUniqueId);
$this->assertEquals(1, $mail->getNumberByUniqueId($mail->getUniqueId(1)));
$ids = $mail->getUniqueId();
foreach ($ids as $num => $id) {
foreach ($ids as $inner_num => $inner_id) {
if ($num == $inner_num) {
continue;
}
if ($id == $inner_id) {
$this->fail('not all ids are unique');
}
}
if ($mail->getNumberByUniqueId($id) != $num) {
$this->fail('reverse lookup failed');
}
}
}
public function testWrongUniqueId()
{
$mail = new Storage\Pop3($this->params);
$this->expectException(Exception\InvalidArgumentException::class);
$mail->getNumberByUniqueId('this_is_an_invalid_id');
}
public function testReadAfterClose()
{
$protocol = new Protocol\Pop3($this->params['host']);
$protocol->logout();
$this->expectException(Exception\InvalidArgumentException::class);
$protocol->readResponse();
}
public function testRemove()
{
$mail = new Storage\Pop3($this->params);
$count = $mail->countMessages();
$mail->removeMessage(1);
$this->assertEquals($mail->countMessages(), --$count);
unset($mail[2]);
$this->assertEquals($mail->countMessages(), --$count);
}
public function testDotMessage()
{
$mail = new Storage\Pop3($this->params);
$content = '';
$content .= "Before the dot\r\n";
$content .= ".\r\n";
$content .= "is after the dot\r\n";
$this->assertEquals($mail->getMessage(7)->getContent(), $content);
}
}