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:
phpnut 2007-06-26 04:28:24 +00:00
parent 32ac42c055
commit 40a47a5e90
3 changed files with 39 additions and 14 deletions

View file

@ -1,10 +1,31 @@
<?php <?php
/* SVN FILE: $Id$ */ /* 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'; require_once LIBS . '/controller/components/email.php';
class EmailTestController extends Controller { class EmailTestController extends Controller {
@ -17,20 +38,24 @@ class EmailTest extends CakeTestCase {
var $name = 'Email'; var $name = 'Email';
function setUp() { function setUp() {
$this->Controller =& new Controller(); $this->Controller =& new EmailTestController();
$this->Controller->_initComponents();
$this->View =& new View($this->Controller); restore_error_handler();
ClassRegistry::addObject('view', $this->View); @$this->Controller->_initComponents();
set_error_handler('simpleTestErrorHandler');
$this->Controller->Email->startup($this->Controller);
ClassRegistry::addObject('view', new View($this->Controller));
} }
function testConstruction() { function testConstruction() {
$this->assertTrue(is_object($this->Email)); $this->assertTrue(is_object($this->Controller->Email));
} }
function testBadSmtpSent() { function testBadSmtpSent() {
$this->Controller->Email->smtpOptions['host'] = 'caketest.com'; $this->Controller->Email->smtpOptions['host'] = 'caketest.com';
$this->Controller->Email->delivery = 'smtp'; $this->Controller->Email->delivery = 'smtp';
$this->assertFalse($this->Email->send('This should not work')); $this->assertFalse($this->Controller->Email->send('This should not work'));
} }
} }
?> ?>