oauth2-server/tests/Grant/ClientCredentialsGrantTest.php

64 lines
2.5 KiB
PHP
Raw Permalink Normal View History

2016-02-18 16:19:13 +05:30
<?php
namespace LeagueTests\Grant;
use DateInterval;
2018-05-23 21:04:39 +05:30
use League\OAuth2\Server\CryptKey;
2016-04-09 19:55:45 +05:30
use League\OAuth2\Server\Entities\AccessTokenEntityInterface;
2016-02-18 16:19:13 +05:30
use League\OAuth2\Server\Grant\ClientCredentialsGrant;
use League\OAuth2\Server\Repositories\AccessTokenRepositoryInterface;
use League\OAuth2\Server\Repositories\ClientRepositoryInterface;
2016-03-24 00:20:14 +05:30
use League\OAuth2\Server\Repositories\ScopeRepositoryInterface;
2016-04-09 20:16:40 +05:30
use LeagueTests\Stubs\AccessTokenEntity;
2016-03-15 05:40:47 +05:30
use LeagueTests\Stubs\ClientEntity;
use LeagueTests\Stubs\ScopeEntity;
2016-02-18 16:19:13 +05:30
use LeagueTests\Stubs\StubResponseType;
use PHPUnit\Framework\TestCase;
2016-02-18 16:19:13 +05:30
use Zend\Diactoros\ServerRequest;
class ClientCredentialsGrantTest extends TestCase
2016-02-18 16:19:13 +05:30
{
const DEFAULT_SCOPE = 'basic';
2016-02-18 16:19:13 +05:30
public function testGetIdentifier()
{
$grant = new ClientCredentialsGrant();
$this->assertEquals('client_credentials', $grant->getIdentifier());
}
public function testRespondToRequest()
{
$client = new ClientEntity();
$client->setConfidential();
2016-02-18 16:19:13 +05:30
$clientRepositoryMock = $this->getMockBuilder(ClientRepositoryInterface::class)->getMock();
$clientRepositoryMock->method('getClientEntity')->willReturn($client);
$accessTokenRepositoryMock = $this->getMockBuilder(AccessTokenRepositoryInterface::class)->getMock();
$accessTokenRepositoryMock->method('getNewToken')->willReturn(new AccessTokenEntity());
2016-02-18 16:19:13 +05:30
$accessTokenRepositoryMock->method('persistNewAccessToken')->willReturnSelf();
$scope = new ScopeEntity();
2016-03-24 00:20:14 +05:30
$scopeRepositoryMock = $this->getMockBuilder(ScopeRepositoryInterface::class)->getMock();
$scopeRepositoryMock->method('getScopeEntityByIdentifier')->willReturn($scope);
2016-03-24 00:20:14 +05:30
$scopeRepositoryMock->method('finalizeScopes')->willReturnArgument(0);
2016-02-18 16:19:13 +05:30
$grant = new ClientCredentialsGrant();
$grant->setClientRepository($clientRepositoryMock);
$grant->setAccessTokenRepository($accessTokenRepositoryMock);
2016-03-24 00:20:14 +05:30
$grant->setScopeRepository($scopeRepositoryMock);
$grant->setDefaultScope(self::DEFAULT_SCOPE);
2018-05-23 21:04:39 +05:30
$grant->setPrivateKey(new CryptKey('file://' . __DIR__ . '/../Stubs/private.key'));
2016-02-18 16:19:13 +05:30
$serverRequest = (new ServerRequest())->withParsedBody([
'client_id' => 'foo',
'client_secret' => 'bar',
]);
2016-02-18 16:19:13 +05:30
$responseType = new StubResponseType();
$grant->respondToAccessTokenRequest($serverRequest, $responseType, new DateInterval('PT5M'));
2016-02-20 04:39:39 +05:30
2017-12-07 01:54:42 +05:30
$this->assertInstanceOf(AccessTokenEntityInterface::class, $responseType->getAccessToken());
2016-02-18 16:19:13 +05:30
}
2017-12-07 01:54:42 +05:30
}