mirror of
https://github.com/elyby/accounts.git
synced 2024-11-06 16:21:08 +05:30
39 lines
1.4 KiB
PHP
39 lines
1.4 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace api\tests\unit\components\OAuth2\Entities;
|
|
|
|
use api\components\OAuth2\Entities\AccessTokenEntity;
|
|
use api\tests\unit\TestCase;
|
|
use DateTimeImmutable;
|
|
use League\OAuth2\Server\Entities\ClientEntityInterface;
|
|
use League\OAuth2\Server\Entities\ScopeEntityInterface;
|
|
|
|
class AccessTokenEntityTest extends TestCase {
|
|
|
|
public function testToString() {
|
|
/** @var ClientEntityInterface|\PHPUnit\Framework\MockObject\MockObject $client */
|
|
$client = $this->createMock(ClientEntityInterface::class);
|
|
$client->method('getIdentifier')->willReturn('mockClientId');
|
|
|
|
$entity = new AccessTokenEntity();
|
|
$entity->setClient($client);
|
|
$entity->setExpiryDateTime(new DateTimeImmutable());
|
|
$entity->addScope($this->createScopeEntity('first'));
|
|
$entity->addScope($this->createScopeEntity('second'));
|
|
|
|
$token = (string)$entity;
|
|
$payloads = json_decode(base64_decode(explode('.', $token)[1]), true);
|
|
$this->assertSame('first second', $payloads['scope']);
|
|
}
|
|
|
|
private function createScopeEntity(string $id): ScopeEntityInterface {
|
|
/** @var ScopeEntityInterface|\PHPUnit\Framework\MockObject\MockObject $entity */
|
|
$entity = $this->createMock(ScopeEntityInterface::class);
|
|
$entity->method('getIdentifier')->willReturn($id);
|
|
|
|
return $entity;
|
|
}
|
|
|
|
}
|