oauth2-server/tests/unit/Grant/ClientCredentialsGrantTest.php

252 lines
9.3 KiB
PHP
Raw Normal View History

2014-01-17 16:06:57 +05:30
<?php
namespace LeagueTests\Grant;
2014-11-08 23:56:12 +05:30
use League\OAuth2\Server\AuthorizationServer;
use League\OAuth2\Server\Entity\ClientEntity;
2014-05-02 19:44:12 +05:30
use League\OAuth2\Server\Entity\ScopeEntity;
2014-11-07 06:25:38 +05:30
use League\OAuth2\Server\Entity\SessionEntity;
2014-11-08 23:56:12 +05:30
use League\OAuth2\Server\Grant\ClientCredentialsGrant;
2014-01-17 16:06:57 +05:30
use Mockery as M;
2014-05-07 21:39:52 +05:30
class ClientCredentialsGrantTest 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
{
$this->setExpectedException('League\OAuth2\Server\Exception\InvalidRequestException');
2014-01-17 16:06:57 +05:30
$_POST['grant_type'] = 'client_credentials';
2014-11-08 23:56:12 +05:30
$server = new AuthorizationServer();
$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
{
$this->setExpectedException('League\OAuth2\Server\Exception\InvalidRequestException');
2014-01-17 16:06:57 +05:30
$_POST = [
'grant_type' => 'client_credentials',
2014-11-08 23:56:12 +05:30
'client_id' => 'testapp',
2014-01-17 16:06:57 +05:30
];
2014-11-08 23:56:12 +05:30
$server = new AuthorizationServer();
$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
{
$this->setExpectedException('League\OAuth2\Server\Exception\InvalidClientException');
2014-01-17 16:06:57 +05:30
$_POST = [
'grant_type' => 'client_credentials',
'client_id' => 'testapp',
2014-11-08 23:56:12 +05:30
'client_secret' => 'foobar',
2014-01-17 16:06:57 +05:30
];
2014-11-08 23:56:12 +05:30
$server = new AuthorizationServer();
$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
{
$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',
2014-11-08 23:56:12 +05:30
'scope' => 'foo',
2014-01-17 16:06:57 +05:30
];
2014-11-08 23:56:12 +05:30
$server = new AuthorizationServer();
$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-07-11 22:49:10 +05:30
(new ClientEntity($server))->hydrate(['id' => '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',
2014-11-08 23:56:12 +05:30
'client_secret' => 'foobar',
2014-01-17 16:06:57 +05:30
];
2014-11-08 23:56:12 +05:30
$server = new AuthorizationServer();
$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-07-11 22:49:10 +05:30
(new ClientEntity($server))->hydrate(['id' => '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-11-07 06:25:38 +05:30
$sessionStorage->shouldReceive('getByAccessToken')->andReturn(
(new SessionEntity($server))->setId('foobar')
);
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([]);
$accessTokenStorage->shouldReceive('associateScope');
$scopeStorage = M::mock('League\OAuth2\Server\Storage\ScopeInterface');
$scopeStorage->shouldReceive('setServer');
// $scopeStorage->shouldReceive('get')->andReturn(
2014-07-11 22:49:10 +05:30
// // (new ScopeEntity($server))->hydrate(['id' => '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',
2014-11-08 23:56:12 +05:30
'scope' => 'foo',
2014-01-17 16:06:57 +05:30
];
2014-11-08 23:56:12 +05:30
$server = new AuthorizationServer();
$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-07-11 22:49:10 +05:30
(new ClientEntity($server))->hydrate(['id' => '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-11-08 23:56:12 +05:30
(new ScopeEntity($server))->hydrate(['id' => 'foo']),
2014-01-17 16:06:57 +05:30
]);
2014-11-07 06:25:38 +05:30
$sessionStorage->shouldReceive('getByAccessToken')->andReturn(
(new SessionEntity($server))->setId('foobar')
);
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-11-08 23:56:12 +05:30
(new ScopeEntity($server))->hydrate(['id' => '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-07-11 22:49:10 +05:30
(new ScopeEntity($server))->hydrate(['id' => '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-06-20 18:59:47 +05:30
public function testClientNotAuthorizedToUseGrant()
{
$this->setExpectedException('\League\OAuth2\Server\Exception\UnauthorizedClientException');
$_POST = [
'grant_type' => 'client_credentials',
'client_id' => 'testapp',
'client_secret' => 'foobar',
2014-11-08 23:56:12 +05:30
'scope' => 'foo',
2014-06-20 18:59:47 +05:30
];
2014-11-08 23:56:12 +05:30
$server = new AuthorizationServer();
$grant = new ClientCredentialsGrant();
2014-06-20 18:59:47 +05:30
$clientStorage = M::mock('League\OAuth2\Server\Storage\ClientInterface');
$clientStorage->shouldReceive('setServer');
$clientStorage->shouldReceive('get')->andThrow(
2014-11-08 23:56:12 +05:30
new \League\OAuth2\Server\Exception\UnauthorizedClientException()
2014-06-20 18:59:47 +05:30
);
$sessionStorage = M::mock('League\OAuth2\Server\Storage\SessionInterface');
$sessionStorage->shouldReceive('setServer');
2014-11-07 06:25:38 +05:30
$sessionStorage->shouldReceive('getByAccessToken')->andReturn(
(new SessionEntity($server))->setId('foobar')
);
2014-06-20 18:59:47 +05:30
$accessTokenStorage = M::mock('League\OAuth2\Server\Storage\AccessTokenInterface');
$accessTokenStorage->shouldReceive('setServer');
$scopeStorage = M::mock('League\OAuth2\Server\Storage\ScopeInterface');
$scopeStorage->shouldReceive('setServer');
$scopeStorage->shouldReceive('get')->andReturn(
2014-07-11 22:49:10 +05:30
(new ScopeEntity($server))->hydrate(['id' => 'foo'])
2014-06-20 18:59:47 +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
}