mirror of
				https://github.com/elyby/oauth2-server.git
				synced 2025-05-31 14:12:07 +05:30 
			
		
		
		
	
		
			
				
	
	
		
			514 lines
		
	
	
		
			17 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			514 lines
		
	
	
		
			17 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
use \Mockery as m;
 | 
						|
 | 
						|
class Authorization_Server_test extends PHPUnit_Framework_TestCase
 | 
						|
{
 | 
						|
    private $client;
 | 
						|
    private $session;
 | 
						|
    private $scope;
 | 
						|
 | 
						|
    public function setUp()
 | 
						|
    {
 | 
						|
        $this->client = M::mock('League\OAuth2\Server\Storage\ClientInterface');
 | 
						|
        $this->session = M::mock('League\OAuth2\Server\Storage\SessionInterface');
 | 
						|
        $this->scope = M::mock('League\OAuth2\Server\Storage\ScopeInterface');
 | 
						|
    }
 | 
						|
 | 
						|
    private function returnDefault()
 | 
						|
    {
 | 
						|
        return new League\OAuth2\Server\Authorization($this->client, $this->session, $this->scope);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @expectedException PHPUnit_Framework_Error
 | 
						|
     */
 | 
						|
    public function test__construct_NoStorage()
 | 
						|
    {
 | 
						|
        new League\OAuth2\Server\Authorization;
 | 
						|
    }
 | 
						|
 | 
						|
    public function test__contruct_WithStorage()
 | 
						|
    {
 | 
						|
        $this->returnDefault();
 | 
						|
    }
 | 
						|
 | 
						|
    public function test_getExceptionMessage()
 | 
						|
    {
 | 
						|
        $m = League\OAuth2\Server\Authorization::getExceptionMessage('access_denied');
 | 
						|
 | 
						|
        $reflector = new ReflectionClass($this->returnDefault());
 | 
						|
        $exceptionMessages = $reflector->getProperty('exceptionMessages');
 | 
						|
        $exceptionMessages->setAccessible(true);
 | 
						|
        $v = $exceptionMessages->getValue();
 | 
						|
 | 
						|
        $this->assertEquals($v['access_denied'], $m);
 | 
						|
    }
 | 
						|
 | 
						|
    public function test_getExceptionCode()
 | 
						|
    {
 | 
						|
        $this->assertEquals('access_denied', League\OAuth2\Server\Authorization::getExceptionType(2));
 | 
						|
    }
 | 
						|
 | 
						|
    public function test_getExceptionHttpHeaders()
 | 
						|
    {
 | 
						|
        $this->assertEquals(array('HTTP/1.1 401 Unauthorized'), League\OAuth2\Server\Authorization::getExceptionHttpHeaders('access_denied'));
 | 
						|
        $this->assertEquals(array('HTTP/1.1 500 Internal Server Error'), League\OAuth2\Server\Authorization::getExceptionHttpHeaders('server_error'));
 | 
						|
        $this->assertEquals(array('HTTP/1.1 501 Not Implemented'), League\OAuth2\Server\Authorization::getExceptionHttpHeaders('unsupported_grant_type'));
 | 
						|
        $this->assertEquals(array('HTTP/1.1 400 Bad Request'), League\OAuth2\Server\Authorization::getExceptionHttpHeaders('invalid_refresh'));
 | 
						|
    }
 | 
						|
 | 
						|
    public function test_hasGrantType()
 | 
						|
    {
 | 
						|
        $a = $this->returnDefault();
 | 
						|
        $this->assertFalse($a->hasGrantType('test'));
 | 
						|
    }
 | 
						|
 | 
						|
    public function test_addGrantType()
 | 
						|
    {
 | 
						|
        $a = $this->returnDefault();
 | 
						|
        $grant = M::mock('League\OAuth2\Server\Grant\GrantTypeInterface');
 | 
						|
        $grant->shouldReceive('getResponseType')->andReturn('test');
 | 
						|
        $a->addGrantType($grant, 'test');
 | 
						|
 | 
						|
        $this->assertTrue($a->hasGrantType('test'));
 | 
						|
    }
 | 
						|
 | 
						|
    public function test_addGrantType_noIdentifier()
 | 
						|
    {
 | 
						|
        $a = $this->returnDefault();
 | 
						|
        $grant = M::mock('League\OAuth2\Server\Grant\GrantTypeInterface');
 | 
						|
        $grant->shouldReceive('getIdentifier')->andReturn('test');
 | 
						|
        $grant->shouldReceive('getResponseType')->andReturn('test');
 | 
						|
        $a->addGrantType($grant);
 | 
						|
 | 
						|
        $this->assertTrue($a->hasGrantType('test'));
 | 
						|
    }
 | 
						|
 | 
						|
    public function test_getScopeDelimeter()
 | 
						|
    {
 | 
						|
        $a = $this->returnDefault();
 | 
						|
        $this->assertEquals(' ', $a->getScopeDelimeter());
 | 
						|
    }
 | 
						|
 | 
						|
    public function test_setScopeDelimeter()
 | 
						|
    {
 | 
						|
        $a = $this->returnDefault();
 | 
						|
        $a->setScopeDelimeter(',');
 | 
						|
        $this->assertEquals(',', $a->getScopeDelimeter());
 | 
						|
    }
 | 
						|
 | 
						|
    public function test_requireScopeParam()
 | 
						|
    {
 | 
						|
        $a = $this->returnDefault();
 | 
						|
        $a->requireScopeParam(false);
 | 
						|
 | 
						|
        $reflector = new ReflectionClass($a);
 | 
						|
        $requestProperty = $reflector->getProperty('requireScopeParam');
 | 
						|
        $requestProperty->setAccessible(true);
 | 
						|
        $v = $requestProperty->getValue($a);
 | 
						|
 | 
						|
        $this->assertFalse($v);
 | 
						|
    }
 | 
						|
 | 
						|
    public function test_scopeParamRequired()
 | 
						|
    {
 | 
						|
        $a = $this->returnDefault();
 | 
						|
        $a->requireScopeParam(false);
 | 
						|
 | 
						|
        $this->assertFalse($a->scopeParamRequired());
 | 
						|
    }
 | 
						|
 | 
						|
    public function test_setDefaultScope()
 | 
						|
    {
 | 
						|
        $a = $this->returnDefault();
 | 
						|
        $a->setDefaultScope('test.default');
 | 
						|
 | 
						|
        $reflector = new ReflectionClass($a);
 | 
						|
        $requestProperty = $reflector->getProperty('defaultScope');
 | 
						|
        $requestProperty->setAccessible(true);
 | 
						|
        $v = $requestProperty->getValue($a);
 | 
						|
 | 
						|
        $this->assertEquals('test.default', $v);
 | 
						|
    }
 | 
						|
 | 
						|
    public function test_getDefaultScope()
 | 
						|
    {
 | 
						|
        $a = $this->returnDefault();
 | 
						|
        $a->setDefaultScope('test.default');
 | 
						|
        $this->assertEquals('test.default', $a->getDefaultScope());
 | 
						|
    }
 | 
						|
 | 
						|
    public function test_requireStateParam()
 | 
						|
    {
 | 
						|
        $a = $this->returnDefault();
 | 
						|
        $a->requireStateParam(true);
 | 
						|
 | 
						|
        $reflector = new ReflectionClass($a);
 | 
						|
        $requestProperty = $reflector->getProperty('requireStateParam');
 | 
						|
        $requestProperty->setAccessible(true);
 | 
						|
        $v = $requestProperty->getValue($a);
 | 
						|
 | 
						|
        $this->assertTrue($v);
 | 
						|
    }
 | 
						|
 | 
						|
    public function test_getAccessTokenTTL()
 | 
						|
    {
 | 
						|
        $a = $this->returnDefault();
 | 
						|
        $a->setAccessTokenTTL(7200);
 | 
						|
        $this->assertEquals(7200, $a->getAccessTokenTTL());
 | 
						|
    }
 | 
						|
 | 
						|
    public function test_setAccessTokenTTL()
 | 
						|
    {
 | 
						|
        $a = $this->returnDefault();
 | 
						|
        $a->setScopeDelimeter(';');
 | 
						|
        $this->assertEquals(';', $a->getScopeDelimeter());
 | 
						|
    }
 | 
						|
 | 
						|
    public function test_setRequest()
 | 
						|
    {
 | 
						|
        $a = $this->returnDefault();
 | 
						|
        $request = new League\OAuth2\Server\Util\Request();
 | 
						|
        $a->setRequest($request);
 | 
						|
 | 
						|
        $reflector = new ReflectionClass($a);
 | 
						|
        $requestProperty = $reflector->getProperty('request');
 | 
						|
        $requestProperty->setAccessible(true);
 | 
						|
        $v = $requestProperty->getValue($a);
 | 
						|
 | 
						|
        $this->assertTrue($v instanceof League\OAuth2\Server\Util\RequestInterface);
 | 
						|
    }
 | 
						|
 | 
						|
    public function test_getRequest()
 | 
						|
    {
 | 
						|
        $a = $this->returnDefault();
 | 
						|
        $request = new League\OAuth2\Server\Util\Request();
 | 
						|
        $a->setRequest($request);
 | 
						|
        $v = $a->getRequest();
 | 
						|
 | 
						|
        $this->assertTrue($v instanceof League\OAuth2\Server\Util\RequestInterface);
 | 
						|
    }
 | 
						|
 | 
						|
    public function test_getStorage()
 | 
						|
    {
 | 
						|
        $a = $this->returnDefault();
 | 
						|
        $this->assertTrue($a->getStorage('session') instanceof League\OAuth2\Server\Storage\SessionInterface);
 | 
						|
    }
 | 
						|
 | 
						|
    public function test_getGrantType()
 | 
						|
    {
 | 
						|
        $a = $this->returnDefault();
 | 
						|
        $a->addGrantType(new League\OAuth2\Server\Grant\AuthCode($a));
 | 
						|
 | 
						|
        $reflector = new ReflectionClass($a);
 | 
						|
        $method = $reflector->getMethod('getGrantType');
 | 
						|
        $method->setAccessible(true);
 | 
						|
 | 
						|
        $result = $method->invoke($a, 'authorization_code');
 | 
						|
 | 
						|
        $this->assertTrue($result instanceof League\OAuth2\Server\Grant\GrantTypeInterface);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @expectedException        League\OAuth2\Server\Exception\InvalidGrantTypeException
 | 
						|
     * @expectedExceptionCode    9
 | 
						|
     */
 | 
						|
    public function test_getGrantType_fail()
 | 
						|
    {
 | 
						|
        $a = $this->returnDefault();
 | 
						|
        $a->getGrantType('blah');
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @expectedException        League\OAuth2\Server\Exception\ClientException
 | 
						|
     * @expectedExceptionCode    0
 | 
						|
     */
 | 
						|
    public function test_issueAccessToken_missingGrantType()
 | 
						|
    {
 | 
						|
        $a = $this->returnDefault();
 | 
						|
        $a->addGrantType(new League\OAuth2\Server\Grant\AuthCode($a));
 | 
						|
 | 
						|
        $a->issueAccessToken();
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @expectedException        League\OAuth2\Server\Exception\ClientException
 | 
						|
     * @expectedExceptionCode    7
 | 
						|
     */
 | 
						|
    public function test_issueAccessToken_badGrantType()
 | 
						|
    {
 | 
						|
        $a = $this->returnDefault();
 | 
						|
        $a->addGrantType(new League\OAuth2\Server\Grant\AuthCode($a));
 | 
						|
 | 
						|
        $a->issueAccessToken(array('grant_type' => 'foo'));
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @expectedException        League\OAuth2\Server\Exception\ClientException
 | 
						|
     * @expectedExceptionCode    0
 | 
						|
     */
 | 
						|
    public function test_issueAccessToken_missingClientId()
 | 
						|
    {
 | 
						|
        $a = $this->returnDefault();
 | 
						|
        $a->addGrantType(new League\OAuth2\Server\Grant\AuthCode($a));
 | 
						|
 | 
						|
        $a->issueAccessToken(array(
 | 
						|
            'grant_type'    =>  'authorization_code'
 | 
						|
        ));
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @expectedException        League\OAuth2\Server\Exception\ClientException
 | 
						|
     * @expectedExceptionCode    0
 | 
						|
     */
 | 
						|
    public function test_issueAccessToken_missingClientSecret()
 | 
						|
    {
 | 
						|
        $a = $this->returnDefault();
 | 
						|
        $a->addGrantType(new League\OAuth2\Server\Grant\AuthCode($a));
 | 
						|
 | 
						|
        $a->issueAccessToken(array(
 | 
						|
            'grant_type'    =>  'authorization_code',
 | 
						|
            'client_id' =>  1234
 | 
						|
        ));
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @expectedException        League\OAuth2\Server\Exception\ClientException
 | 
						|
     * @expectedExceptionCode    0
 | 
						|
     */
 | 
						|
    public function test_issueAccessToken_missingRedirectUri()
 | 
						|
    {
 | 
						|
        $a = $this->returnDefault();
 | 
						|
        $a->addGrantType(new League\OAuth2\Server\Grant\AuthCode($a));
 | 
						|
 | 
						|
        $a->issueAccessToken(array(
 | 
						|
            'grant_type'    =>  'authorization_code',
 | 
						|
            'client_id' =>  1234,
 | 
						|
            'client_secret' =>  5678
 | 
						|
        ));
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @expectedException        League\OAuth2\Server\Exception\ClientException
 | 
						|
     * @expectedExceptionCode    8
 | 
						|
     */
 | 
						|
    public function test_issueAccessToken_badClient()
 | 
						|
    {
 | 
						|
        $this->client->shouldReceive('getClient')->andReturn(false);
 | 
						|
 | 
						|
        $a = $this->returnDefault();
 | 
						|
        $a->addGrantType(new League\OAuth2\Server\Grant\AuthCode($a));
 | 
						|
 | 
						|
        $a->issueAccessToken(array(
 | 
						|
            'grant_type'    =>  'authorization_code',
 | 
						|
            'client_id' =>  1234,
 | 
						|
            'client_secret' =>  5678,
 | 
						|
            'redirect_uri'  =>  'http://foo/redirect'
 | 
						|
        ));
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @expectedException        League\OAuth2\Server\Exception\ClientException
 | 
						|
     * @expectedExceptionCode    0
 | 
						|
     */
 | 
						|
    public function test_issueAccessToken_missingCode()
 | 
						|
    {
 | 
						|
        $this->client->shouldReceive('getClient')->andReturn(array());
 | 
						|
 | 
						|
        $a = $this->returnDefault();
 | 
						|
        $a->addGrantType(new League\OAuth2\Server\Grant\AuthCode($a));
 | 
						|
 | 
						|
        $a->issueAccessToken(array(
 | 
						|
            'grant_type'    =>  'authorization_code',
 | 
						|
            'client_id' =>  1234,
 | 
						|
            'client_secret' =>  5678,
 | 
						|
            'redirect_uri'  =>  'http://foo/redirect'
 | 
						|
        ));
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @expectedException        League\OAuth2\Server\Exception\ClientException
 | 
						|
     * @expectedExceptionCode    9
 | 
						|
     */
 | 
						|
    public function test_issueAccessToken_badCode()
 | 
						|
    {
 | 
						|
        $this->client->shouldReceive('getClient')->andReturn(array());
 | 
						|
        $this->session->shouldReceive('validateAuthCode')->andReturn(false);
 | 
						|
 | 
						|
        $a = $this->returnDefault();
 | 
						|
        $a->addGrantType(new League\OAuth2\Server\Grant\AuthCode($a));
 | 
						|
 | 
						|
        $a->issueAccessToken(array(
 | 
						|
            'grant_type'    =>  'authorization_code',
 | 
						|
            'client_id' =>  1234,
 | 
						|
            'client_secret' =>  5678,
 | 
						|
            'redirect_uri'  =>  'http://foo/redirect',
 | 
						|
            'code'  =>  'foobar'
 | 
						|
        ));
 | 
						|
    }
 | 
						|
 | 
						|
    public function test_issueAccessToken_passedInput()
 | 
						|
    {
 | 
						|
        $this->client->shouldReceive('getClient')->andReturn(array(
 | 
						|
            'client_id' =>  1234,
 | 
						|
            'client_secret' =>  5678,
 | 
						|
            'redirect_uri'  =>  'http://foo/redirect',
 | 
						|
            'name'  =>  'Example Client'
 | 
						|
        ));
 | 
						|
 | 
						|
        $this->session->shouldReceive('validateAuthCode')->andReturn(array(
 | 
						|
            'session_id'    =>  1,
 | 
						|
            'authcode_id' =>  1
 | 
						|
        ));
 | 
						|
        $this->session->shouldReceive('updateSession')->andReturn(null);
 | 
						|
        $this->session->shouldReceive('removeAuthCode')->andReturn(null);
 | 
						|
        $this->session->shouldReceive('associateAccessToken')->andReturn(1);
 | 
						|
        $this->session->shouldReceive('associateScope')->andReturn(null);
 | 
						|
        $this->session->shouldReceive('getAuthCodeScopes')->andReturn(array('scope_id' => 1));
 | 
						|
 | 
						|
        $a = $this->returnDefault();
 | 
						|
        $a->addGrantType(new League\OAuth2\Server\Grant\AuthCode($a));
 | 
						|
 | 
						|
        $v = $a->issueAccessToken(array(
 | 
						|
            'grant_type'    =>  'authorization_code',
 | 
						|
            'client_id' =>  1234,
 | 
						|
            'client_secret' =>  5678,
 | 
						|
            'redirect_uri'  =>  'http://foo/redirect',
 | 
						|
            'code'  =>  'foobar'
 | 
						|
        ));
 | 
						|
 | 
						|
        $this->assertArrayHasKey('access_token', $v);
 | 
						|
        $this->assertArrayHasKey('token_type', $v);
 | 
						|
        $this->assertArrayHasKey('expires', $v);
 | 
						|
        $this->assertArrayHasKey('expires_in', $v);
 | 
						|
 | 
						|
        $this->assertEquals($a->getAccessTokenTTL(), $v['expires_in']);
 | 
						|
        $this->assertEquals(time()+$a->getAccessTokenTTL(), $v['expires']);
 | 
						|
    }
 | 
						|
 | 
						|
    public function test_issueAccessToken()
 | 
						|
    {
 | 
						|
        $this->client->shouldReceive('getClient')->andReturn(array(
 | 
						|
            'client_id' =>  1234,
 | 
						|
            'client_secret' =>  5678,
 | 
						|
            'redirect_uri'  =>  'http://foo/redirect',
 | 
						|
            'name'  =>  'Example Client'
 | 
						|
        ));
 | 
						|
 | 
						|
        $this->session->shouldReceive('validateAuthCode')->andReturn(1);
 | 
						|
        $this->session->shouldReceive('updateSession')->andReturn(null);
 | 
						|
        $this->session->shouldReceive('removeAuthCode')->andReturn(null);
 | 
						|
        $this->session->shouldReceive('associateAccessToken')->andReturn(1);
 | 
						|
        $this->session->shouldReceive('getAuthCodeScopes')->andReturn(array('scope_id' => 1));
 | 
						|
        $this->session->shouldReceive('associateScope')->andReturn(null);
 | 
						|
 | 
						|
        $a = $this->returnDefault();
 | 
						|
        $a->addGrantType(new League\OAuth2\Server\Grant\AuthCode($a));
 | 
						|
 | 
						|
        $_POST['grant_type'] = 'authorization_code';
 | 
						|
        $_POST['client_id'] = 1234;
 | 
						|
        $_POST['client_secret'] = 5678;
 | 
						|
        $_POST['redirect_uri'] = 'http://foo/redirect';
 | 
						|
        $_POST['code'] = 'foobar';
 | 
						|
 | 
						|
        $request = new League\OAuth2\Server\Util\Request(array(), $_POST);
 | 
						|
        $a->setRequest($request);
 | 
						|
 | 
						|
        $v = $a->issueAccessToken();
 | 
						|
 | 
						|
        $this->assertArrayHasKey('access_token', $v);
 | 
						|
        $this->assertArrayHasKey('token_type', $v);
 | 
						|
        $this->assertArrayHasKey('expires', $v);
 | 
						|
        $this->assertArrayHasKey('expires_in', $v);
 | 
						|
 | 
						|
        $this->assertEquals($a->getAccessTokenTTL(), $v['expires_in']);
 | 
						|
        $this->assertEquals(time()+$a->getAccessTokenTTL(), $v['expires']);
 | 
						|
    }
 | 
						|
 | 
						|
    public function test_issueAccessToken_customExpiresIn()
 | 
						|
    {
 | 
						|
        $this->client->shouldReceive('getClient')->andReturn(array(
 | 
						|
            'client_id' =>  1234,
 | 
						|
            'client_secret' =>  5678,
 | 
						|
            'redirect_uri'  =>  'http://foo/redirect',
 | 
						|
            'name'  =>  'Example Client'
 | 
						|
        ));
 | 
						|
 | 
						|
        $this->session->shouldReceive('validateAuthCode')->andReturn(1);
 | 
						|
        $this->session->shouldReceive('updateSession')->andReturn(null);
 | 
						|
        $this->session->shouldReceive('removeAuthCode')->andReturn(null);
 | 
						|
        $this->session->shouldReceive('associateAccessToken')->andReturn(1);
 | 
						|
        $this->session->shouldReceive('getAuthCodeScopes')->andReturn(array('scope_id' => 1));
 | 
						|
        $this->session->shouldReceive('associateScope')->andReturn(null);
 | 
						|
 | 
						|
        $a = $this->returnDefault();
 | 
						|
        $grant = new League\OAuth2\Server\Grant\AuthCode($a);
 | 
						|
        $grant->setAccessTokenTTL(30);
 | 
						|
        $a->addGrantType($grant);
 | 
						|
 | 
						|
        $_POST['grant_type'] = 'authorization_code';
 | 
						|
        $_POST['client_id'] = 1234;
 | 
						|
        $_POST['client_secret'] = 5678;
 | 
						|
        $_POST['redirect_uri'] = 'http://foo/redirect';
 | 
						|
        $_POST['code'] = 'foobar';
 | 
						|
 | 
						|
        $request = new League\OAuth2\Server\Util\Request(array(), $_POST);
 | 
						|
        $a->setRequest($request);
 | 
						|
 | 
						|
        $v = $a->issueAccessToken();
 | 
						|
 | 
						|
        $this->assertArrayHasKey('access_token', $v);
 | 
						|
        $this->assertArrayHasKey('token_type', $v);
 | 
						|
        $this->assertArrayHasKey('expires', $v);
 | 
						|
        $this->assertArrayHasKey('expires_in', $v);
 | 
						|
 | 
						|
        $this->assertNotEquals($a->getAccessTokenTTL(), $v['expires_in']);
 | 
						|
        $this->assertNotEquals(time()+$a->getAccessTokenTTL(), $v['expires']);
 | 
						|
        $this->assertEquals(30, $v['expires_in']);
 | 
						|
        $this->assertEquals(time()+30, $v['expires']);
 | 
						|
    }
 | 
						|
 | 
						|
    public function test_issueAccessToken_HTTP_auth()
 | 
						|
    {
 | 
						|
        $this->client->shouldReceive('getClient')->andReturn(array(
 | 
						|
            'client_id' =>  1234,
 | 
						|
            'client_secret' =>  5678,
 | 
						|
            'redirect_uri'  =>  'http://foo/redirect',
 | 
						|
            'name'  =>  'Example Client'
 | 
						|
        ));
 | 
						|
 | 
						|
        $this->session->shouldReceive('validateAuthCode')->andReturn(1);
 | 
						|
        $this->session->shouldReceive('updateSession')->andReturn(null);
 | 
						|
        $this->session->shouldReceive('removeAuthCode')->andReturn(null);
 | 
						|
        $this->session->shouldReceive('associateAccessToken')->andReturn(1);
 | 
						|
        $this->session->shouldReceive('getAuthCodeScopes')->andReturn(array('scope_id' => 1));
 | 
						|
        $this->session->shouldReceive('associateScope')->andReturn(null);
 | 
						|
 | 
						|
        $a = $this->returnDefault();
 | 
						|
        $a->addGrantType(new League\OAuth2\Server\Grant\AuthCode($a));
 | 
						|
 | 
						|
        $_POST['grant_type'] = 'authorization_code';
 | 
						|
        $_SERVER['PHP_AUTH_USER'] = 1234;
 | 
						|
        $_SERVER['PHP_AUTH_PW'] = 5678;
 | 
						|
        $_POST['redirect_uri'] = 'http://foo/redirect';
 | 
						|
        $_POST['code'] = 'foobar';
 | 
						|
 | 
						|
        $request = new League\OAuth2\Server\Util\Request(array(), $_POST, array(), array(), $_SERVER);
 | 
						|
        $a->setRequest($request);
 | 
						|
 | 
						|
        $v = $a->issueAccessToken();
 | 
						|
 | 
						|
        $this->assertArrayHasKey('access_token', $v);
 | 
						|
        $this->assertArrayHasKey('token_type', $v);
 | 
						|
        $this->assertArrayHasKey('expires', $v);
 | 
						|
        $this->assertArrayHasKey('expires_in', $v);
 | 
						|
 | 
						|
        $this->assertEquals($a->getAccessTokenTTL(), $v['expires_in']);
 | 
						|
        $this->assertEquals(time()+$a->getAccessTokenTTL(), $v['expires']);
 | 
						|
    }
 | 
						|
 | 
						|
    public function tearDown() {
 | 
						|
        M::close();
 | 
						|
    }
 | 
						|
} |