mirror of
https://github.com/elyby/accounts.git
synced 2024-12-05 04:58:56 +05:30
29 lines
745 B
PHP
29 lines
745 B
PHP
<?php
|
|
namespace api\tests\functional\accounts;
|
|
|
|
use api\tests\_pages\AccountsRoute;
|
|
use api\tests\FunctionalTester;
|
|
|
|
class TwoFactorAuthCredentialsCest {
|
|
|
|
/**
|
|
* @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');
|
|
}
|
|
|
|
}
|