2007-06-25 21:18:18 +00:00
|
|
|
<?php
|
|
|
|
/* SVN FILE: $Id$ */
|
|
|
|
/**
|
2007-06-26 04:28:24 +00:00
|
|
|
* 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>
|
2008-01-01 22:18:17 +00:00
|
|
|
* Copyright 2005-2008, Cake Software Foundation, Inc.
|
2007-06-26 04:28:24 +00:00
|
|
|
* 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
|
2008-01-01 22:18:17 +00:00
|
|
|
* @copyright Copyright 2005-2008, Cake Software Foundation, Inc.
|
2007-06-26 04:28:24 +00:00
|
|
|
* @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
|
2007-06-25 21:18:18 +00:00
|
|
|
*/
|
2007-07-08 01:17:57 +00:00
|
|
|
uses('controller' . DS . 'components' . DS .'email');
|
2007-06-25 21:18:18 +00:00
|
|
|
|
|
|
|
class EmailTestController extends Controller {
|
|
|
|
var $name = 'EmailTest';
|
|
|
|
var $uses = null;
|
|
|
|
var $components = array('Email');
|
|
|
|
}
|
|
|
|
|
|
|
|
class EmailTest extends CakeTestCase {
|
|
|
|
var $name = 'Email';
|
|
|
|
|
|
|
|
function setUp() {
|
2007-06-26 04:28:24 +00:00
|
|
|
$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));
|
2007-06-25 21:18:18 +00:00
|
|
|
}
|
|
|
|
|
2007-06-27 15:12:48 +00:00
|
|
|
function testBadSmtpSend() {
|
2007-07-25 04:38:28 +00:00
|
|
|
if (@fsockopen('localhost', 25)) {
|
2007-07-08 02:03:52 +00:00
|
|
|
$this->Controller->Email->smtpOptions['host'] = 'blah';
|
2008-05-23 05:11:41 +00:00
|
|
|
$this->Controller->Email->delivery = 'smtp';
|
2007-07-08 02:03:52 +00:00
|
|
|
$this->assertFalse($this->Controller->Email->send('Should not work'));
|
|
|
|
} else {
|
2007-07-08 02:53:23 +00:00
|
|
|
$this->skipUnless(@fsockopen('localhost', 25), 'Must be able to connect to localhost port 25');
|
2007-07-08 02:03:52 +00:00
|
|
|
}
|
2007-06-27 15:12:48 +00:00
|
|
|
}
|
|
|
|
|
2007-06-26 20:29:38 +00:00
|
|
|
function testSmtpSend() {
|
2007-07-25 04:38:28 +00:00
|
|
|
if (@fsockopen('localhost', 25)) {
|
2007-07-08 02:03:52 +00:00
|
|
|
$this->assertTrue(@fsockopen('localhost', 25), "Local mail server is running");
|
|
|
|
$this->Controller->Email->reset();
|
|
|
|
$this->Controller->Email->to = 'chartjes@localhost';
|
|
|
|
$this->Controller->Email->subject = 'Cake SMTP test';
|
|
|
|
$this->Controller->Email->replyTo = 'noreply@example.com';
|
|
|
|
$this->Controller->Email->from = 'noreply@example.com';
|
|
|
|
$this->Controller->Email->delivery = 'smtp';
|
|
|
|
$this->Controller->Email->template = null;
|
|
|
|
$this->assertTrue($this->Controller->Email->send("This is the body of the message"));
|
|
|
|
}
|
2007-06-25 21:18:18 +00:00
|
|
|
}
|
|
|
|
}
|
2007-10-28 04:18:18 +00:00
|
|
|
?>
|