2016-09-08 15:37:43 +05:30
|
|
|
<?php
|
2019-02-21 01:28:52 +05:30
|
|
|
namespace api\tests\functional\sessionserver;
|
2016-09-08 15:37:43 +05:30
|
|
|
|
2019-02-21 01:28:52 +05:30
|
|
|
use api\tests\_pages\SessionServerRoute;
|
|
|
|
use api\tests\functional\_steps\SessionServerSteps;
|
|
|
|
use api\tests\FunctionalTester;
|
2021-03-03 19:34:42 +05:30
|
|
|
use Codeception\Example;
|
2019-12-21 04:56:06 +05:30
|
|
|
use function Ramsey\Uuid\v4;
|
2016-09-08 15:37:43 +05:30
|
|
|
|
|
|
|
class ProfileCest {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var SessionServerRoute
|
|
|
|
*/
|
|
|
|
private $route;
|
|
|
|
|
|
|
|
public function _before(FunctionalTester $I) {
|
|
|
|
$this->route = new SessionServerRoute($I);
|
|
|
|
}
|
|
|
|
|
2021-03-03 19:34:42 +05:30
|
|
|
/**
|
|
|
|
* @example ["df936908-b2e1-544d-96f8-2977ec213022"]
|
|
|
|
* @example ["df936908b2e1544d96f82977ec213022"]
|
|
|
|
*/
|
|
|
|
public function getProfile(SessionServerSteps $I, Example $case) {
|
2016-09-08 15:37:43 +05:30
|
|
|
$I->wantTo('get info about player textures by uuid');
|
2021-03-03 19:34:42 +05:30
|
|
|
$this->route->profile($case[0]);
|
2016-09-08 15:37:43 +05:30
|
|
|
$I->canSeeValidTexturesResponse('Admin', 'df936908b2e1544d96f82977ec213022');
|
|
|
|
}
|
|
|
|
|
2021-03-03 19:34:42 +05:30
|
|
|
public function getProfileWithSignedTextures(SessionServerSteps $I) {
|
|
|
|
$I->wantTo('get info about player textures by uuid');
|
|
|
|
$this->route->profile('df936908b2e1544d96f82977ec213022', true);
|
|
|
|
$I->canSeeValidTexturesResponse('Admin', 'df936908b2e1544d96f82977ec213022', true);
|
2016-09-08 15:37:43 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
public function directCallWithoutUuidPart(FunctionalTester $I) {
|
|
|
|
$I->wantTo('call profile route without passing uuid');
|
|
|
|
$this->route->profile('');
|
|
|
|
$I->canSeeResponseCodeIs(404);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function callWithInvalidUuid(FunctionalTester $I) {
|
|
|
|
$I->wantTo('call profile route with invalid uuid string');
|
|
|
|
$this->route->profile('bla-bla-bla');
|
|
|
|
$I->canSeeResponseCodeIs(400);
|
|
|
|
$I->canSeeResponseIsJson();
|
|
|
|
$I->canSeeResponseContainsJson([
|
|
|
|
'error' => 'IllegalArgumentException',
|
|
|
|
'errorMessage' => 'Invalid uuid format.',
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getProfileWithNonexistentUuid(FunctionalTester $I) {
|
|
|
|
$I->wantTo('get info about nonexistent uuid');
|
2019-12-21 04:56:06 +05:30
|
|
|
$this->route->profile(v4());
|
2020-12-18 15:42:34 +05:30
|
|
|
$I->canSeeResponseCodeIs(204);
|
|
|
|
$I->canSeeResponseEquals('');
|
2016-09-08 15:37:43 +05:30
|
|
|
}
|
|
|
|
|
2020-06-12 02:57:02 +05:30
|
|
|
public function getProfileOfAccountMarkedForDeletion(FunctionalTester $I) {
|
|
|
|
$this->route->profile('6383de63-8f85-4ed5-92b7-5401a1fa68cd');
|
2020-12-18 15:42:34 +05:30
|
|
|
$I->canSeeResponseCodeIs(204);
|
|
|
|
$I->canSeeResponseEquals('');
|
2020-06-12 02:57:02 +05:30
|
|
|
}
|
|
|
|
|
2016-09-08 15:37:43 +05:30
|
|
|
}
|