Skip to content

Commit 94bfe89

Browse files
developedsoftwareLuke English
and
Luke English
authored
Update to PHP 7.4 and codeception/verify 2.2 (#260)
Co-authored-by: Luke English <[email protected]>
1 parent 60d89fc commit 94bfe89

File tree

8 files changed

+122
-124
lines changed

8 files changed

+122
-124
lines changed

.github/workflows/build.yml

-5
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,6 @@ jobs:
2121
- windows-latest
2222

2323
php:
24-
- "5.6"
25-
- "7.0"
26-
- "7.1"
27-
- "7.2"
28-
- "7.3"
2924
- "7.4"
3025
- "8.0"
3126
- "8.1"

composer.json

+11-8
Original file line numberDiff line numberDiff line change
@@ -14,24 +14,27 @@
1414
},
1515
"minimum-stability": "dev",
1616
"require": {
17-
"php": ">=5.6.0",
17+
"php": ">=7.4.0",
1818
"yiisoft/yii2": "~2.0.14",
1919
"yiisoft/yii2-bootstrap4": "~2.0.0",
20-
"yiisoft/yii2-swiftmailer": "~2.0.0 || ~2.1.0"
20+
"yiisoft/yii2-swiftmailer": "~2.0.0 || ~2.1.0",
21+
"yiisoft/yii2-symfonymailer": "~2.0.3"
2122
},
2223
"require-dev": {
2324
"yiisoft/yii2-debug": "~2.1.0",
2425
"yiisoft/yii2-gii": "~2.2.0",
2526
"yiisoft/yii2-faker": "~2.0.0",
2627
"codeception/codeception": "^4.0",
27-
"codeception/verify": "~0.5.0 || ~1.1.0",
28-
"codeception/specify": "~0.4.6",
29-
"symfony/browser-kit": ">=2.7 <=4.2.4",
30-
"codeception/module-filesystem": "^1.0.0",
31-
"codeception/module-yii2": "^1.0.0",
32-
"codeception/module-asserts": "^1.0.0"
28+
"codeception/module-asserts": "^1.0",
29+
"codeception/module-yii2": "^1.0",
30+
"codeception/module-filesystem": "^1.0",
31+
"codeception/verify": "^2.2",
32+
"symfony/browser-kit": ">=2.7 <=4.2.4"
3333
},
3434
"config": {
35+
"allow-plugins": {
36+
"yiisoft/yii2-composer" : true
37+
},
3538
"process-timeout": 1800,
3639
"fxp-asset": {
3740
"enabled": false

controllers/SiteController.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public function behaviors()
1919
{
2020
return [
2121
'access' => [
22-
'class' => AccessControl::className(),
22+
'class' => AccessControl::class,
2323
'only' => ['logout'],
2424
'rules' => [
2525
[
@@ -30,7 +30,7 @@ public function behaviors()
3030
],
3131
],
3232
'verbs' => [
33-
'class' => VerbFilter::className(),
33+
'class' => VerbFilter::class,
3434
'actions' => [
3535
'logout' => ['post'],
3636
],

tests/unit/models/ContactFormTest.php

+7-7
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,18 @@ public function testEmailIsSentOnContact()
2424
'verifyCode' => 'testme',
2525
];
2626

27-
expect_that($model->contact('[email protected]'));
27+
verify($model->contact('[email protected]'))->notEmpty();
2828

2929
// using Yii2 module actions to check email was sent
3030
$this->tester->seeEmailIsSent();
3131

3232
/** @var MessageInterface $emailMessage */
3333
$emailMessage = $this->tester->grabLastSentEmail();
34-
expect('valid email is sent', $emailMessage)->isInstanceOf('yii\mail\MessageInterface');
35-
expect($emailMessage->getTo())->hasKey('[email protected]');
36-
expect($emailMessage->getFrom())->hasKey('[email protected]');
37-
expect($emailMessage->getReplyTo())->hasKey('[email protected]');
38-
expect($emailMessage->getSubject())->equals('very important letter subject');
39-
expect($emailMessage->toString())->stringContainsString('body of current message');
34+
verify($emailMessage)->instanceOf('yii\mail\MessageInterface');
35+
verify($emailMessage->getTo())->arrayHasKey('[email protected]');
36+
verify($emailMessage->getFrom())->arrayHasKey('[email protected]');
37+
verify($emailMessage->getReplyTo())->arrayHasKey('[email protected]');
38+
verify($emailMessage->getSubject())->equals('very important letter subject');
39+
verify($emailMessage->toString())->stringContainsString('body of current message');
4040
}
4141
}

tests/unit/models/LoginFormTest.php

+8-8
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ public function testLoginNoUser()
2020
'password' => 'not_existing_password',
2121
]);
2222

23-
expect_not($this->model->login());
24-
expect_that(\Yii::$app->user->isGuest);
23+
verify($this->model->login())->false();
24+
verify(\Yii::$app->user->isGuest)->true();
2525
}
2626

