8398c9048d
code was modified slightly, so the code differs from the original downloadable 1.9.5 version
83 lines
2.6 KiB
PHP
83 lines
2.6 KiB
PHP
<?php
|
|
/**
|
|
* Zend Framework
|
|
*
|
|
* LICENSE
|
|
*
|
|
* This source file is subject to the new BSD license that is bundled
|
|
* with this package in the file LICENSE.txt.
|
|
* It is also available through the world-wide-web at this URL:
|
|
* http://framework.zend.com/license/new-bsd
|
|
* If you did not receive a copy of the license and are unable to
|
|
* obtain it through the world-wide-web, please send an email
|
|
* to license@zend.com so we can send you a copy immediately.
|
|
*
|
|
* @category Zend
|
|
* @package Zend_Mail
|
|
* @subpackage UnitTests
|
|
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
* @version $Id: SmtpTest.php 17363 2009-08-03 07:40:18Z bkarwin $
|
|
*/
|
|
|
|
/**
|
|
* Zend_Mail_Protocol_Smtp
|
|
*/
|
|
require_once 'Zend/Mail/Protocol/Smtp.php';
|
|
|
|
|
|
/**
|
|
* Zend_Mail_Transport_Smtp
|
|
*/
|
|
require_once 'Zend/Mail/Transport/Smtp.php';
|
|
|
|
|
|
/**
|
|
* PHPUnit test case
|
|
*/
|
|
require_once 'PHPUnit/Framework/TestCase.php';
|
|
|
|
/**
|
|
* @category Zend
|
|
* @package Zend_Mail
|
|
* @subpackage UnitTests
|
|
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
* @group Zend_Mail
|
|
*/
|
|
class Zend_Mail_SmtpTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
protected $_params;
|
|
protected $_transport;
|
|
protected $_connection;
|
|
|
|
public function setUp()
|
|
{
|
|
$this->_params = array('host' => TESTS_ZEND_MAIL_SMTP_HOST,
|
|
'port' => TESTS_ZEND_MAIL_SMTP_PORT,
|
|
'username' => TESTS_ZEND_MAIL_SMTP_USER,
|
|
'password' => TESTS_ZEND_MAIL_SMTP_PASSWORD,
|
|
'auth' => TESTS_ZEND_MAIL_SMTP_AUTH);
|
|
}
|
|
|
|
public function testTransportSetup()
|
|
{
|
|
try {
|
|
$this->_transport = new Zend_Mail_Transport_Smtp($this->_params['host'], $this->_params);
|
|
} catch (Exception $e) {
|
|
$this->fail('exception raised while creating smtp transport');
|
|
}
|
|
|
|
try {
|
|
$this->_connection = new Zend_Mail_Protocol_Smtp($this->_params['host'], $this->_params['port']);
|
|
$this->_transport->setConnection($this->_connection);
|
|
} catch (Exception $e) {
|
|
$this->fail('exception raised while setting smtp transport connection');
|
|
}
|
|
|
|
$this->_connection = $this->_transport->getConnection();
|
|
if (!($this->_connection instanceof Zend_Mail_Protocol_Abstract)) {
|
|
$this->fail('smtp transport connection is not an instance of protocol abstract');
|
|
}
|
|
}
|
|
}
|