2016-02-18 16:19:13 +05:30
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace LeagueTests\Grant;
|
|
|
|
|
2016-03-25 18:39:26 +05:30
|
|
|
use League\OAuth2\Server\Entities\AccessTokenEntity;
|
2016-02-18 16:19:13 +05:30
|
|
|
use League\OAuth2\Server\Entities\Interfaces\AccessTokenEntityInterface;
|
|
|
|
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-03-15 05:40:47 +05:30
|
|
|
use LeagueTests\Stubs\ClientEntity;
|
2016-02-18 16:19:13 +05:30
|
|
|
use LeagueTests\Stubs\StubResponseType;
|
|
|
|
use Zend\Diactoros\ServerRequest;
|
|
|
|
|
|
|
|
class ClientCredentialsGrantTest extends \PHPUnit_Framework_TestCase
|
|
|
|
{
|
|
|
|
public function testGetIdentifier()
|
|
|
|
{
|
|
|
|
$grant = new ClientCredentialsGrant();
|
|
|
|
$this->assertEquals('client_credentials', $grant->getIdentifier());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testRespondToRequest()
|
|
|
|
{
|
|
|
|
$client = new ClientEntity();
|
|
|
|
$client->setSecret('bar');
|
|
|
|
$clientRepositoryMock = $this->getMockBuilder(ClientRepositoryInterface::class)->getMock();
|
|
|
|
$clientRepositoryMock->method('getClientEntity')->willReturn($client);
|
|
|
|
|
|
|
|
$accessTokenRepositoryMock = $this->getMockBuilder(AccessTokenRepositoryInterface::class)->getMock();
|
2016-03-25 18:39:26 +05:30
|
|
|
$accessTokenRepositoryMock->method('getNewToken')->willReturn(new AccessTokenEntity());
|
2016-02-18 16:19:13 +05:30
|
|
|
$accessTokenRepositoryMock->method('persistNewAccessToken')->willReturnSelf();
|
|
|
|
|
2016-03-24 00:20:14 +05:30
|
|
|
$scopeRepositoryMock = $this->getMockBuilder(ScopeRepositoryInterface::class)->getMock();
|
|
|
|
$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);
|
2016-02-18 16:19:13 +05:30
|
|
|
|
|
|
|
$serverRequest = new ServerRequest();
|
|
|
|
$serverRequest = $serverRequest->withParsedBody(
|
|
|
|
[
|
|
|
|
'client_id' => 'foo',
|
|
|
|
'client_secret' => 'bar',
|
|
|
|
]
|
|
|
|
);
|
|
|
|
|
|
|
|
$responseType = new StubResponseType();
|
|
|
|
$grant->respondToRequest($serverRequest, $responseType, new \DateInterval('PT5M'));
|
2016-02-20 04:39:39 +05:30
|
|
|
|
2016-02-18 16:19:13 +05:30
|
|
|
$this->assertTrue($responseType->getAccessToken() instanceof AccessTokenEntityInterface);
|
|
|
|
}
|
|
|
|
}
|