Skip to content

Commit

Permalink
Adding tests for testSendDebug
Browse files Browse the repository at this point in the history
  • Loading branch information
jperras committed Aug 10, 2009
1 parent 73e6597 commit cddfd71
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion cake/tests/cases/libs/controller/components/email.test.php
Expand Up @@ -532,14 +532,26 @@ function testSendDebug() {
$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
*
Expand Down

0 comments on commit cddfd71

Please sign in to comment.