2011-06-17 22:21:31 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* DebugTransportTest 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
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Test.Case.Network.Email
|
2011-06-17 22:21:31 +00:00
|
|
|
* @since CakePHP(tm) v 2.0.0
|
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
|
|
|
*/
|
|
|
|
App::uses('CakeEmail', 'Network/Email');
|
2011-08-29 09:38:01 +00:00
|
|
|
App::uses('AbstractTransport', 'Network/Email');
|
|
|
|
App::uses('DebugTransport', 'Network/Email');
|
2011-08-29 09:39:08 +00:00
|
|
|
|
2011-06-17 22:21:31 +00:00
|
|
|
/**
|
|
|
|
* Test case
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
class DebugTransportTest extends CakeTestCase {
|
|
|
|
|
2011-08-29 09:38:01 +00:00
|
|
|
/**
|
|
|
|
* Setup
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function setUp() {
|
|
|
|
$this->DebugTransport = new DebugTransport();
|
|
|
|
}
|
2011-06-17 22:21:31 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* testSend method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testSend() {
|
|
|
|
$this->getMock('CakeEmail', array('message'), array(), 'DebugCakeEmail');
|
2011-08-29 09:38:01 +00:00
|
|
|
$email = new DebugCakeEmail();
|
2011-06-17 22:21:31 +00:00
|
|
|
$email->from('noreply@cakephp.org', 'CakePHP Test');
|
|
|
|
$email->to('cake@cakephp.org', 'CakePHP');
|
|
|
|
$email->cc(array('mark@cakephp.org' => 'Mark Story', 'juan@cakephp.org' => 'Juan Basso'));
|
|
|
|
$email->bcc('phpnut@cakephp.org');
|
|
|
|
$email->messageID('<4d9946cf-0a44-4907-88fe-1d0ccbdd56cb@localhost>');
|
|
|
|
$email->subject('Testing Message');
|
|
|
|
$email->expects($this->any())->method('message')->will($this->returnValue(array('First Line', 'Second Line', '')));
|
|
|
|
|
2011-08-26 00:31:18 +00:00
|
|
|
$headers = "From: CakePHP Test <noreply@cakephp.org>\r\n";
|
|
|
|
$headers .= "To: CakePHP <cake@cakephp.org>\r\n";
|
|
|
|
$headers .= "Cc: Mark Story <mark@cakephp.org>, Juan Basso <juan@cakephp.org>\r\n";
|
|
|
|
$headers .= "Bcc: phpnut@cakephp.org\r\n";
|
|
|
|
$headers .= "X-Mailer: CakePHP Email\r\n";
|
|
|
|
$headers .= "Date: " . date(DATE_RFC2822) . "\r\n";
|
|
|
|
$headers .= "Message-ID: <4d9946cf-0a44-4907-88fe-1d0ccbdd56cb@localhost>\r\n";
|
|
|
|
$headers .= "Subject: Testing Message\r\n";
|
|
|
|
$headers .= "MIME-Version: 1.0\r\n";
|
|
|
|
$headers .= "Content-Type: text/plain; charset=UTF-8\r\n";
|
|
|
|
$headers .= "Content-Transfer-Encoding: 7bit";
|
|
|
|
|
2011-08-29 09:38:01 +00:00
|
|
|
$data = "First Line\r\n";
|
|
|
|
$data .= "Second Line\r\n";
|
2011-06-17 22:21:31 +00:00
|
|
|
|
2011-08-29 09:38:01 +00:00
|
|
|
$result = $this->DebugTransport->send($email);
|
2011-08-26 00:31:18 +00:00
|
|
|
|
|
|
|
$this->assertEquals($headers, $result['headers']);
|
|
|
|
$this->assertEquals($data, $result['message']);
|
2011-06-17 22:21:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|