mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-31 08:58:25 +00:00
Correcting session errors in EmailTest test case
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@5348 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
32ac42c055
commit
40a47a5e90
3 changed files with 39 additions and 14 deletions
|
@ -1,10 +1,31 @@
|
|||
<?php
|
||||
/* SVN FILE: $Id$ */
|
||||
|
||||
/**
|
||||
* Series of tests for email component
|
||||
* Series of tests for email component.
|
||||
*
|
||||
* Long description for file
|
||||
*
|
||||
* PHP versions 4 and 5
|
||||
*
|
||||
* CakePHP(tm) Tests <https://trac.cakephp.org/wiki/Developement/TestSuite>
|
||||
* Copyright 2005-2007, Cake Software Foundation, Inc.
|
||||
* 1785 E. Sahara Avenue, Suite 490-204
|
||||
* Las Vegas, Nevada 89104
|
||||
*
|
||||
* Licensed under The Open Group Test Suite License
|
||||
* Redistributions of files must retain the above copyright notice.
|
||||
*
|
||||
* @filesource
|
||||
* @copyright Copyright 2005-2007, Cake Software Foundation, Inc.
|
||||
* @link https://trac.cakephp.org/wiki/Developement/TestSuite CakePHP(tm) Tests
|
||||
* @package cake
|
||||
* @subpackage cake.cake.tests.cases.libs.controller.components
|
||||
* @since CakePHP(tm) v 1.2.0.5347
|
||||
* @version $Revision$
|
||||
* @modifiedby $LastChangedBy$
|
||||
* @lastmodified $Date$
|
||||
* @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
|
||||
*/
|
||||
|
||||
require_once LIBS . '/controller/components/email.php';
|
||||
|
||||
class EmailTestController extends Controller {
|
||||
|
@ -17,20 +38,24 @@ class EmailTest extends CakeTestCase {
|
|||
var $name = 'Email';
|
||||
|
||||
function setUp() {
|
||||
$this->Controller =& new Controller();
|
||||
$this->Controller->_initComponents();
|
||||
$this->View =& new View($this->Controller);
|
||||
ClassRegistry::addObject('view', $this->View);
|
||||
$this->Controller =& new EmailTestController();
|
||||
|
||||
restore_error_handler();
|
||||
@$this->Controller->_initComponents();
|
||||
set_error_handler('simpleTestErrorHandler');
|
||||
|
||||
$this->Controller->Email->startup($this->Controller);
|
||||
ClassRegistry::addObject('view', new View($this->Controller));
|
||||
}
|
||||
|
||||
function testConstruction() {
|
||||
$this->assertTrue(is_object($this->Email));
|
||||
$this->assertTrue(is_object($this->Controller->Email));
|
||||
}
|
||||
|
||||
function testBadSmtpSent() {
|
||||
$this->Controller->Email->smtpOptions['host'] = 'caketest.com';
|
||||
$this->Controller->Email->delivery = 'smtp';
|
||||
$this->assertFalse($this->Email->send('This should not work'));
|
||||
$this->assertFalse($this->Controller->Email->send('This should not work'));
|
||||
}
|
||||
}
|
||||
?>
|
Loading…
Add table
Reference in a new issue