]> scripts.mit.edu Git - autoinstallsdev/mediawiki.git/blobdiff - vendor/pear/mail_mime/tests/test_Bug_21206.phpt
MediaWiki 1.30.2
[autoinstallsdev/mediawiki.git] / vendor / pear / mail_mime / tests / test_Bug_21206.phpt
diff --git a/vendor/pear/mail_mime/tests/test_Bug_21206.phpt b/vendor/pear/mail_mime/tests/test_Bug_21206.phpt
new file mode 100644 (file)
index 0000000..61688f6
--- /dev/null
@@ -0,0 +1,28 @@
+--TEST--
+Bug #21206  Handling quoted strings
+--SKIPIF--
+--FILE--
+<?php
+require_once('Mail/mimePart.php');
+class X extends Mail_mimePart {
+    public static function explodeQuotedString($delimiter, $string){
+        return Mail_mimePart::explodeQuotedString($delimiter, $string);
+    }
+}
+
+$tests = [
+    '"a" <a@a.a>, b <b@b.b>',
+    '"c\\\\" <c@c.c>, d <d@d.d>',
+];
+foreach ($tests as $test) {
+    $addrs = X::explodeQuotedString('[\t,]', $test);
+    foreach ($addrs as $addr) {
+        print trim($addr) . PHP_EOL;
+    }
+}
+?>
+--EXPECT--
+"a" <a@a.a>
+b <b@b.b>
+"c\\" <c@c.c>
+d <d@d.d>