2727
public function testLoginWrongPassword()
@@ -31,9 +31,9 @@ public function testLoginWrongPassword()
3131
'password' => 'wrong_password',
3232
]);
3333

34-
expect_not($this->model->login());
35-
expect_that(\Yii::$app->user->isGuest);
36-
expect($this->model->errors)->hasKey('password');
34+
verify($this->model->login())->false();
35+
verify(\Yii::$app->user->isGuest)->true();
36+
verify($this->model->errors)->arrayHasKey('password');
3737
}
3838

3939
public function testLoginCorrect()
@@ -43,9 +43,9 @@ public function testLoginCorrect()
4343
'password' => 'demo',
4444
]);
4545

46-
expect_that($this->model->login());
47-
expect_not(\Yii::$app->user->isGuest);
48-
expect($this->model->errors)->hasntKey('password');
46+
verify($this->model->login())->true();
47+
verify(\Yii::$app->user->isGuest)->false();
48+
verify($this->model->errors)->arrayHasNotKey('password');
4949
}
5050

5151
}

tests/unit/models/UserTest.php

+12-12
Original file line numberDiff line numberDiff line change
@@ -8,24 +8,24 @@ class UserTest extends \Codeception\Test\Unit
88
{
99
public function testFindUserById()
1010
{
11-
expect_that($user = User::findIdentity(100));
12-
expect($user->username)->equals('admin');
11+
verify($user = User::findIdentity(100))->notEmpty();
12+
verify($user->username)->equals('admin');
1313

14-
expect_not(User::findIdentity(999));
14+
verify(User::findIdentity(999))->empty();
1515
}
1616

1717
public function testFindUserByAccessToken()
1818
{
19-
expect_that($user = User::findIdentityByAccessToken('100-token'));
20-
expect($user->username)->equals('admin');
19+
verify($user = User::findIdentityByAccessToken('100-token'))->notEmpty();
20+
verify($user->username)->equals('admin');
2121

22-
expect_not(User::findIdentityByAccessToken('non-existing'));
22+
verify(User::findIdentityByAccessToken('non-existing'))->empty();
2323
}
2424

2525
public function testFindUserByUsername()
2626
{
27-
expect_that($user = User::findByUsername('admin'));
28-
expect_not(User::findByUsername('not-admin'));
27+
verify($user = User::findByUsername('admin'))->notEmpty();
28+
verify(User::findByUsername('not-admin'))->empty();
2929
}
3030

3131
/**
@@ -34,11 +34,11 @@ public function testFindUserByUsername()
3434
public function testValidateUser($user)
3535
{
3636
$user = User::findByUsername('admin');
37-
expect_that($user->validateAuthKey('test100key'));
38-
expect_not($user->validateAuthKey('test102key'));
37+
verify($user->validateAuthKey('test100key'))->notEmpty();
38+
verify($user->validateAuthKey('test102key'))->empty();
3939

40-
expect_that($user->validatePassword('admin'));
41-
expect_not($user->validatePassword('123456'));
40+
verify($user->validatePassword('admin'))->notEmpty();
41+
verify($user->validatePassword('123456'))->empty();
4242
}
4343

4444
}

0 commit comments

Comments
 (0)