mirror of
				https://github.com/elyby/oauth2-server.git
				synced 2025-05-31 14:12:07 +05:30 
			
		
		
		
	
		
			
				
	
	
		
			54 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace LeagueTests\Grant;
 | 
						|
 | 
						|
use League\OAuth2\Server\Entities\AccessTokenEntityInterface;
 | 
						|
use League\OAuth2\Server\Grant\ClientCredentialsGrant;
 | 
						|
use League\OAuth2\Server\Repositories\AccessTokenRepositoryInterface;
 | 
						|
use League\OAuth2\Server\Repositories\ClientRepositoryInterface;
 | 
						|
use League\OAuth2\Server\Repositories\ScopeRepositoryInterface;
 | 
						|
use LeagueTests\Stubs\AccessTokenEntity;
 | 
						|
use LeagueTests\Stubs\ClientEntity;
 | 
						|
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());
 | 
						|
        $accessTokenRepositoryMock->method('persistNewAccessToken')->willReturnSelf();
 | 
						|
 | 
						|
        $scopeRepositoryMock = $this->getMockBuilder(ScopeRepositoryInterface::class)->getMock();
 | 
						|
        $scopeRepositoryMock->method('finalizeScopes')->willReturnArgument(0);
 | 
						|
 | 
						|
        $grant = new ClientCredentialsGrant();
 | 
						|
        $grant->setClientRepository($clientRepositoryMock);
 | 
						|
        $grant->setAccessTokenRepository($accessTokenRepositoryMock);
 | 
						|
        $grant->setScopeRepository($scopeRepositoryMock);
 | 
						|
 | 
						|
        $serverRequest = new ServerRequest();
 | 
						|
        $serverRequest = $serverRequest->withParsedBody(
 | 
						|
            [
 | 
						|
                'client_id'     => 'foo',
 | 
						|
                'client_secret' => 'bar',
 | 
						|
            ]
 | 
						|
        );
 | 
						|
 | 
						|
        $responseType = new StubResponseType();
 | 
						|
        $grant->respondToAccessTokenRequest($serverRequest, $responseType, new \DateInterval('PT5M'));
 | 
						|
 | 
						|
        $this->assertTrue($responseType->getAccessToken() instanceof AccessTokenEntityInterface);
 | 
						|
    }
 | 
						|
} |