This repository has been archived by the owner on May 16, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 804
/
Copy pathEmailAddressTest.php
651 lines (589 loc) · 21.7 KB
/
EmailAddressTest.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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
<?php
/**
* Zend Framework
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://framework.zend.com/license/new-bsd
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* @category Zend
* @package Zend_Validate
* @subpackage UnitTests
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id$
*/
if (!defined('PHPUnit_MAIN_METHOD')) {
define('PHPUnit_MAIN_METHOD', 'Zend_Validate_EmailAddressTest::main');
}
/**
* @see Zend_Validate_EmailAddress
*/
require_once 'Zend/Validate/EmailAddress.php';
/**
* @category Zend
* @package Zend_Validate
* @subpackage UnitTests
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @group Zend_Validate
*/
class Zend_Validate_EmailAddressTest extends PHPUnit_Framework_TestCase
{
/**
* Default instance created for all test methods
*
* @var Zend_Validate_EmailAddress
*/
protected $_validator;
/**
* Runs this test suite
*
* @return void
*/
public static function main()
{
$suite = new PHPUnit_Framework_TestSuite(__CLASS__);
$result = PHPUnit_TextUI_TestRunner::run($suite);
}
/**
* Creates a new Zend_Validate_EmailAddress object for each test method
*
* @return void
*/
public function setUp()
{
$this->_validator = new Zend_Validate_EmailAddress();
}
/**
* Ensures that a basic valid e-mail address passes validation
*
* @return void
*/
public function testBasic()
{
$this->assertTrue($this->_validator->isValid('[email protected]'));
}
/**
* Ensures that localhost address is valid
*
* @return void
*/
public function testLocalhostAllowed()
{
$validator = new Zend_Validate_EmailAddress(Zend_Validate_Hostname::ALLOW_ALL);
$this->assertTrue($validator->isValid('username@localhost'));
}
/**
* Ensures that local domain names are valid
*
* @return void
*/
public function testLocaldomainAllowed()
{
$validator = new Zend_Validate_EmailAddress(Zend_Validate_Hostname::ALLOW_ALL);
$this->assertTrue($validator->isValid('[email protected]'));
}
/**
* Ensures that IP hostnames are valid
*
* @return void
*/
public function testIPAllowed()
{
$validator = new Zend_Validate_EmailAddress(Zend_Validate_Hostname::ALLOW_DNS | Zend_Validate_Hostname::ALLOW_IP);
$valuesExpected = array(
array(Zend_Validate_Hostname::ALLOW_DNS, true, array('[email protected]')),
array(Zend_Validate_Hostname::ALLOW_DNS, false, array('bob@localhost'))
);
foreach ($valuesExpected as $element) {
foreach ($element[2] as $input) {
$this->assertEquals($element[1], $validator->isValid($input), implode("\n", $validator->getMessages()));
}
}
}
/**
* Ensures that validation fails when the local part is missing
*
* @return void
*/
public function testLocalPartMissing()
{
$this->assertFalse($this->_validator->isValid('@example.com'));
$messages = $this->_validator->getMessages();
$this->assertEquals(1, count($messages));
$this->assertContains('local-part@hostname', current($messages));
}
/**
* Ensures that validation fails and produces the expected messages when the local part is invalid
*
* @return void
*/
public function testLocalPartInvalid()
{
$this->assertFalse($this->_validator->isValid('Some [email protected]'));
$messages = $this->_validator->getMessages();
$this->assertEquals(3, count($messages));
$this->assertContains('Some User', current($messages));
$this->assertContains('dot-atom', current($messages));
$this->assertContains('Some User', next($messages));
$this->assertContains('quoted-string', current($messages));
$this->assertContains('Some User', next($messages));
$this->assertContains('not a valid local part', current($messages));
}
/**
* Ensures that no validation failure message is produced when the local part follows the quoted-string format
*
* @return void
*/
public function testLocalPartQuotedString()
{
$this->assertTrue($this->_validator->isValid('"Some User"@example.com'));
$messages = $this->_validator->getMessages();
$this->assertTrue(is_array($messages));
$this->assertEquals(0, count($messages));
}
/**
* Ensures that validation fails when the hostname is invalid
*
* @return void
*/
public function testHostnameInvalid()
{
$this->assertFalse($this->_validator->isValid('username@ example . com'));
$messages = $this->_validator->getMessages();
$this->assertThat(count($messages), $this->greaterThanOrEqual(1));
$this->assertContains('not a valid hostname', current($messages));
}
/**
* Ensures that quoted-string local part is considered valid
*
* @return void
*/
public function testQuotedString()
{
$emailAddresses = array(
'""@domain.com', // Optional
'" "@domain.com', // x20
'"!"@domain.com', // x21
'"\""@domain.com', // \" (escaped x22)
'"#"@domain.com', // x23
'"$"@domain.com', // x24
'"Z"@domain.com', // x5A
'"["@domain.com', // x5B
'"\\\"@domain.com', // \\ (escaped x5C)
'"]"@domain.com', // x5D
'"^"@domain.com', // x5E
'"}"@domain.com', // x7D
'"~"@domain.com', // x7E
'"username"@example.com',
'"bob%jones"@domain.com',
'"bob jones"@domain.com',
'"bob@jones"@domain.com',
'"[[ bob ]]"@domain.com',
'"jones"@domain.com'
);
foreach ($emailAddresses as $input) {
$this->assertTrue($this->_validator->isValid($input), "$input failed to pass validation:\n"
. implode("\n", $this->_validator->getMessages()));
}
}
/**
* Ensures that quoted-string local part is considered invalid
*
* @return void
*/
public function testInvalidQuotedString()
{
$emailAddresses = array(
"\"\x00\"@example.com",
"\"\x01\"@example.com",
"\"\x1E\"@example.com",
"\"\x1F\"@example.com",
'"""@example.com', // x22 (not escaped)
'"\"@example.com', // x5C (not escaped)
"\"\x7F\"@example.com",
);
foreach ($emailAddresses as $input) {
$this->assertFalse($this->_validator->isValid($input), "$input failed to pass validation:\n"
. implode("\n", $this->_validator->getMessages()));
}
}
/**
* Ensures that validation fails when the e-mail is given as for display,
* with angle brackets around the actual address
*
* @return void
*/
public function testEmailDisplay()
{
$this->assertFalse($this->_validator->isValid('User Name <[email protected]>'));
$messages = $this->_validator->getMessages();
$this->assertThat(count($messages), $this->greaterThanOrEqual(3));
$this->assertContains('not a valid hostname', current($messages));
$this->assertContains('cannot match TLD', next($messages));
$this->assertContains('does not appear to be a valid local network name', next($messages));
}
/**
* Ensures that the validator follows expected behavior for valid email addresses
*
* @return void
*/
public function testBasicValid()
{
$emailAddresses = array(
"B.O'[email protected]",
'bob@verylongdomainsupercalifragilisticexpialidociousspoonfulofsugar.com'
);
foreach ($emailAddresses as $input) {
$this->assertTrue($this->_validator->isValid($input), "$input failed to pass validation:\n"
. implode("\n", $this->_validator->getMessages()));
}
}
/**
* Ensures that the validator follows expected behavior for invalid email addresses
*
* @return void
*/
public function testBasicInvalid()
{
$emailAddresses = array(
'',
'bob
@domain.com',
'bob [email protected]',
'"bob%[email protected]',
'bob@verylongdomainsupercalifragilisticexpialidociousaspoonfulofsugar.com',
'bob+domain.com',
'bob.domain.com',
'bob @domain.com',
'bob@ domain.com',
'bob @ domain.com',
);
foreach ($emailAddresses as $input) {
$this->assertFalse($this->_validator->isValid($input), implode("\n", $this->_validator->getMessages()) . $input);
}
}
/**
* Ensures that the validator follows expected behavior for valid email addresses with complex local parts
*
* @return void
*/
public function testComplexLocalValid()
{
$emailAddresses = array(
'Bob&[email protected]',
);
foreach ($emailAddresses as $input) {
$this->assertTrue($this->_validator->isValid($input));
}
}
/**
* Ensures that the validator follows expected behavior for checking MX records
*
* @return void
*/
public function testMXRecords()
{
if (!defined('TESTS_ZEND_VALIDATE_ONLINE_ENABLED')
|| !constant('TESTS_ZEND_VALIDATE_ONLINE_ENABLED')
) {
$this->markTestSkipped('Testing MX records only works when a valid internet connection is available');
return;
}
$validator = new Zend_Validate_EmailAddress(Zend_Validate_Hostname::ALLOW_DNS, true);
// Are MX checks supported by this system?
if (!$validator->validateMxSupported()) {
$this->markTestSkipped('Testing MX records is not supported with this configuration');
return;
}
$valuesExpected = array(
array(true, array('[email protected]', '[email protected]')),
array(false, array('[email protected]', '[email protected]'))
);
foreach ($valuesExpected as $element) {
foreach ($element[1] as $input) {
$this->assertEquals($element[0], $validator->isValid($input), implode("\n", $validator->getMessages()));
}
}
// Try a check via setting the option via a method
unset($validator);
$validator = new Zend_Validate_EmailAddress();
$validator->setValidateMx(true);
foreach ($valuesExpected as $element) {
foreach ($element[1] as $input) {
$this->assertEquals($element[0], $validator->isValid($input), implode("\n", $validator->getMessages()));
}
}
}
/**
* Test changing hostname settings via EmailAddress object
*
* @return void
*/
public function testHostnameSettings()
{
$validator = new Zend_Validate_EmailAddress();
// Check no IDN matching
$validator->getHostnameValidator()->setValidateIdn(false);
$valuesExpected = array(
array(false, array('name@b�rger.de', 'name@h�llo.de', 'name@h�llo.se'))
);
foreach ($valuesExpected as $element) {
foreach ($element[1] as $input) {
$this->assertEquals($element[0], $validator->isValid($input), implode("\n", $validator->getMessages()));
}
}
// Check no TLD matching
$validator->getHostnameValidator()->setValidateTld(false);
$valuesExpected = array(
);
foreach ($valuesExpected as $element) {
foreach ($element[1] as $input) {
$this->assertEquals($element[0], $validator->isValid($input), implode("\n", $validator->getMessages()));
}
}
}
/**
* Ensures that getMessages() returns expected default value (an empty array)
*
* @return void
*/
public function testGetMessages()
{
$this->assertEquals(array(), $this->_validator->getMessages());
}
/**
* @group ZF-2861
*/
public function testHostnameValidatorMessagesShouldBeTranslated()
{
require_once 'Zend/Validate/Hostname.php';
$hostnameValidator = new Zend_Validate_Hostname();
require_once 'Zend/Translate.php';
$translations = array(
'hostnameIpAddressNotAllowed' => 'hostnameIpAddressNotAllowed translation',
'hostnameUnknownTld' => 'hostnameUnknownTld translation',
'hostnameDashCharacter' => 'hostnameDashCharacter translation',
'hostnameInvalidHostnameSchema' => 'hostnameInvalidHostnameSchema translation',
'hostnameUndecipherableTld' => 'hostnameUndecipherableTld translation',
'hostnameInvalidHostname' => 'hostnameInvalidHostname translation',
'hostnameInvalidLocalName' => 'hostnameInvalidLocalName translation',
'hostnameLocalNameNotAllowed' => 'hostnameLocalNameNotAllowed translation',
);
$translator = new Zend_Translate('array', $translations);
$this->_validator->setTranslator($translator)->setHostnameValidator($hostnameValidator);
$this->_validator->isValid('[email protected],512.777');
$messages = $hostnameValidator->getMessages();
$found = false;
foreach ($messages as $code => $message) {
if (array_key_exists($code, $translations)) {
$this->assertEquals($translations[$code], $message);
$found = true;
break;
}
}
$this->assertTrue($found);
}
/**
* @group ZF-4888
*/
public function testEmailsExceedingLength()
{
$emailAddresses = array(
'thislocalpathoftheemailadressislongerthantheallowedsizeof64characters@domain.com',
'bob@verylongdomainsupercalifragilisticexpialidociousspoonfulofsugarverylongdomainsupercalifragilisticexpialidociousspoonfulofsugarverylongdomainsupercalifragilisticexpialidociousspoonfulofsugarverylongdomainsupercalifragilisticexpialidociousspoonfulofsugarexpialidociousspoonfulofsugar.com',
);
foreach ($emailAddresses as $input) {
$this->assertFalse($this->_validator->isValid($input));
}
}
/**
* @group ZF-4352
*/
public function testNonStringValidation()
{
$this->assertFalse($this->_validator->isValid(array(1 => 1)));
}
/**
* @group ZF-7490
*/
public function testSettingHostnameMessagesThroughEmailValidator()
{
$translations = array(
'hostnameIpAddressNotAllowed' => 'hostnameIpAddressNotAllowed translation',
'hostnameUnknownTld' => 'hostnameUnknownTld translation',
'hostnameDashCharacter' => 'hostnameDashCharacter translation',
'hostnameInvalidHostnameSchema' => 'hostnameInvalidHostnameSchema translation',
'hostnameUndecipherableTld' => 'hostnameUndecipherableTld translation',
'hostnameInvalidHostname' => 'hostnameInvalidHostname translation',
'hostnameInvalidLocalName' => 'hostnameInvalidLocalName translation',
'hostnameLocalNameNotAllowed' => 'hostnameLocalNameNotAllowed translation',
);
$this->_validator->setMessages($translations);
$this->_validator->isValid('[email protected],512.777');
$messages = $this->_validator->getMessages();
$found = false;
foreach ($messages as $code => $message) {
if (array_key_exists($code, $translations)) {
$this->assertEquals($translations[$code], $message);
$found = true;
break;
}
}
$this->assertTrue($found);
}
/**
* Testing initializing with several options
*/
public function testInstanceWithOldOptions()
{
$handler = set_error_handler(array($this, 'errorHandler'), E_USER_NOTICE);
$validator = new Zend_Validate_EmailAddress();
$options = $validator->getOptions();
$this->assertEquals(Zend_Validate_Hostname::ALLOW_DNS, $options['allow']);
$this->assertFalse($options['mx']);
try {
$validator = new Zend_Validate_EmailAddress(Zend_Validate_Hostname::ALLOW_ALL, true, new Zend_Validate_Hostname(Zend_Validate_Hostname::ALLOW_ALL));
$options = $validator->getOptions();
$this->assertEquals(Zend_Validate_Hostname::ALLOW_ALL, $options['allow']);
$this->assertTrue($options['mx']);
set_error_handler($handler);
} catch (Zend_Exception $e) {
$this->markTestSkipped('MX not available on this system');
}
}
/**
* Testing setOptions
*/
public function testSetOptions()
{
$this->_validator->setOptions(array('messages' => array(Zend_Validate_EmailAddress::INVALID => 'TestMessage')));
$messages = $this->_validator->getMessageTemplates();
$this->assertEquals('TestMessage', $messages[Zend_Validate_EmailAddress::INVALID]);
$oldHostname = $this->_validator->getHostnameValidator();
$this->_validator->setOptions(array('hostname' => new Zend_Validate_Hostname(Zend_Validate_Hostname::ALLOW_ALL)));
$hostname = $this->_validator->getHostnameValidator();
$this->assertNotEquals($oldHostname, $hostname);
}
/**
* Testing setMessage
*/
public function testSetSingleMessage()
{
$messages = $this->_validator->getMessageTemplates();
$this->assertNotEquals('TestMessage', $messages[Zend_Validate_EmailAddress::INVALID]);
$this->_validator->setMessage('TestMessage');
$messages = $this->_validator->getMessageTemplates();
$this->assertEquals('TestMessage', $messages[Zend_Validate_EmailAddress::INVALID]);
}
/**
* Testing setMessage for all messages
*
* @group ZF-10690
*/
public function testSetMultipleMessages()
{
$messages = $this->_validator->getMessageTemplates();
$this->assertNotEquals('TestMessage', $messages[Zend_Validate_EmailAddress::INVALID]);
$this->_validator->setMessage('TestMessage');
$messages = $this->_validator->getMessageTemplates();
$this->assertEquals('TestMessage', $messages[Zend_Validate_EmailAddress::INVALID]);
$this->assertEquals('TestMessage', $messages[Zend_Validate_EmailAddress::INVALID_FORMAT]);
$this->assertEquals('TestMessage', $messages[Zend_Validate_EmailAddress::DOT_ATOM]);
}
/**
* Testing validateMxSupported
*/
public function testValidateMxSupported()
{
if (function_exists('getmxrr')) {
$this->assertTrue($this->_validator->validateMxSupported());
} else {
$this->assertFalse($this->_validator->validateMxSupported());
}
}
/**
* Testing getValidateMx
*/
public function testGetValidateMx()
{
$this->assertFalse($this->_validator->getValidateMx());
}
/**
* Testing getDeepMxCheck
*/
public function testGetDeepMxCheck()
{
$this->assertFalse($this->_validator->getDeepMxCheck());
}
/**
* Testing getDomainCheck
*/
public function testGetDomainCheck()
{
$this->assertTrue($this->_validator->getDomainCheck());
}
public function errorHandler($errno, $errstr)
{
if (strstr($errstr, 'deprecated')) {
$this->multipleOptionsDetected = true;
}
}
/**
* @group ZF-11239
*/
public function testNotSetHostnameValidator()
{
$hostname = $this->_validator->getHostnameValidator();
$this->assertTrue($hostname instanceof Zend_Validate_Hostname);
}
/**
* @group GH-62
*/
public function testIdnHostnameInEmaillAddress()
{
if (version_compare(PHP_VERSION, '5.3.0', '<')) {
$this->markTestSkipped('idn_to_ascii() is available in intl in PHP 5.3.0+');
}
$validator = new Zend_Validate_EmailAddress();
$validator->setValidateMx(true);
$this->assertTrue($validator->isValid('testmail@faß.de'));
}
/**
* @group GH-517
*/
public function testNonReservedIp()
{
$validator = new Zend_Validate_EmailAddress(Zend_Validate_Hostname::ALLOW_IP);
$this->assertTrue($validator->isValid('[email protected]'));
}
}
if (PHPUnit_MAIN_METHOD == 'Zend_Validate_EmailAddressTest::main') {
Zend_Validate_EmailAddressTest::main();
}