mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-19 11:06:15 +00:00
Adding tests for testSendDebug
This commit is contained in:
parent
73e6597379
commit
cddfd71b7d
1 changed files with 13 additions and 1 deletions
|
@ -532,14 +532,26 @@ TEXTBLOC;
|
|||
$this->Controller->EmailTest->reset();
|
||||
$this->Controller->EmailTest->to = 'postmaster@localhost';
|
||||
$this->Controller->EmailTest->from = 'noreply@example.com';
|
||||
$this->Controller->EmailTest->subject = 'Cake SMTP test';
|
||||
$this->Controller->EmailTest->subject = 'Cake Debug Test';
|
||||
$this->Controller->EmailTest->replyTo = 'noreply@example.com';
|
||||
$this->Controller->EmailTest->template = null;
|
||||
|
||||
$this->Controller->EmailTest->delivery = 'debug';
|
||||
$this->assertTrue($this->Controller->EmailTest->send('This is the body of the message'));
|
||||
$result = $this->Controller->Session->read('Message.email.message');
|
||||
|
||||
$this->assertPattern('/To: postmaster@localhost/', $result);
|
||||
$this->assertPattern('/Subject: Cake Debug Test/', $result);
|
||||
$this->assertPattern('/Reply-To: noreply@example.com/', $result);
|
||||
$this->assertPattern('/From: noreply@example.com/', $result);
|
||||
$this->assertPattern('/X-Mailer: CakePHP Email Component/', $result);
|
||||
$this->assertPattern('/Content-Type: text\/plain; charset=UTF-8/', $result);
|
||||
$this->assertPattern('/Content-Transfer-Encoding: 7bitParameters:/', $result);
|
||||
$this->assertPattern('/This is the body of the message/', $result);
|
||||
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* testContentStripping method
|
||||
*
|
||||
|
|
Loading…
Add table
Reference in a new issue