oauth2-server/tests/unit/AuthorizationServerTest.php

83 lines
3.0 KiB
PHP
Raw Normal View History

2014-01-16 22:21:06 +05:30
<?php
namespace LeagueTests;
use League\OAuth2\Server\AuthorizationServer;
2014-01-16 22:21:06 +05:30
use League\OAuth2\Server\Grant\GrantTypeInterface;
use League\OAuth2\Server\Storage\ScopeInterface;
2014-11-08 23:56:12 +05:30
use Mockery as M;
2014-01-16 22:21:06 +05:30
2014-05-03 15:25:25 +05:30
class AuthorizationServerTest extends \PHPUnit_Framework_TestCase
2014-01-16 22:21:06 +05:30
{
public function testSetGet()
{
2014-11-08 23:56:12 +05:30
$server = new AuthorizationServer();
2014-01-16 22:21:06 +05:30
$server->requireScopeParam(true);
$server->requireStateParam(true);
$server->setDefaultScope('foobar');
2014-11-21 05:22:29 +05:30
$server->setScopeDelimiter(',');
2014-01-16 22:21:06 +05:30
$server->setAccessTokenTTL(1);
$grant = M::mock('League\OAuth2\Server\Grant\GrantTypeInterface');
$grant->shouldReceive('getIdentifier')->andReturn('foobar');
$grant->shouldReceive('getResponseType')->andReturn('foobar');
$grant->shouldReceive('setAuthorizationServer');
$scopeStorage = M::mock('League\OAuth2\Server\Storage\ScopeInterface');
$scopeStorage->shouldReceive('setServer');
$server->addGrantType($grant);
$server->setScopeStorage($scopeStorage);
$this->assertTrue($server->hasGrantType('foobar'));
$this->assertTrue($server->getGrantType('foobar') instanceof GrantTypeInterface);
$this->assertSame($server->getResponseTypes(), ['foobar']);
$this->assertTrue($server->scopeParamRequired());
$this->assertTrue($server->stateParamRequired());
$this->assertTrue($server->getScopeStorage() instanceof ScopeInterface);
2014-01-16 22:21:06 +05:30
$this->assertEquals('foobar', $server->getDefaultScope());
2014-11-21 05:22:29 +05:30
$this->assertEquals(',', $server->getScopeDelimiter());
2014-01-16 22:21:06 +05:30
$this->assertEquals(1, $server->getAccessTokenTTL());
}
public function testInvalidGrantType()
{
$this->setExpectedException('League\OAuth2\Server\Exception\InvalidGrantException');
2014-11-08 23:56:12 +05:30
$server = new AuthorizationServer();
2014-01-16 22:21:06 +05:30
$server->getGrantType('foobar');
}
public function testIssueAccessToken()
{
$grant = M::mock('League\OAuth2\Server\Grant\GrantTypeInterface');
$grant->shouldReceive('getIdentifier')->andReturn('foobar');
$grant->shouldReceive('getResponseType')->andReturn('foobar');
$grant->shouldReceive('setAuthorizationServer');
$grant->shouldReceive('completeFlow')->andReturn(true);
$_POST['grant_type'] = 'foobar';
2014-11-08 23:56:12 +05:30
$server = new AuthorizationServer();
2014-01-16 22:21:06 +05:30
$server->addGrantType($grant);
$this->assertTrue($server->issueAccessToken());
}
public function testIssueAccessTokenEmptyGrantType()
{
$this->setExpectedException('League\OAuth2\Server\Exception\InvalidRequestException');
2014-11-08 23:56:12 +05:30
$server = new AuthorizationServer();
2014-01-16 22:21:06 +05:30
$this->assertTrue($server->issueAccessToken());
}
public function testIssueAccessTokenInvalidGrantType()
{
$this->setExpectedException('League\OAuth2\Server\Exception\UnsupportedGrantTypeException');
2014-01-16 22:21:06 +05:30
$_POST['grant_type'] = 'foobar';
2014-11-08 23:56:12 +05:30
$server = new AuthorizationServer();
2014-01-16 22:21:06 +05:30
$this->assertTrue($server->issueAccessToken());
}
}