summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2014-02-23 14:20:43 +0100
committerAleksander Machniak <alec@alec.pl>2014-02-24 14:16:10 +0100
commit55d9d5e0b7c75d7a4a2f59a76a8fdc793bf78b43 (patch)
tree52031853949f5fb459137261e39a33d77b28b9af /tests
parent5f5174e3b537a5ec87c6d7bd6cbc898a47725fd5 (diff)
Improvement in handling invalid email address strings
Diffstat (limited to 'tests')
-rw-r--r--tests/Framework/Mime.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/Framework/Mime.php b/tests/Framework/Mime.php
index d767905e3..d47eba896 100644
--- a/tests/Framework/Mime.php
+++ b/tests/Framework/Mime.php
@@ -42,6 +42,8 @@ class Framework_Mime extends PHPUnit_Framework_TestCase
// invalid (#1489092)
22 => '"John Doe @ SomeBusinessName" <MAILER-DAEMON>',
23 => '=?UTF-8?B?IlRlc3QsVGVzdCI=?= <test@domain.tld>',
+ // invalid, but we do our best to parse correctly
+ 24 => '"email@test.com" <>',
);
$results = array(
@@ -70,6 +72,7 @@ class Framework_Mime extends PHPUnit_Framework_TestCase
// invalid (#1489092)
22 => array(1, 'John Doe @ SomeBusinessName', 'MAILER-DAEMON'),
23 => array(1, 'Test,Test', 'test@domain.tld'),
+ 24 => array(1, '', 'email@test.com'),
);
foreach ($headers as $idx => $header) {