mirror of
https://github.com/elyby/accounts.git
synced 2024-12-25 22:59:53 +05:30
57d492da8a
* start updating to PHP 8.3
* taking off!
Co-authored-by: ErickSkrauch <erickskrauch@yandex.ru>
Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
* dropped this
Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
* migrate to symfonymailer
Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
* this is so stupid 😭
Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
* ah, free, at last.
Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
* oh, Gabriel.
Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
* now dawns thy reckoning.
Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
* and thy gore shall GLISTEN before the temples of man.
Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
* creature of steel.
Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
* my gratitude upon thee for my freedom.
Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
* but the crimes thy kind has committed against humanity
Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
* Upgrade PHP-CS-Fixer and do fix the codebase
* First review round (maybe I have broken something)
* are NOT forgotten.
Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
* Enable parallel PHP-CS-Fixer runner
* PHPStan level 1
* PHPStan level 2
* PHPStan level 3
* PHPStan level 4
* PHPStan level 5
* Levels 6 and 7 takes too much effort. Generate a baseline and fix them eventually
* Resolve TODO's related to the php-mock
* Drastically reduce baseline size with the Rector
* More code modernization with help of the Rector
* Update GitLab CI
---------
Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
Co-authored-by: ErickSkrauch <erickskrauch@yandex.ru>
131 lines
5.3 KiB
PHP
131 lines
5.3 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace api\tests\unit\modules\oauth\models;
|
|
|
|
use api\modules\oauth\models\OauthClientForm;
|
|
use api\modules\oauth\models\OauthClientTypeForm;
|
|
use api\tests\unit\TestCase;
|
|
use common\models\OauthClient;
|
|
use common\tasks\ClearOauthSessions;
|
|
|
|
class OauthClientFormTest extends TestCase {
|
|
|
|
public function testSave(): void {
|
|
$client = $this->createPartialMock(OauthClient::class, ['save']);
|
|
$client->method('save')->willReturn(true);
|
|
$client->account_id = 1;
|
|
$client->type = OauthClient::TYPE_APPLICATION;
|
|
$client->name = 'Test application';
|
|
|
|
$form = $this->createPartialMock(OauthClientForm::class, ['getClient', 'isClientExists']);
|
|
$form->method('getClient')->willReturn($client);
|
|
$form->expects($this->exactly(3))->method('isClientExists')->willReturnOnConsecutiveCalls(true, true, false);
|
|
|
|
$requestType = $this->createMock(OauthClientTypeForm::class);
|
|
$requestType->expects($this->once())->method('validate')->willReturn(true);
|
|
$requestType->expects($this->once())->method('applyToClient')->with($client);
|
|
|
|
$this->assertTrue($form->save($requestType));
|
|
$this->assertSame('test-application2', $client->id);
|
|
$this->assertNotNull($client->secret);
|
|
$this->assertSame(64, mb_strlen($client->secret));
|
|
}
|
|
|
|
public function testSaveUpdateExistsModel(): void {
|
|
$client = $this->createPartialMock(OauthClient::class, ['save']);
|
|
$client->method('save')->willReturn(true);
|
|
$client->setIsNewRecord(false);
|
|
$client->id = 'application-id';
|
|
$client->secret = 'application_secret';
|
|
$client->account_id = 1;
|
|
$client->type = OauthClient::TYPE_APPLICATION;
|
|
$client->name = 'Application name';
|
|
$client->description = 'Application description';
|
|
$client->redirect_uri = 'http://example.com/oauth/ely';
|
|
$client->website_url = 'http://example.com';
|
|
|
|
$form = $this->createPartialMock(OauthClientForm::class, ['getClient', 'isClientExists']);
|
|
$form->method('getClient')->willReturn($client);
|
|
$form->method('isClientExists')->willReturn(false);
|
|
|
|
$request = new class implements OauthClientTypeForm {
|
|
public function load($data): bool {
|
|
return true;
|
|
}
|
|
|
|
public function validate(): bool {
|
|
return true;
|
|
}
|
|
|
|
public function getValidationErrors(): array {
|
|
return [];
|
|
}
|
|
|
|
public function applyToClient(OauthClient $client): void {
|
|
$client->name = 'New name';
|
|
$client->description = 'New description.';
|
|
}
|
|
};
|
|
|
|
$this->assertTrue($form->save($request));
|
|
$this->assertSame('application-id', $client->id);
|
|
$this->assertSame('application_secret', $client->secret);
|
|
$this->assertSame('New name', $client->name);
|
|
$this->assertSame('New description.', $client->description);
|
|
$this->assertSame('http://example.com/oauth/ely', $client->redirect_uri);
|
|
$this->assertSame('http://example.com', $client->website_url);
|
|
}
|
|
|
|
public function testDelete(): void {
|
|
$client = $this->createPartialMock(OauthClient::class, ['save']);
|
|
$client->method('save')->willReturn(true);
|
|
$client->id = 'mocked-id';
|
|
$client->type = OauthClient::TYPE_APPLICATION;
|
|
|
|
$form = new OauthClientForm($client);
|
|
$this->assertTrue($form->delete());
|
|
$this->assertTrue($form->getClient()->is_deleted);
|
|
/** @var ClearOauthSessions $job */
|
|
$job = $this->tester->grabLastQueuedJob();
|
|
$this->assertInstanceOf(ClearOauthSessions::class, $job);
|
|
$this->assertSame('mocked-id', $job->clientId);
|
|
$this->assertNull($job->notSince);
|
|
}
|
|
|
|
public function testReset(): void {
|
|
$client = $this->createPartialMock(OauthClient::class, ['save']);
|
|
$client->method('save')->willReturn(true);
|
|
$client->id = 'mocked-id';
|
|
$client->secret = 'initial_secret';
|
|
$client->type = OauthClient::TYPE_APPLICATION;
|
|
|
|
$form = new OauthClientForm($client);
|
|
$this->assertTrue($form->reset());
|
|
$this->assertSame('initial_secret', $form->getClient()->secret);
|
|
/** @var ClearOauthSessions $job */
|
|
$job = $this->tester->grabLastQueuedJob();
|
|
$this->assertInstanceOf(ClearOauthSessions::class, $job);
|
|
$this->assertSame('mocked-id', $job->clientId);
|
|
$this->assertEqualsWithDelta(time(), $job->notSince, 2);
|
|
}
|
|
|
|
public function testResetWithSecret(): void {
|
|
$client = $this->createPartialMock(OauthClient::class, ['save']);
|
|
$client->method('save')->willReturn(true);
|
|
$client->id = 'mocked-id';
|
|
$client->secret = 'initial_secret';
|
|
$client->type = OauthClient::TYPE_APPLICATION;
|
|
|
|
$form = new OauthClientForm($client);
|
|
$this->assertTrue($form->reset(true));
|
|
$this->assertNotSame('initial_secret', $form->getClient()->secret);
|
|
/** @var ClearOauthSessions $job */
|
|
$job = $this->tester->grabLastQueuedJob();
|
|
$this->assertInstanceOf(ClearOauthSessions::class, $job);
|
|
$this->assertSame('mocked-id', $job->clientId);
|
|
$this->assertEqualsWithDelta(time(), $job->notSince, 2);
|
|
}
|
|
|
|
}
|