mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-11-01 16:33:07 +05:30
66 lines
2.8 KiB
PHP
66 lines
2.8 KiB
PHP
<?php
|
|
|
|
namespace LeagueTests\Grant;
|
|
|
|
use League\OAuth2\Server\Entities\ClientEntity;
|
|
use League\OAuth2\Server\Entities\Interfaces\AccessTokenEntityInterface;
|
|
use League\OAuth2\Server\Entities\Interfaces\RefreshTokenEntityInterface;
|
|
use League\OAuth2\Server\Grant\PasswordGrant;
|
|
use League\OAuth2\Server\Repositories\AccessTokenRepositoryInterface;
|
|
use League\OAuth2\Server\Repositories\ClientRepositoryInterface;
|
|
use League\OAuth2\Server\Repositories\RefreshTokenRepositoryInterface;
|
|
use League\OAuth2\Server\Repositories\UserRepositoryInterface;
|
|
use LeagueTests\Stubs\StubResponseType;
|
|
use LeagueTests\Stubs\UserEntity;
|
|
use Zend\Diactoros\ServerRequest;
|
|
|
|
class PasswordGrantTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
public function testGetIdentifier()
|
|
{
|
|
$userRepositoryMock = $this->getMock(UserRepositoryInterface::class);
|
|
$refreshTokenRepositoryMock = $this->getMock(RefreshTokenRepositoryInterface::class);
|
|
|
|
$grant = new PasswordGrant($userRepositoryMock, $refreshTokenRepositoryMock);
|
|
$this->assertEquals('password', $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();
|
|
$accessTokenRepositoryMock->method('persistNewAccessToken')->willReturnSelf();
|
|
|
|
$userRepositoryMock = $this->getMockBuilder(UserRepositoryInterface::class)->getMock();
|
|
$userEntity = new UserEntity();
|
|
$userRepositoryMock->method('getUserEntityByUserCredentials')->willReturn($userEntity);
|
|
|
|
$refreshTokenRepositoryMock = $this->getMockBuilder(RefreshTokenRepositoryInterface::class)->getMock();
|
|
$refreshTokenRepositoryMock->method('persistNewRefreshToken')->willReturnSelf();
|
|
|
|
$grant = new PasswordGrant($userRepositoryMock, $refreshTokenRepositoryMock);
|
|
$grant->setClientRepository($clientRepositoryMock);
|
|
$grant->setAccessTokenRepository($accessTokenRepositoryMock);
|
|
|
|
$serverRequest = new ServerRequest();
|
|
$serverRequest = $serverRequest->withParsedBody(
|
|
[
|
|
'client_id' => 'foo',
|
|
'client_secret' => 'bar',
|
|
'username' => 'foo',
|
|
'password' => 'bar',
|
|
]
|
|
);
|
|
|
|
$responseType = new StubResponseType();
|
|
$grant->respondToRequest($serverRequest, $responseType, new \DateInterval('PT5M'));
|
|
|
|
$this->assertTrue($responseType->getAccessToken() instanceof AccessTokenEntityInterface);
|
|
$this->assertTrue($responseType->getRefreshToken() instanceof RefreshTokenEntityInterface);
|
|
}
|
|
}
|