8398c9048d
code was modified slightly, so the code differs from the original downloadable 1.9.5 version
139 lines
4.2 KiB
PHP
139 lines
4.2 KiB
PHP
<?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-2009 Zend Technologies USA Inc. (http://www.zend.com)
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
* @version $Id: MessageTest.php 17363 2009-08-03 07:40:18Z bkarwin $
|
|
*/
|
|
|
|
/**
|
|
* Zend_Mime_Message
|
|
*/
|
|
require_once 'Zend/Mime/Message.php';
|
|
|
|
/**
|
|
* PHPUnit test case
|
|
*/
|
|
require_once 'PHPUnit/Framework/TestCase.php';
|
|
|
|
/**
|
|
* @category Zend
|
|
* @package Zend_Mime
|
|
* @subpackage UnitTests
|
|
* @copyright Copyright (c) 2005-2009 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->assertType('Zend_Mime', $m);
|
|
|
|
$msg = new Zend_Mime_Message(); // No Parts
|
|
$mime = new Zend_Mime('1234');
|
|
$msg->setMime($mime);
|
|
$m2 = $msg->getMime();
|
|
$this->assertType('Zend_Mime', $m2);
|
|
$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);
|
|
}
|
|
}
|