Blame view

tests/codeception/frontend/unit/models/ResetPasswordFormTest.php 1.05 KB
c7f222e2   Artem   first
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
  <?php
  
  namespace tests\codeception\frontend\unit\models;
  
  use tests\codeception\frontend\unit\DbTestCase;
  use tests\codeception\common\fixtures\UserFixture;
  use frontend\models\ResetPasswordForm;
  
  class ResetPasswordFormTest extends DbTestCase
  {
  
      /**
       * @expectedException \yii\base\InvalidParamException
       */
      public function testResetWrongToken()
      {
          new ResetPasswordForm('notexistingtoken_1391882543');
      }
  
      /**
       * @expectedException \yii\base\InvalidParamException
       */
      public function testResetEmptyToken()
      {
          new ResetPasswordForm('');
      }
  
      public function testResetCorrectToken()
      {
          $form = new ResetPasswordForm($this->user[0]['password_reset_token']);
          expect('password should be resetted', $form->resetPassword())->true();
      }
  
      public function fixtures()
      {
          return [
              'user' => [
                  'class' => UserFixture::className(),
                  'dataFile' => '@tests/codeception/frontend/unit/fixtures/data/models/user.php'
              ],
          ];
      }
  
  }