| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- <?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 license@zend.com so we can send you a copy immediately.
- *
- * @category Zend
- * @package Zend_Mime
- * @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$
- */
- /**
- * Zend_Mime_Message
- */
- require_once 'Zend/Mime/Message.php';
- /**
- * @category Zend
- * @package Zend_Mime
- * @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_Mime
- */
- class Zend_Mime_MessageTest extends PHPUnit_Framework_TestCase
- {
- public function testMultiPart()
- {
- $msg = new Zend_Mime_Message(); // No Parts
- $this->assertFalse($msg->isMultiPart());
- }
- public function testSetGetParts()
- {
- $msg = new Zend_Mime_Message(); // No Parts
- $p = $msg->getParts();
- $this->assertTrue(is_array($p));
- $this->assertTrue(count($p) == 0);
- $p2 = array();
- $p2[] = new Zend_Mime_Part('This is a test');
- $p2[] = new Zend_Mime_Part('This is another test');
- $msg->setParts($p2);
- $p = $msg->getParts();
- $this->assertTrue(is_array($p));
- $this->assertTrue(count($p) == 2);
- }
- public function testGetMime()
- {
- $msg = new Zend_Mime_Message(); // No Parts
- $m = $msg->getMime();
- $this->assertTrue($m instanceof Zend_Mime);
- $msg = new Zend_Mime_Message(); // No Parts
- $mime = new Zend_Mime('1234');
- $msg->setMime($mime);
- $m2 = $msg->getMime();
- $this->assertTrue($m2 instanceof Zend_Mime);
- $this->assertEquals('1234', $m2->boundary());
- }
- public function testGenerate()
- {
- $msg = new Zend_Mime_Message(); // No Parts
- $p1 = new Zend_Mime_Part('This is a test');
- $p2 = new Zend_Mime_Part('This is another test');
- $msg->addPart($p1);
- $msg->addPart($p2);
- $res = $msg->generateMessage();
- $mime = $msg->getMime();
- $boundary = $mime->boundary();
- $p1 = strpos($res, $boundary);
- // $boundary must appear once for every mime part
- $this->assertTrue($p1 !== false);
- if ($p1) {
- $p2 = strpos($res, $boundary, $p1 + strlen($boundary));
- $this->assertTrue($p2 !== false);
- }
- // check if the two test messages appear:
- $this->assertTrue(strpos($res, 'This is a test') !== false);
- $this->assertTrue(strpos($res, 'This is another test') !== false);
- // ... more in ZMailTest
- }
- /**
- * check if decoding a string into a Zend_Mime_Message object works
- *
- */
- public function testDecodeMimeMessage()
- {
- $text = <<<EOD
- This is a message in Mime Format. If you see this, your mail reader does not support this format.
- --=_af4357ef34b786aae1491b0a2d14399f
- Content-Type: application/octet-stream
- Content-Transfer-Encoding: 8bit
- This is a test
- --=_af4357ef34b786aae1491b0a2d14399f
- Content-Type: image/gif
- Content-Transfer-Encoding: base64
- Content-ID: <12>
- This is another test
- --=_af4357ef34b786aae1491b0a2d14399f--
- EOD;
- $res = Zend_Mime_Message::createFromMessage($text, '=_af4357ef34b786aae1491b0a2d14399f');
- $parts = $res->getParts();
- $this->assertEquals(2, count($parts));
- $part1 = $parts[0];
- $this->assertEquals('application/octet-stream', $part1->type);
- $this->assertEquals('8bit', $part1->encoding);
- $part2 = $parts[1];
- $this->assertEquals('image/gif', $part2->type);
- $this->assertEquals('base64', $part2->encoding);
- $this->assertEquals('12', $part2->id);
- }
- }
|