mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 19:38:26 +00:00
Test to smtp send rcpt.
This commit is contained in:
parent
e280a7cc5d
commit
56a3ecf6a6
1 changed files with 44 additions and 2 deletions
|
@ -16,7 +16,7 @@
|
||||||
* @since CakePHP(tm) v 2.0.0
|
* @since CakePHP(tm) v 2.0.0
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
App::import('Lib', array('email/AbstractTransport', 'email/SmtpTransport'));
|
App::import('Lib', array('CakeEmail', 'email/AbstractTransport', 'email/SmtpTransport'));
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Help to test SmtpTransport
|
* Help to test SmtpTransport
|
||||||
|
@ -46,13 +46,23 @@ class SmtpTestTransport extends SmtpTransport {
|
||||||
/**
|
/**
|
||||||
* Helper to change the config attribute
|
* Helper to change the config attribute
|
||||||
*
|
*
|
||||||
* @param array config
|
* @param array $config
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
public function setConfig($config) {
|
public function setConfig($config) {
|
||||||
$this->_config = array_merge($this->_config, $config);
|
$this->_config = array_merge($this->_config, $config);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Helper to change the CakeEmail
|
||||||
|
*
|
||||||
|
* @param object $cakeEmail
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function setCakeEmail($cakeEmail) {
|
||||||
|
$this->_cakeEmail = $cakeEmail;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Disabled the socket change
|
* Disabled the socket change
|
||||||
*
|
*
|
||||||
|
@ -179,4 +189,36 @@ class StmpProtocolTest extends CakeTestCase {
|
||||||
$this->SmtpTransport->auth();
|
$this->SmtpTransport->auth();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* testRcpt method
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function testRcpt() {
|
||||||
|
$email = new CakeEmail();
|
||||||
|
$email->from('noreply@cakephp.org', 'CakePHP Test');
|
||||||
|
$email->to('cake@cakephp.org', 'CakePHP');
|
||||||
|
$email->bcc('phpnut@cakephp.org');
|
||||||
|
$email->cc(array('mark@cakephp.org' => 'Mark Story', 'juan@cakephp.org' => 'Juan Basso'));
|
||||||
|
|
||||||
|
$this->socket->expects($this->at(0))->method('write')->with("MAIL FROM:<noreply@cakephp.org>\r\n");
|
||||||
|
$this->socket->expects($this->at(1))->method('read')->will($this->returnValue(false));
|
||||||
|
$this->socket->expects($this->at(2))->method('read')->will($this->returnValue("250 OK\r\n"));
|
||||||
|
$this->socket->expects($this->at(3))->method('write')->with("RCPT TO:<cake@cakephp.org>\r\n");
|
||||||
|
$this->socket->expects($this->at(4))->method('read')->will($this->returnValue(false));
|
||||||
|
$this->socket->expects($this->at(5))->method('read')->will($this->returnValue("250 OK\r\n"));
|
||||||
|
$this->socket->expects($this->at(6))->method('write')->with("RCPT TO:<mark@cakephp.org>\r\n");
|
||||||
|
$this->socket->expects($this->at(7))->method('read')->will($this->returnValue(false));
|
||||||
|
$this->socket->expects($this->at(8))->method('read')->will($this->returnValue("250 OK\r\n"));
|
||||||
|
$this->socket->expects($this->at(9))->method('write')->with("RCPT TO:<juan@cakephp.org>\r\n");
|
||||||
|
$this->socket->expects($this->at(10))->method('read')->will($this->returnValue(false));
|
||||||
|
$this->socket->expects($this->at(11))->method('read')->will($this->returnValue("250 OK\r\n"));
|
||||||
|
$this->socket->expects($this->at(12))->method('write')->with("RCPT TO:<phpnut@cakephp.org>\r\n");
|
||||||
|
$this->socket->expects($this->at(13))->method('read')->will($this->returnValue(false));
|
||||||
|
$this->socket->expects($this->at(14))->method('read')->will($this->returnValue("250 OK\r\n"));
|
||||||
|
|
||||||
|
$this->SmtpTransport->setCakeEmail($email);
|
||||||
|
$this->SmtpTransport->sendRcpt();
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
Loading…
Reference in a new issue