mirror of
https://github.com/elyby/accounts.git
synced 2024-11-10 23:42:09 +05:30
37 lines
918 B
PHP
37 lines
918 B
PHP
<?php
|
|
namespace tests\codeception\api\functional;
|
|
|
|
use Codeception\Scenario;
|
|
use Codeception\Specify;
|
|
use tests\codeception\api\_pages\AccountsRoute;
|
|
use tests\codeception\api\functional\_steps\AccountSteps;
|
|
use tests\codeception\api\FunctionalTester;
|
|
|
|
class AccountsCurrentCest {
|
|
|
|
/**
|
|
* @var AccountsRoute
|
|
*/
|
|
private $route;
|
|
|
|
public function _before(FunctionalTester $I) {
|
|
$this->route = new AccountsRoute($I);
|
|
}
|
|
|
|
public function testCurrent(FunctionalTester $I, Scenario $scenario) {
|
|
$I = new AccountSteps($scenario);
|
|
$I->loggedInAsActiveAccount();
|
|
|
|
$this->route->current();
|
|
$I->canSeeResponseCodeIs(200);
|
|
$I->canSeeResponseIsJson();
|
|
$I->canSeeResponseContainsJson([
|
|
'id' => 1,
|
|
'username' => 'Admin',
|
|
'email' => 'admin@ely.by',
|
|
'shouldChangePassword' => false,
|
|
]);
|
|
}
|
|
|
|
}
|