mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 19:38:26 +00:00
542 lines
17 KiB
PHP
542 lines
17 KiB
PHP
<?php
|
|
/**
|
|
* CakeEmailTest file
|
|
*
|
|
* PHP 5
|
|
*
|
|
* CakePHP(tm) Tests <http://book.cakephp.org/view/1196/Testing>
|
|
* Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
|
*
|
|
* Licensed under The MIT License
|
|
* Redistributions of files must retain the above copyright notice
|
|
*
|
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
|
* @link http://book.cakephp.org/view/1196/Testing CakePHP(tm) Tests
|
|
* @package cake.tests.cases.libs
|
|
* @since CakePHP(tm) v 2.0.0
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
|
*/
|
|
App::uses('CakeEmail', 'Network');
|
|
|
|
/**
|
|
* Help to test CakeEmail
|
|
*
|
|
*/
|
|
class TestCakeEmail extends CakeEmail {
|
|
|
|
/**
|
|
* Config
|
|
*
|
|
*/
|
|
protected $_config = array();
|
|
|
|
/**
|
|
* Wrap to protected method
|
|
*
|
|
*/
|
|
public function formatAddress($address) {
|
|
return parent::_formatAddress($address);
|
|
}
|
|
|
|
/**
|
|
* Wrap to protected method
|
|
*
|
|
*/
|
|
public function wrap($text) {
|
|
return parent::_wrap($text);
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* Debug transport email
|
|
*
|
|
*/
|
|
class DebugTransport extends AbstractTransport {
|
|
|
|
/**
|
|
* Last email body
|
|
*
|
|
* @var string
|
|
*/
|
|
public static $lastEmail = '';
|
|
|
|
/**
|
|
* Last email header
|
|
*
|
|
* @var string
|
|
*/
|
|
public static $lastHeader = '';
|
|
|
|
/**
|
|
* Include addresses in header
|
|
*
|
|
* @var boolean
|
|
*/
|
|
public static $includeAddresses = false;
|
|
|
|
/**
|
|
* Send
|
|
*
|
|
* @param object $email CakeEmail
|
|
* @return boolean
|
|
*/
|
|
public function send(CakeEmail $email) {
|
|
self::$lastEmail = implode("\r\n", $email->message());
|
|
$options = array();
|
|
if (self::$includeAddresses) {
|
|
$options = array_fill_keys(array('from', 'replyTo', 'readReceipt', 'returnPath', 'to', 'cc', 'bcc'), true);
|
|
}
|
|
self::$lastHeader = $this->_headersToString($email->getHeaders($options));
|
|
return true;
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* CakeEmailTest class
|
|
*
|
|
* @package cake.tests.cases.libs
|
|
*/
|
|
class CakeEmailTest extends CakeTestCase {
|
|
|
|
/**
|
|
* setUp
|
|
*
|
|
* @return void
|
|
*/
|
|
public function setUp() {
|
|
parent::setUp();
|
|
$this->CakeEmail = new TestCakeEmail();
|
|
|
|
App::build(array(
|
|
'views' => array(LIBS . 'tests' . DS . 'test_app' . DS . 'View'. DS)
|
|
));
|
|
}
|
|
|
|
/**
|
|
* tearDown method
|
|
*
|
|
* @return void
|
|
*/
|
|
function tearDown() {
|
|
parent::tearDown();
|
|
App::build();
|
|
}
|
|
|
|
/**
|
|
* testFrom method
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testFrom() {
|
|
$this->assertIdentical($this->CakeEmail->from(), array());
|
|
|
|
$this->CakeEmail->from('cake@cakephp.org');
|
|
$expected = array('cake@cakephp.org' => 'cake@cakephp.org');
|
|
$this->assertIdentical($this->CakeEmail->from(), $expected);
|
|
|
|
$this->CakeEmail->from(array('cake@cakephp.org'));
|
|
$this->assertIdentical($this->CakeEmail->from(), $expected);
|
|
|
|
$this->CakeEmail->from('cake@cakephp.org', 'CakePHP');
|
|
$expected = array('cake@cakephp.org' => 'CakePHP');
|
|
$this->assertIdentical($this->CakeEmail->from(), $expected);
|
|
|
|
$this->CakeEmail->from(array('cake@cakephp.org' => 'CakePHP'));
|
|
$this->assertIdentical($this->CakeEmail->from(), $expected);
|
|
}
|
|
|
|
/**
|
|
* testTo method
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testTo() {
|
|
$this->assertIdentical($this->CakeEmail->to(), array());
|
|
|
|
$this->CakeEmail->to('cake@cakephp.org');
|
|
$expected = array('cake@cakephp.org' => 'cake@cakephp.org');
|
|
$this->assertIdentical($this->CakeEmail->to(), $expected);
|
|
|
|
$this->CakeEmail->to('cake@cakephp.org', 'CakePHP');
|
|
$expected = array('cake@cakephp.org' => 'CakePHP');
|
|
$this->assertIdentical($this->CakeEmail->to(), $expected);
|
|
|
|
$list = array(
|
|
'cake@cakephp.org' => 'Cake PHP',
|
|
'cake-php@googlegroups.com' => 'Cake Groups',
|
|
'root@cakephp.org'
|
|
);
|
|
$this->CakeEmail->to($list);
|
|
$expected = array(
|
|
'cake@cakephp.org' => 'Cake PHP',
|
|
'cake-php@googlegroups.com' => 'Cake Groups',
|
|
'root@cakephp.org' => 'root@cakephp.org'
|
|
);
|
|
$this->assertIdentical($this->CakeEmail->to(), $expected);
|
|
|
|
$this->CakeEmail->addTo('jrbasso@cakephp.org');
|
|
$this->CakeEmail->addTo('mark_story@cakephp.org', 'Mark Story');
|
|
$this->CakeEmail->addTo(array('phpnut@cakephp.org' => 'PhpNut', 'jose_zap@cakephp.org'));
|
|
$expected = array(
|
|
'cake@cakephp.org' => 'Cake PHP',
|
|
'cake-php@googlegroups.com' => 'Cake Groups',
|
|
'root@cakephp.org' => 'root@cakephp.org',
|
|
'jrbasso@cakephp.org' => 'jrbasso@cakephp.org',
|
|
'mark_story@cakephp.org' => 'Mark Story',
|
|
'phpnut@cakephp.org' => 'PhpNut',
|
|
'jose_zap@cakephp.org' => 'jose_zap@cakephp.org'
|
|
);
|
|
$this->assertIdentical($this->CakeEmail->to(), $expected);
|
|
}
|
|
|
|
/**
|
|
* Data provider function for testBuildInvalidData
|
|
*
|
|
* @return array
|
|
*/
|
|
public static function invalidEmails() {
|
|
return array(
|
|
array(1.0),
|
|
array(''),
|
|
array('string'),
|
|
array('<tag>'),
|
|
array('some@one.whereis'),
|
|
array(array('ok@cakephp.org', 1.0, '', 'string'))
|
|
);
|
|
}
|
|
|
|
/**
|
|
* testBuildInvalidData
|
|
*
|
|
* @dataProvider invalidEmails
|
|
* @expectedException SocketException
|
|
* @return void
|
|
*/
|
|
public function testInvalidEmail($value) {
|
|
$this->CakeEmail->to($value);
|
|
}
|
|
|
|
/**
|
|
* testFormatAddress method
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testFormatAddress() {
|
|
$result = $this->CakeEmail->formatAddress(array('cake@cakephp.org' => 'cake@cakephp.org'));
|
|
$expected = array('cake@cakephp.org');
|
|
$this->assertIdentical($result, $expected);
|
|
|
|
$result = $this->CakeEmail->formatAddress(array('cake@cakephp.org' => 'cake@cakephp.org', 'php@cakephp.org' => 'php@cakephp.org'));
|
|
$expected = array('cake@cakephp.org', 'php@cakephp.org');
|
|
$this->assertIdentical($result, $expected);
|
|
|
|
$result = $this->CakeEmail->formatAddress(array('cake@cakephp.org' => 'CakePHP', 'php@cakephp.org' => 'Cake'));
|
|
$expected = array('CakePHP <cake@cakephp.org>', 'Cake <php@cakephp.org>');
|
|
$this->assertIdentical($result, $expected);
|
|
|
|
$result = $this->CakeEmail->formatAddress(array('cake@cakephp.org' => 'ÄÖÜTest'));
|
|
$expected = array('=?UTF-8?B?w4TDlsOcVGVzdA==?= <cake@cakephp.org>');
|
|
$this->assertIdentical($result, $expected);
|
|
}
|
|
|
|
/**
|
|
* testAddresses method
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testAddresses() {
|
|
$this->CakeEmail->reset();
|
|
$this->CakeEmail->from('cake@cakephp.org', 'CakePHP');
|
|
$this->CakeEmail->replyTo('replyto@cakephp.org', 'ReplyTo CakePHP');
|
|
$this->CakeEmail->readReceipt('readreceipt@cakephp.org', 'ReadReceipt CakePHP');
|
|
$this->CakeEmail->returnPath('returnpath@cakephp.org', 'ReturnPath CakePHP');
|
|
$this->CakeEmail->to('to@cakephp.org', 'To CakePHP');
|
|
$this->CakeEmail->cc('cc@cakephp.org', 'Cc CakePHP');
|
|
$this->CakeEmail->bcc('bcc@cakephp.org', 'Bcc CakePHP');
|
|
$this->CakeEmail->addTo('to2@cakephp.org', 'To2 CakePHP');
|
|
$this->CakeEmail->addCc('cc2@cakephp.org', 'Cc2 CakePHP');
|
|
$this->CakeEmail->addBcc('bcc2@cakephp.org', 'Bcc2 CakePHP');
|
|
|
|
$this->assertIdentical($this->CakeEmail->from(), array('cake@cakephp.org' => 'CakePHP'));
|
|
$this->assertIdentical($this->CakeEmail->replyTo(), array('replyto@cakephp.org' => 'ReplyTo CakePHP'));
|
|
$this->assertIdentical($this->CakeEmail->readReceipt(), array('readreceipt@cakephp.org' => 'ReadReceipt CakePHP'));
|
|
$this->assertIdentical($this->CakeEmail->returnPath(), array('returnpath@cakephp.org' => 'ReturnPath CakePHP'));
|
|
$this->assertIdentical($this->CakeEmail->to(), array('to@cakephp.org' => 'To CakePHP', 'to2@cakephp.org' => 'To2 CakePHP'));
|
|
$this->assertIdentical($this->CakeEmail->cc(), array('cc@cakephp.org' => 'Cc CakePHP', 'cc2@cakephp.org' => 'Cc2 CakePHP'));
|
|
$this->assertIdentical($this->CakeEmail->bcc(), array('bcc@cakephp.org' => 'Bcc CakePHP', 'bcc2@cakephp.org' => 'Bcc2 CakePHP'));
|
|
|
|
$headers = $this->CakeEmail->getHeaders(array_fill_keys(array('from', 'replyTo', 'readReceipt', 'returnPath', 'to', 'cc', 'bcc'), true));
|
|
$this->assertIdentical($headers['From'], 'CakePHP <cake@cakephp.org>');
|
|
$this->assertIdentical($headers['Reply-To'], 'ReplyTo CakePHP <replyto@cakephp.org>');
|
|
$this->assertIdentical($headers['Disposition-Notification-To'], 'ReadReceipt CakePHP <readreceipt@cakephp.org>');
|
|
$this->assertIdentical($headers['Return-Path'], 'ReturnPath CakePHP <returnpath@cakephp.org>');
|
|
$this->assertIdentical($headers['To'], 'To CakePHP <to@cakephp.org>, To2 CakePHP <to2@cakephp.org>');
|
|
$this->assertIdentical($headers['Cc'], 'Cc CakePHP <cc@cakephp.org>, Cc2 CakePHP <cc2@cakephp.org>');
|
|
$this->assertIdentical($headers['Bcc'], 'Bcc CakePHP <bcc@cakephp.org>, Bcc2 CakePHP <bcc2@cakephp.org>');
|
|
}
|
|
|
|
/**
|
|
* testMessageId method
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testMessageId() {
|
|
$this->CakeEmail->messageId(true);
|
|
$result = $this->CakeEmail->getHeaders();
|
|
$this->assertTrue(isset($result['Message-ID']));
|
|
|
|
$this->CakeEmail->messageId(false);
|
|
$result = $this->CakeEmail->getHeaders();
|
|
$this->assertFalse(isset($result['Message-ID']));
|
|
|
|
$this->CakeEmail->messageId('<my-email@localhost>');
|
|
$result = $this->CakeEmail->getHeaders();
|
|
$this->assertIdentical($result['Message-ID'], '<my-email@localhost>');
|
|
}
|
|
|
|
/**
|
|
* testMessageIdInvalid method
|
|
*
|
|
* @return void
|
|
* @expectedException SocketException
|
|
*/
|
|
public function testMessageIdInvalid() {
|
|
$this->CakeEmail->messageId('my-email@localhost');
|
|
}
|
|
|
|
/**
|
|
* testSubject method
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testSubject() {
|
|
$this->CakeEmail->subject('You have a new message.');
|
|
$this->assertIdentical($this->CakeEmail->subject(), 'You have a new message.');
|
|
|
|
$this->CakeEmail->subject(1);
|
|
$this->assertIdentical($this->CakeEmail->subject(), '1');
|
|
|
|
$this->CakeEmail->subject(array('something'));
|
|
$this->assertIdentical($this->CakeEmail->subject(), 'Array');
|
|
}
|
|
|
|
/**
|
|
* testHeaders method
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testHeaders() {
|
|
$this->CakeEmail->messageId(false);
|
|
$this->CakeEmail->setHeaders(array('X-Something' => 'nice'));
|
|
$expected = array(
|
|
'X-Something' => 'nice',
|
|
'X-Mailer' => 'CakePHP Email Component',
|
|
'Date' => date(DATE_RFC2822),
|
|
'Content-Type' => 'text/plain; charset=UTF-8',
|
|
'Content-Transfer-Encoding' => '7bit'
|
|
);
|
|
$this->assertIdentical($this->CakeEmail->getHeaders(), $expected);
|
|
|
|
$this->CakeEmail->addHeaders(array('X-Something' => 'very nice', 'X-Other' => 'cool'));
|
|
$expected = array(
|
|
'X-Something' => 'very nice',
|
|
'X-Other' => 'cool',
|
|
'X-Mailer' => 'CakePHP Email Component',
|
|
'Date' => date(DATE_RFC2822),
|
|
'Content-Type' => 'text/plain; charset=UTF-8',
|
|
'Content-Transfer-Encoding' => '7bit'
|
|
);
|
|
$this->assertIdentical($this->CakeEmail->getHeaders(), $expected);
|
|
|
|
$this->CakeEmail->from('cake@cakephp.org');
|
|
$this->assertIdentical($this->CakeEmail->getHeaders(), $expected);
|
|
|
|
$expected = array(
|
|
'From' => 'cake@cakephp.org',
|
|
'X-Something' => 'very nice',
|
|
'X-Other' => 'cool',
|
|
'X-Mailer' => 'CakePHP Email Component',
|
|
'Date' => date(DATE_RFC2822),
|
|
'Content-Type' => 'text/plain; charset=UTF-8',
|
|
'Content-Transfer-Encoding' => '7bit'
|
|
);
|
|
$this->assertIdentical($this->CakeEmail->getHeaders(array('from' => true)), $expected);
|
|
|
|
$this->CakeEmail->from('cake@cakephp.org', 'CakePHP');
|
|
$expected['From'] = 'CakePHP <cake@cakephp.org>';
|
|
$this->assertIdentical($this->CakeEmail->getHeaders(array('from' => true)), $expected);
|
|
|
|
$this->CakeEmail->to(array('cake@cakephp.org', 'php@cakephp.org' => 'CakePHP'));
|
|
$expected = array(
|
|
'From' => 'CakePHP <cake@cakephp.org>',
|
|
'To' => 'cake@cakephp.org, CakePHP <php@cakephp.org>',
|
|
'X-Something' => 'very nice',
|
|
'X-Other' => 'cool',
|
|
'X-Mailer' => 'CakePHP Email Component',
|
|
'Date' => date(DATE_RFC2822),
|
|
'Content-Type' => 'text/plain; charset=UTF-8',
|
|
'Content-Transfer-Encoding' => '7bit'
|
|
);
|
|
$this->assertIdentical($this->CakeEmail->getHeaders(array('from' => true, 'to' => true)), $expected);
|
|
}
|
|
|
|
/**
|
|
* testAttachments
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testAttachments() {
|
|
$this->CakeEmail->attachments(WWW_ROOT . 'index.php');
|
|
$expected = array('index.php' => WWW_ROOT . 'index.php');
|
|
$this->assertIdentical($this->CakeEmail->attachments(), $expected);
|
|
|
|
$this->CakeEmail->attachments(array());
|
|
$this->assertIdentical($this->CakeEmail->attachments(), array());
|
|
|
|
$this->CakeEmail->attachments(WWW_ROOT . 'index.php');
|
|
$this->CakeEmail->addAttachments(WWW_ROOT . 'test.php');
|
|
$this->CakeEmail->addAttachments(array(WWW_ROOT . 'test.php'));
|
|
$this->CakeEmail->addAttachments(array('other.txt' => WWW_ROOT . 'test.php', 'ht' => WWW_ROOT . '.htaccess'));
|
|
$expected = array(
|
|
'index.php' => WWW_ROOT . 'index.php',
|
|
'test.php' => WWW_ROOT . 'test.php',
|
|
'other.txt' => WWW_ROOT . 'test.php',
|
|
'ht' => WWW_ROOT . '.htaccess'
|
|
);
|
|
$this->assertIdentical($this->CakeEmail->attachments(), $expected);
|
|
}
|
|
|
|
/**
|
|
* testSendWithContent method
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testSendWithContent() {
|
|
$this->CakeEmail->reset();
|
|
$this->CakeEmail->transport('debug');
|
|
DebugTransport::$includeAddresses = false;
|
|
|
|
$this->CakeEmail->from('cake@cakephp.org');
|
|
$this->CakeEmail->to(array('you@cakephp.org' => 'You'));
|
|
$this->CakeEmail->subject('My title');
|
|
$this->CakeEmail->config(array('empty'));
|
|
$result = $this->CakeEmail->send("Here is my body, with multi lines.\nThis is the second line.\r\n\r\nAnd the last.");
|
|
|
|
$this->assertTrue($result);
|
|
$expected = "Here is my body, with multi lines.\r\nThis is the second line.\r\n\r\nAnd the last.\r\n\r\n";
|
|
$this->assertIdentical(DebugTransport::$lastEmail, $expected);
|
|
$this->assertTrue((bool)strpos(DebugTransport::$lastHeader, 'Date: '));
|
|
$this->assertTrue((bool)strpos(DebugTransport::$lastHeader, 'Message-ID: '));
|
|
$this->assertFalse(strpos(DebugTransport::$lastHeader, 'To: '));
|
|
|
|
DebugTransport::$includeAddresses = true;
|
|
$this->CakeEmail->send("Other body");
|
|
$this->assertIdentical(DebugTransport::$lastEmail, "Other body\r\n\r\n");
|
|
$this->assertTrue((bool)strpos(DebugTransport::$lastHeader, 'Message-ID: '));
|
|
$this->assertTrue((bool)strpos(DebugTransport::$lastHeader, 'To: '));
|
|
}
|
|
|
|
/**
|
|
* testSendRender method
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testSendRender() {
|
|
$this->CakeEmail->reset();
|
|
$this->CakeEmail->transport('debug');
|
|
DebugTransport::$includeAddresses = true;
|
|
|
|
$this->CakeEmail->from('cake@cakephp.org');
|
|
$this->CakeEmail->to(array('you@cakephp.org' => 'You'));
|
|
$this->CakeEmail->subject('My title');
|
|
$this->CakeEmail->config(array('empty'));
|
|
$this->CakeEmail->layout('default', 'default');
|
|
$result = $this->CakeEmail->send();
|
|
|
|
$this->assertTrue((bool)strpos(DebugTransport::$lastEmail, 'This email was sent using the CakePHP Framework'));
|
|
$this->assertTrue((bool)strpos(DebugTransport::$lastHeader, 'Message-ID: '));
|
|
$this->assertTrue((bool)strpos(DebugTransport::$lastHeader, 'To: '));
|
|
}
|
|
|
|
/**
|
|
* testReset method
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testReset() {
|
|
$this->CakeEmail->to('cake@cakephp.org');
|
|
$this->assertIdentical($this->CakeEmail->to(), array('cake@cakephp.org' => 'cake@cakephp.org'));
|
|
|
|
$this->CakeEmail->reset();
|
|
$this->assertIdentical($this->CakeEmail->to(), array());
|
|
}
|
|
|
|
/**
|
|
* testWrap method
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testWrap() {
|
|
$text = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ac turpis orci, non commodo odio. Morbi nibh nisi, vehicula pellentesque accumsan amet.';
|
|
$result = $this->CakeEmail->wrap($text);
|
|
$expected = array(
|
|
'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ac turpis orci,',
|
|
'non commodo odio. Morbi nibh nisi, vehicula pellentesque accumsan amet.',
|
|
''
|
|
);
|
|
$this->assertIdentical($result, $expected);
|
|
|
|
$text = 'Lorem ipsum dolor sit amet, consectetur < adipiscing elit. Donec ac turpis orci, non commodo odio. Morbi nibh nisi, vehicula > pellentesque accumsan amet.';
|
|
$result = $this->CakeEmail->wrap($text);
|
|
$expected = array(
|
|
'Lorem ipsum dolor sit amet, consectetur < adipiscing elit. Donec ac turpis',
|
|
'orci, non commodo odio. Morbi nibh nisi, vehicula > pellentesque accumsan',
|
|
'amet.',
|
|
''
|
|
);
|
|
$this->assertIdentical($result, $expected);
|
|
|
|
$text = '<p>Lorem ipsum dolor sit amet,<br> consectetur adipiscing elit.<br> Donec ac turpis orci, non <b>commodo</b> odio. <br /> Morbi nibh nisi, vehicula pellentesque accumsan amet.<hr></p>';
|
|
$result = $this->CakeEmail->wrap($text);
|
|
$expected = array(
|
|
'<p>Lorem ipsum dolor sit amet,<br> consectetur adipiscing elit.<br> Donec ac',
|
|
'turpis orci, non <b>commodo</b> odio. <br /> Morbi nibh nisi, vehicula',
|
|
'pellentesque accumsan amet.<hr></p>',
|
|
''
|
|
);
|
|
$this->assertIdentical($result, $expected);
|
|
|
|
$text = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ac <a href="http://cakephp.org">turpis</a> orci, non commodo odio. Morbi nibh nisi, vehicula pellentesque accumsan amet.';
|
|
$result = $this->CakeEmail->wrap($text);
|
|
$expected = array(
|
|
'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ac',
|
|
'<a href="http://cakephp.org">turpis</a> orci, non commodo odio. Morbi nibh',
|
|
'nisi, vehicula pellentesque accumsan amet.',
|
|
''
|
|
);
|
|
$this->assertIdentical($result, $expected);
|
|
|
|
$text = 'Lorem ipsum <a href="http://www.cakephp.org/controller/action/param1/param2" class="nice cool fine amazing awesome">ok</a>';
|
|
$result = $this->CakeEmail->wrap($text);
|
|
$expected = array(
|
|
'Lorem ipsum',
|
|
'<a href="http://www.cakephp.org/controller/action/param1/param2" class="nice cool fine amazing awesome">',
|
|
'ok</a>',
|
|
''
|
|
);
|
|
$this->assertIdentical($result, $expected);
|
|
|
|
$text = 'Lorem ipsum withonewordverybigMorethanthelineshouldsizeofrfcspecificationbyieeeavailableonieeesite ok.';
|
|
$result = $this->CakeEmail->wrap($text);
|
|
$expected = array(
|
|
'Lorem ipsum',
|
|
'withonewordverybigMorethanthelineshouldsizeofrfcspecificationbyieeeavailableonieeesite',
|
|
'ok.',
|
|
''
|
|
);
|
|
$this->assertIdentical($result, $expected);
|
|
}
|
|
|
|
}
|