mirror of
https://github.com/elyby/accounts.git
synced 2024-10-30 15:33:21 +05:30
0dbbb2e0de
Реорганизованы объекты Pages для Functional тестов Исправлены не переименованные тесты, оставшиеся после последнего рефакторинга
29 lines
780 B
PHP
29 lines
780 B
PHP
<?php
|
|
namespace tests\codeception\api\functional;
|
|
|
|
use tests\codeception\api\_pages\AccountsRoute;
|
|
use tests\codeception\api\FunctionalTester;
|
|
|
|
class AccountsTwoFactorAuthCredentialsCest {
|
|
|
|
/**
|
|
* @var AccountsRoute
|
|
*/
|
|
private $route;
|
|
|
|
public function _before(FunctionalTester $I) {
|
|
$this->route = new AccountsRoute($I);
|
|
}
|
|
|
|
public function testGetCredentials(FunctionalTester $I) {
|
|
$accountId = $I->amAuthenticated();
|
|
$this->route->getTwoFactorAuthCredentials($accountId);
|
|
$I->canSeeResponseCodeIs(200);
|
|
$I->canSeeResponseIsJson();
|
|
$I->canSeeResponseJsonMatchesJsonPath('$.secret');
|
|
$I->canSeeResponseJsonMatchesJsonPath('$.uri');
|
|
$I->canSeeResponseJsonMatchesJsonPath('$.qr');
|
|
}
|
|
|
|
}
|