diff options
author | Felipe Pena <felipe@php.net> | 2008-12-24 11:51:04 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2008-12-24 11:51:04 +0000 |
commit | da9a15d58681c1bd465905b67b2d3335d17de11a (patch) | |
tree | e5cc399b99a0cd5476c644049ff959cbb323b868 | |
parent | 06962230796d8092536cc06a067a7fbc08b52df9 (diff) | |
download | php-git-da9a15d58681c1bd465905b67b2d3335d17de11a.tar.gz |
- New test
-rw-r--r-- | ext/imap/tests/bug46918.phpt | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/ext/imap/tests/bug46918.phpt b/ext/imap/tests/bug46918.phpt new file mode 100644 index 0000000000..6456f25709 --- /dev/null +++ b/ext/imap/tests/bug46918.phpt @@ -0,0 +1,69 @@ +--TEST-- +Bug #46918 (imap_rfc822_parse_adrlist host part not filled in correctly) +--FILE-- +<?php + +$adds = 'ian eiloart <iane@example.ac.uk>, + shuf6@example.ac.uk, + blobby, + "ian,eiloart"<ian@example.ac.uk>, + <@example.com:foo@example.ac.uk>, + foo@#, + ian@-example.com, + ian@one@two'; +$add_arr = imap_rfc822_parse_adrlist($adds, 'example.com'); +var_export($add_arr); + +?> +--EXPECT-- +array ( + 0 => + stdClass::__set_state(array( + 'mailbox' => 'iane', + 'host' => 'example.ac.uk', + 'personal' => 'ian eiloart', + )), + 1 => + stdClass::__set_state(array( + 'mailbox' => 'shuf6', + 'host' => 'example.ac.uk', + )), + 2 => + stdClass::__set_state(array( + 'mailbox' => 'blobby', + 'host' => 'example.com', + )), + 3 => + stdClass::__set_state(array( + 'mailbox' => 'ian', + 'host' => 'example.ac.uk', + 'personal' => 'ian,eiloart', + )), + 4 => + stdClass::__set_state(array( + 'mailbox' => 'foo', + 'host' => 'example.ac.uk', + 'adl' => '@example.com', + )), + 5 => + stdClass::__set_state(array( + 'mailbox' => 'foo', + 'host' => '#', + )), + 6 => + stdClass::__set_state(array( + 'mailbox' => 'ian', + 'host' => '-example.com', + )), + 7 => + stdClass::__set_state(array( + 'mailbox' => 'ian', + 'host' => 'one', + )), + 8 => + stdClass::__set_state(array( + 'mailbox' => 'UNEXPECTED_DATA_AFTER_ADDRESS', + 'host' => '.SYNTAX-ERROR.', + )), +) +Notice: Unknown: Unexpected characters at end of address: @two (errflg=3) in Unknown on line 0 |