oauth2-server/tests/Grant/ClientCredentialsGrantTest.php

55 lines
2.2 KiB
PHP
Raw Normal View History

2016-02-18 16:19:13 +05:30
<?php
namespace LeagueTests\Grant;
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;
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();
$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();
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();
2016-04-10 14:58:12 +05:30
$grant->respondToAccessTokenRequest($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);
}
}