2014-01-17 16:06:57 +05:30
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace LeagueTests\Grant;
|
|
|
|
|
2014-05-02 21:55:04 +05:30
|
|
|
use League\OAuth2\Server\Grant\ClientCredentialsGrant;
|
2014-05-02 19:44:12 +05:30
|
|
|
use League\OAuth2\Server\Entity\ScopeEntity;
|
|
|
|
use League\OAuth2\Server\Entity\ClientEntity;
|
2014-05-02 21:51:53 +05:30
|
|
|
use League\OAuth2\Server\AuthorizationServer;
|
2014-01-17 16:06:57 +05:30
|
|
|
use Mockery as M;
|
|
|
|
|
2014-05-03 15:25:25 +05:30
|
|
|
class ClientCredentialsTest extends \PHPUnit_Framework_TestCase
|
2014-01-17 16:06:57 +05:30
|
|
|
{
|
2014-05-03 15:25:25 +05:30
|
|
|
public function testCompleteFlowMissingClientId()
|
2014-01-17 16:06:57 +05:30
|
|
|
{
|
2014-05-01 19:03:11 +05:30
|
|
|
$this->setExpectedException('League\OAuth2\Server\Exception\InvalidRequestException');
|
2014-01-17 16:06:57 +05:30
|
|
|
|
|
|
|
$_POST['grant_type'] = 'client_credentials';
|
|
|
|
|
2014-05-02 21:51:53 +05:30
|
|
|
$server = new AuthorizationServer;
|
2014-05-02 21:55:04 +05:30
|
|
|
$grant = new ClientCredentialsGrant;
|
2014-01-17 16:06:57 +05:30
|
|
|
|
|
|
|
$server->addGrantType($grant);
|
|
|
|
$server->issueAccessToken();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-05-03 15:25:25 +05:30
|
|
|
public function testCompleteFlowMissingClientSecret()
|
2014-01-17 16:06:57 +05:30
|
|
|
{
|
2014-05-01 19:03:11 +05:30
|
|
|
$this->setExpectedException('League\OAuth2\Server\Exception\InvalidRequestException');
|
2014-01-17 16:06:57 +05:30
|
|
|
|
|
|
|
$_POST = [
|
|
|
|
'grant_type' => 'client_credentials',
|
|
|
|
'client_id' => 'testapp'
|
|
|
|
];
|
|
|
|
|
2014-05-02 21:51:53 +05:30
|
|
|
$server = new AuthorizationServer;
|
2014-05-02 21:55:04 +05:30
|
|
|
$grant = new ClientCredentialsGrant;
|
2014-01-17 16:06:57 +05:30
|
|
|
|
|
|
|
$server->addGrantType($grant);
|
|
|
|
$server->issueAccessToken();
|
|
|
|
}
|
|
|
|
|
2014-05-03 15:25:25 +05:30
|
|
|
public function testCompleteFlowInvalidClient()
|
2014-01-17 16:06:57 +05:30
|
|
|
{
|
2014-05-01 19:03:11 +05:30
|
|
|
$this->setExpectedException('League\OAuth2\Server\Exception\InvalidClientException');
|
2014-01-17 16:06:57 +05:30
|
|
|
|
|
|
|
$_POST = [
|
|
|
|
'grant_type' => 'client_credentials',
|
|
|
|
'client_id' => 'testapp',
|
|
|
|
'client_secret' => 'foobar'
|
|
|
|
];
|
|
|
|
|
2014-05-02 21:51:53 +05:30
|
|
|
$server = new AuthorizationServer;
|
2014-05-02 21:55:04 +05:30
|
|
|
$grant = new ClientCredentialsGrant;
|
2014-01-17 16:06:57 +05:30
|
|
|
|
|
|
|
$clientStorage = M::mock('League\OAuth2\Server\Storage\ClientInterface');
|
|
|
|
$clientStorage->shouldReceive('setServer');
|
|
|
|
$clientStorage->shouldReceive('get')->andReturn(null);
|
|
|
|
|
|
|
|
$server->setClientStorage($clientStorage);
|
|
|
|
|
|
|
|
$server->addGrantType($grant);
|
|
|
|
$server->issueAccessToken();
|
|
|
|
}
|
|
|
|
|
2014-05-03 15:25:25 +05:30
|
|
|
public function testCompleteFlowInvalidScope()
|
2014-01-17 16:06:57 +05:30
|
|
|
{
|
2014-05-01 19:03:11 +05:30
|
|
|
$this->setExpectedException('League\OAuth2\Server\Exception\InvalidScopeException');
|
2014-01-17 16:06:57 +05:30
|
|
|
|
|
|
|
$_POST = [
|
|
|
|
'grant_type' => 'client_credentials',
|
|
|
|
'client_id' => 'testapp',
|
|
|
|
'client_secret' => 'foobar',
|
|
|
|
'scope' => 'foo'
|
|
|
|
];
|
|
|
|
|
2014-05-02 21:51:53 +05:30
|
|
|
$server = new AuthorizationServer;
|
2014-05-02 21:55:04 +05:30
|
|
|
$grant = new ClientCredentialsGrant;
|
2014-01-17 16:06:57 +05:30
|
|
|
|
|
|
|
$clientStorage = M::mock('League\OAuth2\Server\Storage\ClientInterface');
|
|
|
|
$clientStorage->shouldReceive('setServer');
|
|
|
|
$clientStorage->shouldReceive('get')->andReturn(
|
2014-05-02 21:51:53 +05:30
|
|
|
(new ClientEntity($server))->setId('testapp')
|
2014-01-17 16:06:57 +05:30
|
|
|
);
|
|
|
|
|
|
|
|
$sessionStorage = M::mock('League\OAuth2\Server\Storage\SessionInterface');
|
|
|
|
$sessionStorage->shouldReceive('setServer');
|
|
|
|
$sessionStorage->shouldReceive('create');
|
|
|
|
$sessionStorage->shouldReceive('getScopes')->andReturn([]);
|
|
|
|
|
|
|
|
$accessTokenStorage = M::mock('League\OAuth2\Server\Storage\AccessTokenInterface');
|
|
|
|
$accessTokenStorage->shouldReceive('setServer');
|
|
|
|
$accessTokenStorage->shouldReceive('create');
|
|
|
|
$accessTokenStorage->shouldReceive('getScopes')->andReturn([]);
|
|
|
|
|
|
|
|
$scopeStorage = M::mock('League\OAuth2\Server\Storage\ScopeInterface');
|
|
|
|
$scopeStorage->shouldReceive('setServer');
|
|
|
|
$scopeStorage->shouldReceive('get')->andReturn(null);
|
|
|
|
|
|
|
|
$server->setClientStorage($clientStorage);
|
|
|
|
$server->setScopeStorage($scopeStorage);
|
|
|
|
$server->setSessionStorage($sessionStorage);
|
|
|
|
$server->setAccessTokenStorage($accessTokenStorage);
|
|
|
|
|
|
|
|
$server->addGrantType($grant);
|
|
|
|
$server->issueAccessToken();
|
|
|
|
}
|
|
|
|
|
2014-05-03 15:25:25 +05:30
|
|
|
public function testCompleteFlowNoScopes()
|
2014-01-17 16:06:57 +05:30
|
|
|
{
|
|
|
|
$_POST = [
|
|
|
|
'grant_type' => 'client_credentials',
|
|
|
|
'client_id' => 'testapp',
|
|
|
|
'client_secret' => 'foobar'
|
|
|
|
];
|
|
|
|
|
2014-05-02 21:51:53 +05:30
|
|
|
$server = new AuthorizationServer;
|
2014-05-02 21:55:04 +05:30
|
|
|
$grant = new ClientCredentialsGrant;
|
2014-01-17 16:06:57 +05:30
|
|
|
|
|
|
|
$clientStorage = M::mock('League\OAuth2\Server\Storage\ClientInterface');
|
|
|
|
$clientStorage->shouldReceive('setServer');
|
|
|
|
$clientStorage->shouldReceive('get')->andReturn(
|
2014-05-02 21:51:53 +05:30
|
|
|
(new ClientEntity($server))->setId('testapp')
|
2014-01-17 16:06:57 +05:30
|
|
|
);
|
|
|
|
|
|
|
|
$sessionStorage = M::mock('League\OAuth2\Server\Storage\SessionInterface');
|
|
|
|
$sessionStorage->shouldReceive('setServer');
|
|
|
|
$sessionStorage->shouldReceive('create')->andreturn(123);
|
|
|
|
$sessionStorage->shouldReceive('getScopes')->shouldReceive('getScopes')->andReturn([]);
|
|
|
|
$sessionStorage->shouldReceive('associateScope');
|
|
|
|
|
|
|
|
$accessTokenStorage = M::mock('League\OAuth2\Server\Storage\AccessTokenInterface');
|
|
|
|
$accessTokenStorage->shouldReceive('setServer');
|
|
|
|
$accessTokenStorage->shouldReceive('create');
|
|
|
|
$accessTokenStorage->shouldReceive('getScopes')->andReturn([]);
|
|
|
|
$accessTokenStorage->shouldReceive('associateScope');
|
|
|
|
|
|
|
|
$scopeStorage = M::mock('League\OAuth2\Server\Storage\ScopeInterface');
|
|
|
|
$scopeStorage->shouldReceive('setServer');
|
|
|
|
// $scopeStorage->shouldReceive('get')->andReturn(
|
2014-05-02 21:51:53 +05:30
|
|
|
// // (new ScopeEntity($server))->setId('foo')
|
2014-01-17 16:06:57 +05:30
|
|
|
// );
|
|
|
|
|
|
|
|
$server->setClientStorage($clientStorage);
|
|
|
|
$server->setScopeStorage($scopeStorage);
|
|
|
|
$server->setSessionStorage($sessionStorage);
|
|
|
|
$server->setAccessTokenStorage($accessTokenStorage);
|
|
|
|
|
|
|
|
$server->addGrantType($grant);
|
|
|
|
$server->issueAccessToken();
|
|
|
|
}
|
|
|
|
|
2014-05-03 15:25:25 +05:30
|
|
|
public function testCompleteFlow()
|
2014-01-17 16:06:57 +05:30
|
|
|
{
|
|
|
|
$_POST = [
|
|
|
|
'grant_type' => 'client_credentials',
|
|
|
|
'client_id' => 'testapp',
|
|
|
|
'client_secret' => 'foobar',
|
|
|
|
'scope' => 'foo'
|
|
|
|
];
|
|
|
|
|
2014-05-02 21:51:53 +05:30
|
|
|
$server = new AuthorizationServer;
|
2014-05-02 21:55:04 +05:30
|
|
|
$grant = new ClientCredentialsGrant;
|
2014-01-17 16:06:57 +05:30
|
|
|
|
|
|
|
$clientStorage = M::mock('League\OAuth2\Server\Storage\ClientInterface');
|
|
|
|
$clientStorage->shouldReceive('setServer');
|
|
|
|
$clientStorage->shouldReceive('get')->andReturn(
|
2014-05-02 21:51:53 +05:30
|
|
|
(new ClientEntity($server))->setId('testapp')
|
2014-01-17 16:06:57 +05:30
|
|
|
);
|
|
|
|
|
|
|
|
$sessionStorage = M::mock('League\OAuth2\Server\Storage\SessionInterface');
|
|
|
|
$sessionStorage->shouldReceive('setServer');
|
|
|
|
$sessionStorage->shouldReceive('create')->andreturn(123);
|
|
|
|
$sessionStorage->shouldReceive('getScopes')->shouldReceive('getScopes')->andReturn([
|
2014-05-02 21:51:53 +05:30
|
|
|
(new ScopeEntity($server))->setId('foo')
|
2014-01-17 16:06:57 +05:30
|
|
|
]);
|
|
|
|
$sessionStorage->shouldReceive('associateScope');
|
|
|
|
|
|
|
|
$accessTokenStorage = M::mock('League\OAuth2\Server\Storage\AccessTokenInterface');
|
|
|
|
$accessTokenStorage->shouldReceive('setServer');
|
|
|
|
$accessTokenStorage->shouldReceive('create');
|
|
|
|
$accessTokenStorage->shouldReceive('getScopes')->andReturn([
|
2014-05-02 21:51:53 +05:30
|
|
|
(new ScopeEntity($server))->setId('foo')
|
2014-01-17 16:06:57 +05:30
|
|
|
]);
|
|
|
|
$accessTokenStorage->shouldReceive('associateScope');
|
|
|
|
|
|
|
|
$scopeStorage = M::mock('League\OAuth2\Server\Storage\ScopeInterface');
|
|
|
|
$scopeStorage->shouldReceive('setServer');
|
|
|
|
$scopeStorage->shouldReceive('get')->andReturn(
|
2014-05-02 21:51:53 +05:30
|
|
|
(new ScopeEntity($server))->setId('foo')
|
2014-01-17 16:06:57 +05:30
|
|
|
);
|
|
|
|
|
|
|
|
$server->setClientStorage($clientStorage);
|
|
|
|
$server->setScopeStorage($scopeStorage);
|
|
|
|
$server->setSessionStorage($sessionStorage);
|
|
|
|
$server->setAccessTokenStorage($accessTokenStorage);
|
|
|
|
|
|
|
|
$server->addGrantType($grant);
|
|
|
|
$server->issueAccessToken();
|
|
|
|
}
|
2014-05-03 15:25:25 +05:30
|
|
|
}
|