2013-12-02 19:25:21 +08:00
|
|
|
<?php
|
|
|
|
|
2019-01-28 04:30:35 +08:00
|
|
|
namespace tests\unit\models;
|
2013-12-02 19:25:21 +08:00
|
|
|
|
2019-04-23 20:31:43 +08:00
|
|
|
use app\models\ContactForm;
|
|
|
|
use yii\mail\MessageInterface;
|
|
|
|
|
2016-07-16 09:13:51 +08:00
|
|
|
class ContactFormTest extends \Codeception\Test\Unit
|
2013-12-17 07:27:33 +08:00
|
|
|
{
|
2016-07-19 08:43:26 +08:00
|
|
|
/**
|
|
|
|
* @var \UnitTester
|
|
|
|
*/
|
|
|
|
public $tester;
|
2014-03-16 12:46:16 +08:00
|
|
|
|
2016-07-16 09:13:51 +08:00
|
|
|
public function testEmailIsSentOnContact()
|
2014-03-16 12:46:16 +08:00
|
|
|
{
|
2020-11-16 21:22:10 +08:00
|
|
|
$model = new ContactForm();
|
2014-03-16 12:46:16 +08:00
|
|
|
|
2020-11-16 21:22:10 +08:00
|
|
|
$model->attributes = [
|
2014-03-16 12:46:16 +08:00
|
|
|
'name' => 'Tester',
|
|
|
|
'email' => 'tester@example.com',
|
|
|
|
'subject' => 'very important letter subject',
|
|
|
|
'body' => 'body of current message',
|
2020-11-16 21:22:10 +08:00
|
|
|
'verifyCode' => 'testme',
|
2014-03-16 12:46:16 +08:00
|
|
|
];
|
|
|
|
|
2022-02-25 22:58:50 +08:00
|
|
|
verify($model->contact('admin@example.com'))->notEmpty();
|
2014-03-16 12:46:16 +08:00
|
|
|
|
2016-07-19 08:43:26 +08:00
|
|
|
// using Yii2 module actions to check email was sent
|
|
|
|
$this->tester->seeEmailIsSent();
|
2014-03-16 12:46:16 +08:00
|
|
|
|
2019-04-23 20:31:43 +08:00
|
|
|
/** @var MessageInterface $emailMessage */
|
2016-07-19 08:43:26 +08:00
|
|
|
$emailMessage = $this->tester->grabLastSentEmail();
|
2022-02-25 22:58:50 +08:00
|
|
|
verify($emailMessage)->instanceOf('yii\mail\MessageInterface');
|
|
|
|
verify($emailMessage->getTo())->arrayHasKey('admin@example.com');
|
|
|
|
verify($emailMessage->getFrom())->arrayHasKey('noreply@example.com');
|
|
|
|
verify($emailMessage->getReplyTo())->arrayHasKey('tester@example.com');
|
|
|
|
verify($emailMessage->getSubject())->equals('very important letter subject');
|
|
|
|
verify($emailMessage->toString())->stringContainsString('body of current message');
|
2014-03-16 12:46:16 +08:00
|
|
|
}
|
2013-12-02 19:25:21 +08:00
|
|
|
}
|