1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace site\tests\unit\models; |
4
|
|
|
|
5
|
|
|
use Yii; |
6
|
|
|
use \site\models\ContactForm; |
7
|
|
|
|
8
|
|
|
class ContactFormTest extends \Codeception\Test\Unit { |
9
|
|
|
|
10
|
|
|
public function testRules() { |
11
|
|
|
$form = new ContactForm(); |
12
|
|
|
|
13
|
|
|
$form->attributes = []; |
14
|
|
|
expect('with no values, the form should not pass validation', $this->assertFalse($form->validate())); |
|
|
|
|
15
|
|
|
|
16
|
|
|
$form->attributes = [ |
17
|
|
|
'name' => 'Corey', |
18
|
|
|
'email' => 'not_an-email', |
19
|
|
|
'subject' => 'a question', |
20
|
|
|
'body' => 'hello there' |
21
|
|
|
]; |
22
|
|
|
expect('with a value that is not an email, the form should not pass validation', $this->assertFalse($form->validate())); |
|
|
|
|
23
|
|
|
$form->attributes = [ |
24
|
|
|
'name' => 'Corey', |
25
|
|
|
'email' => ' [email protected] ', |
26
|
|
|
'subject' => 'a question', |
27
|
|
|
'body' => 'hello there' |
28
|
|
|
]; |
29
|
|
|
expect('with a valid email, the form should pass validation', $this->assertTrue($form->validate())); |
|
|
|
|
30
|
|
|
} |
31
|
|
|
|
32
|
|
|
public function testSendEmail() { |
33
|
|
|
$form = new ContactForm(); |
34
|
|
|
|
35
|
|
|
$form->attributes = [ |
36
|
|
|
'name' => 'Corey', |
37
|
|
|
'email' => ' [email protected] ', |
38
|
|
|
'subject' => 'a question', |
39
|
|
|
'body' => 'hello there' |
40
|
|
|
]; |
41
|
|
|
|
42
|
|
|
$form->validate(); |
43
|
|
|
$form->sendEmail('[email protected]'); |
44
|
|
|
|
45
|
|
|
$this->tester->seeEmailIsSent(); |
|
|
|
|
46
|
|
|
$emailMessage = $this->tester->grabLastSentEmail(); |
47
|
|
|
expect('valid email is sent', $emailMessage)->isInstanceOf('yii\mail\MessageInterface'); |
48
|
|
|
expect($emailMessage->getTo())->hasKey('[email protected]'); |
49
|
|
|
expect($emailMessage->getFrom())->hasKey('[email protected]'); |
50
|
|
|
expect($emailMessage->getSubject())->equals('[FSA Contact] a question'); |
51
|
|
|
expect($emailMessage->toString())->contains('hello there'); |
52
|
|
|
} |
53
|
|
|
} |
54
|
|
|
|
55
|
|
|
|
This check looks for function or method calls that always return null and whose return value is used.
The method
getObject()
can return nothing but null, so it makes no sense to use the return value.The reason is most likely that a function or method is imcomplete or has been reduced for debug purposes.