1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace site\tests\unit\models; |
4
|
|
|
|
5
|
|
|
use Yii; |
6
|
|
|
use \site\models\PasswordResetRequestForm; |
7
|
|
|
use \yii\base\InvalidArgumentException; |
8
|
|
|
|
9
|
|
|
class PasswordResetRequestFormTest extends \Codeception\Test\Unit { |
10
|
|
|
use \Codeception\Specify; |
11
|
|
|
|
12
|
|
|
public function testRulesShouldValidate() { |
13
|
|
|
$user = $this->getUser(); |
14
|
|
|
$form = new PasswordResetRequestForm($user); |
15
|
|
|
|
16
|
|
|
$form->attributes = []; |
17
|
|
|
expect('with no values, the form should not pass validation', $this->assertFalse($form->validate())); |
|
|
|
|
18
|
|
|
$form->attributes = ['email' => null]; |
19
|
|
|
expect('the form should not validate if the email is not provided', $this->assertFalse($form->validate())); |
|
|
|
|
20
|
|
|
$form->attributes = ['email' => '1']; |
21
|
|
|
expect('the form should not validate if the email is not a valid format', $this->assertFalse($form->validate())); |
|
|
|
|
22
|
|
|
$form->attributes = ['email' => ' [email protected] ']; |
23
|
|
|
expect('the form should validate', $this->assertTrue($form->validate())); |
|
|
|
|
24
|
|
|
expect('the form should lowercase and trim the provided email', $this->assertEquals($form->email, '[email protected]')); |
|
|
|
|
25
|
|
|
} |
26
|
|
|
|
27
|
|
|
public function testSendEmail() { |
28
|
|
|
$user = $this->getUser(); |
29
|
|
|
$user->generatePasswordResetToken(); |
|
|
|
|
30
|
|
|
|
31
|
|
|
$user->isGuest = false; |
|
|
|
|
32
|
|
|
$user |
33
|
|
|
->expects($this->once()) |
34
|
|
|
->method('isTokenCurrent') |
35
|
|
|
->willReturn(true); |
36
|
|
|
|
37
|
|
|
$user |
38
|
|
|
->expects($this->once()) |
39
|
|
|
->method('save') |
40
|
|
|
->willReturn(true); |
41
|
|
|
|
42
|
|
|
$form = new PasswordResetRequestForm($user); |
43
|
|
|
|
44
|
|
|
$form->attributes = [ |
45
|
|
|
'email' => ' [email protected] ', |
46
|
|
|
]; |
47
|
|
|
|
48
|
|
|
$form->validate(); |
49
|
|
|
$form->sendEmail(); |
50
|
|
|
|
51
|
|
|
$this->tester->seeEmailIsSent(); |
|
|
|
|
52
|
|
|
$emailMessage = $this->tester->grabLastSentEmail(); |
53
|
|
|
expect('valid email is sent', $emailMessage)->isInstanceOf('yii\mail\MessageInterface'); |
54
|
|
|
expect($emailMessage->getTo())->hasKey('[email protected]'); |
55
|
|
|
expect($emailMessage->getFrom())->hasKey(Yii::$app->params['supportEmail']); |
56
|
|
|
expect($emailMessage->getSubject())->equals('Password reset for ' . \Yii::$app->name); |
57
|
|
|
expect($emailMessage->toString())->contains('Follow the link below to reset your password'); |
58
|
|
|
} |
59
|
|
|
|
60
|
|
|
private function getUser() { |
61
|
|
|
$user = $this->getmockbuilder('\common\models\user') |
62
|
|
|
->disableoriginalconstructor() |
63
|
|
|
->setmethods(['getisnewrecord', 'attributes', 'save', 'generatepasswordresettoken', 'istokencurrent']) |
64
|
|
|
->getmock(); |
65
|
|
|
$user->method('attributes')->willReturn([ |
|
|
|
|
66
|
|
|
'isGuest', |
67
|
|
|
'email', |
68
|
|
|
'password', |
69
|
|
|
'password_reset_token', |
70
|
|
|
'password_hash', |
71
|
|
|
]); |
72
|
|
|
return $user; |
73
|
|
|
} |
74
|
|
|
} |
75
|
|
|
|
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.