mirror of
https://github.com/elyby/accounts.git
synced 2025-01-12 06:52:04 +05:30
48 lines
1.2 KiB
PHP
48 lines
1.2 KiB
PHP
<?php
|
|
namespace api\tests\functional\accounts;
|
|
|
|
use api\rbac\Permissions as P;
|
|
use api\tests\_pages\AccountsRoute;
|
|
use api\tests\functional\_steps\OauthSteps;
|
|
use api\tests\FunctionalTester;
|
|
|
|
class BanCest {
|
|
|
|
/**
|
|
* @var AccountsRoute
|
|
*/
|
|
private $route;
|
|
|
|
public function _before(FunctionalTester $I) {
|
|
$this->route = new AccountsRoute($I);
|
|
}
|
|
|
|
public function testBanAccount(OauthSteps $I) {
|
|
$accessToken = $I->getAccessTokenByClientCredentialsGrant([P::BLOCK_ACCOUNT]);
|
|
$I->amBearerAuthenticated($accessToken);
|
|
|
|
$this->route->ban(1);
|
|
$I->canSeeResponseCodeIs(200);
|
|
$I->canSeeResponseIsJson();
|
|
$I->canSeeResponseContainsJson([
|
|
'success' => true,
|
|
]);
|
|
}
|
|
|
|
public function testBanBannedAccount(OauthSteps $I) {
|
|
$accessToken = $I->getAccessTokenByClientCredentialsGrant([P::BLOCK_ACCOUNT]);
|
|
$I->amBearerAuthenticated($accessToken);
|
|
|
|
$this->route->ban(10);
|
|
$I->canSeeResponseCodeIs(200);
|
|
$I->canSeeResponseIsJson();
|
|
$I->canSeeResponseContainsJson([
|
|
'success' => false,
|
|
'errors' => [
|
|
'account' => 'error.account_already_banned',
|
|
],
|
|
]);
|
|
}
|
|
|
|
}
|