mirror of
https://github.com/elyby/oauth2-server.git
synced 2025-01-20 18:42:49 +05:30
Applied fixes from StyleCI
This commit is contained in:
parent
e2794c47af
commit
997d390f3d
@ -2,8 +2,6 @@
|
|||||||
|
|
||||||
namespace League\OAuth2\Server\Entities\Interfaces;
|
namespace League\OAuth2\Server\Entities\Interfaces;
|
||||||
|
|
||||||
use Lcobucci\JWT\Builder;
|
|
||||||
|
|
||||||
interface AccessTokenEntityInterface extends TokenInterface
|
interface AccessTokenEntityInterface extends TokenInterface
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
@ -50,6 +50,7 @@ class OAuthServerException extends \Exception
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Invalid grant type error.
|
* Invalid grant type error.
|
||||||
|
*
|
||||||
* @return static
|
* @return static
|
||||||
*/
|
*/
|
||||||
public static function invalidGrantType()
|
public static function invalidGrantType()
|
||||||
|
@ -16,7 +16,6 @@ use League\Event\Event;
|
|||||||
use League\OAuth2\Server\Entities\AccessTokenEntity;
|
use League\OAuth2\Server\Entities\AccessTokenEntity;
|
||||||
use League\OAuth2\Server\Entities\AuthCodeEntity;
|
use League\OAuth2\Server\Entities\AuthCodeEntity;
|
||||||
use League\OAuth2\Server\Entities\Interfaces\ClientEntityInterface;
|
use League\OAuth2\Server\Entities\Interfaces\ClientEntityInterface;
|
||||||
use League\OAuth2\Server\Entities\Interfaces\ScopeEntityInterface;
|
|
||||||
use League\OAuth2\Server\Entities\RefreshTokenEntity;
|
use League\OAuth2\Server\Entities\RefreshTokenEntity;
|
||||||
use League\OAuth2\Server\Entities\ScopeEntity;
|
use League\OAuth2\Server\Entities\ScopeEntity;
|
||||||
use League\OAuth2\Server\Exception\OAuthServerException;
|
use League\OAuth2\Server\Exception\OAuthServerException;
|
||||||
|
@ -2,7 +2,6 @@
|
|||||||
|
|
||||||
namespace League\OAuth2\Server\Grant;
|
namespace League\OAuth2\Server\Grant;
|
||||||
|
|
||||||
use DateInterval;
|
|
||||||
use League\Event\Event;
|
use League\Event\Event;
|
||||||
use League\OAuth2\Server\Entities\Interfaces\ClientEntityInterface;
|
use League\OAuth2\Server\Entities\Interfaces\ClientEntityInterface;
|
||||||
use League\OAuth2\Server\Entities\Interfaces\UserEntityInterface;
|
use League\OAuth2\Server\Entities\Interfaces\UserEntityInterface;
|
||||||
|
@ -10,9 +10,7 @@
|
|||||||
*/
|
*/
|
||||||
namespace League\OAuth2\Server\ResponseTypes;
|
namespace League\OAuth2\Server\ResponseTypes;
|
||||||
|
|
||||||
use Lcobucci\JWT\Builder;
|
|
||||||
use Lcobucci\JWT\Parser;
|
use Lcobucci\JWT\Parser;
|
||||||
use Lcobucci\JWT\Signer\Key;
|
|
||||||
use Lcobucci\JWT\Signer\Rsa\Sha256;
|
use Lcobucci\JWT\Signer\Rsa\Sha256;
|
||||||
use League\OAuth2\Server\Entities\Interfaces\RefreshTokenEntityInterface;
|
use League\OAuth2\Server\Entities\Interfaces\RefreshTokenEntityInterface;
|
||||||
use League\OAuth2\Server\Exception\OAuthServerException;
|
use League\OAuth2\Server\Exception\OAuthServerException;
|
||||||
|
@ -7,16 +7,15 @@ use League\OAuth2\Server\Entities\Interfaces\AccessTokenEntityInterface;
|
|||||||
use League\OAuth2\Server\Entities\Interfaces\RefreshTokenEntityInterface;
|
use League\OAuth2\Server\Entities\Interfaces\RefreshTokenEntityInterface;
|
||||||
use League\OAuth2\Server\Exception\OAuthServerException;
|
use League\OAuth2\Server\Exception\OAuthServerException;
|
||||||
use League\OAuth2\Server\Grant\AuthCodeGrant;
|
use League\OAuth2\Server\Grant\AuthCodeGrant;
|
||||||
|
use League\OAuth2\Server\Repositories\AccessTokenRepositoryInterface;
|
||||||
use League\OAuth2\Server\Repositories\AuthCodeRepositoryInterface;
|
use League\OAuth2\Server\Repositories\AuthCodeRepositoryInterface;
|
||||||
use League\OAuth2\Server\Repositories\ClientRepositoryInterface;
|
use League\OAuth2\Server\Repositories\ClientRepositoryInterface;
|
||||||
use League\OAuth2\Server\Repositories\RefreshTokenRepositoryInterface;
|
use League\OAuth2\Server\Repositories\RefreshTokenRepositoryInterface;
|
||||||
use League\OAuth2\Server\Repositories\AccessTokenRepositoryInterface;
|
|
||||||
use League\OAuth2\Server\Repositories\UserRepositoryInterface;
|
use League\OAuth2\Server\Repositories\UserRepositoryInterface;
|
||||||
use League\OAuth2\Server\Utils\KeyCrypt;
|
use League\OAuth2\Server\Utils\KeyCrypt;
|
||||||
use LeagueTests\Stubs\StubResponseType;
|
use LeagueTests\Stubs\StubResponseType;
|
||||||
use LeagueTests\Stubs\UserEntity;
|
use LeagueTests\Stubs\UserEntity;
|
||||||
use Psr\Http\Message\ResponseInterface;
|
use Psr\Http\Message\ResponseInterface;
|
||||||
use Zend\Diactoros\Response;
|
|
||||||
use Zend\Diactoros\ServerRequest;
|
use Zend\Diactoros\ServerRequest;
|
||||||
|
|
||||||
class AuthCodeGrantTest extends \PHPUnit_Framework_TestCase
|
class AuthCodeGrantTest extends \PHPUnit_Framework_TestCase
|
||||||
@ -46,8 +45,7 @@ class AuthCodeGrantTest extends \PHPUnit_Framework_TestCase
|
|||||||
|
|
||||||
$request = new ServerRequest(
|
$request = new ServerRequest(
|
||||||
[],
|
[],
|
||||||
[]
|
[],
|
||||||
,
|
|
||||||
null,
|
null,
|
||||||
null,
|
null,
|
||||||
'php://input',
|
'php://input',
|
||||||
@ -90,8 +88,7 @@ class AuthCodeGrantTest extends \PHPUnit_Framework_TestCase
|
|||||||
'HTTP_HOST' => 'auth-server.tld',
|
'HTTP_HOST' => 'auth-server.tld',
|
||||||
'REQUEST_URI' => '/authorize',
|
'REQUEST_URI' => '/authorize',
|
||||||
],
|
],
|
||||||
[]
|
[],
|
||||||
,
|
|
||||||
null,
|
null,
|
||||||
'POST',
|
'POST',
|
||||||
'php://input',
|
'php://input',
|
||||||
@ -148,8 +145,7 @@ class AuthCodeGrantTest extends \PHPUnit_Framework_TestCase
|
|||||||
'HTTP_HOST' => 'auth-server.tld',
|
'HTTP_HOST' => 'auth-server.tld',
|
||||||
'REQUEST_URI' => '/authorize',
|
'REQUEST_URI' => '/authorize',
|
||||||
],
|
],
|
||||||
[]
|
[],
|
||||||
,
|
|
||||||
null,
|
null,
|
||||||
'POST',
|
'POST',
|
||||||
'php://input',
|
'php://input',
|
||||||
@ -211,8 +207,7 @@ class AuthCodeGrantTest extends \PHPUnit_Framework_TestCase
|
|||||||
'HTTP_HOST' => 'auth-server.tld',
|
'HTTP_HOST' => 'auth-server.tld',
|
||||||
'REQUEST_URI' => '/authorize',
|
'REQUEST_URI' => '/authorize',
|
||||||
],
|
],
|
||||||
[]
|
[],
|
||||||
,
|
|
||||||
null,
|
null,
|
||||||
'POST',
|
'POST',
|
||||||
'php://input',
|
'php://input',
|
||||||
@ -263,8 +258,7 @@ class AuthCodeGrantTest extends \PHPUnit_Framework_TestCase
|
|||||||
'HTTP_HOST' => 'auth-server.tld',
|
'HTTP_HOST' => 'auth-server.tld',
|
||||||
'REQUEST_URI' => '/authorize',
|
'REQUEST_URI' => '/authorize',
|
||||||
],
|
],
|
||||||
[]
|
[],
|
||||||
,
|
|
||||||
null,
|
null,
|
||||||
'POST',
|
'POST',
|
||||||
'php://input',
|
'php://input',
|
||||||
@ -287,7 +281,7 @@ class AuthCodeGrantTest extends \PHPUnit_Framework_TestCase
|
|||||||
);
|
);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
/** @var StubResponseType $response */
|
/* @var StubResponseType $response */
|
||||||
$grant->respondToRequest($request, new StubResponseType(), new \DateInterval('PT10M'));
|
$grant->respondToRequest($request, new StubResponseType(), new \DateInterval('PT10M'));
|
||||||
} catch (OAuthServerException $e) {
|
} catch (OAuthServerException $e) {
|
||||||
$this->assertEquals($e->getMessage(), 'Client authentication failed');
|
$this->assertEquals($e->getMessage(), 'Client authentication failed');
|
||||||
@ -319,8 +313,7 @@ class AuthCodeGrantTest extends \PHPUnit_Framework_TestCase
|
|||||||
'HTTP_HOST' => 'auth-server.tld',
|
'HTTP_HOST' => 'auth-server.tld',
|
||||||
'REQUEST_URI' => '/authorize',
|
'REQUEST_URI' => '/authorize',
|
||||||
],
|
],
|
||||||
[]
|
[],
|
||||||
,
|
|
||||||
null,
|
null,
|
||||||
'POST',
|
'POST',
|
||||||
'php://input',
|
'php://input',
|
||||||
@ -334,7 +327,7 @@ class AuthCodeGrantTest extends \PHPUnit_Framework_TestCase
|
|||||||
[
|
[
|
||||||
'response_type' => 'code',
|
'response_type' => 'code',
|
||||||
'client_id' => 'foo',
|
'client_id' => 'foo',
|
||||||
'redirect_uri' => 'sdfsdf'
|
'redirect_uri' => 'sdfsdf',
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
'username' => 'alex',
|
'username' => 'alex',
|
||||||
@ -344,7 +337,7 @@ class AuthCodeGrantTest extends \PHPUnit_Framework_TestCase
|
|||||||
);
|
);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
/** @var StubResponseType $response */
|
/* @var StubResponseType $response */
|
||||||
$grant->respondToRequest($request, new StubResponseType(), new \DateInterval('PT10M'));
|
$grant->respondToRequest($request, new StubResponseType(), new \DateInterval('PT10M'));
|
||||||
} catch (OAuthServerException $e) {
|
} catch (OAuthServerException $e) {
|
||||||
$this->assertEquals($e->getMessage(), 'Client authentication failed');
|
$this->assertEquals($e->getMessage(), 'Client authentication failed');
|
||||||
@ -383,8 +376,7 @@ class AuthCodeGrantTest extends \PHPUnit_Framework_TestCase
|
|||||||
'HTTP_HOST' => 'auth-server.tld',
|
'HTTP_HOST' => 'auth-server.tld',
|
||||||
'REQUEST_URI' => '/authorize',
|
'REQUEST_URI' => '/authorize',
|
||||||
],
|
],
|
||||||
[]
|
[],
|
||||||
,
|
|
||||||
null,
|
null,
|
||||||
'POST',
|
'POST',
|
||||||
'php://input',
|
'php://input',
|
||||||
@ -436,8 +428,7 @@ class AuthCodeGrantTest extends \PHPUnit_Framework_TestCase
|
|||||||
'HTTP_HOST' => 'auth-server.tld',
|
'HTTP_HOST' => 'auth-server.tld',
|
||||||
'REQUEST_URI' => '/authorize',
|
'REQUEST_URI' => '/authorize',
|
||||||
],
|
],
|
||||||
[]
|
[],
|
||||||
,
|
|
||||||
null,
|
null,
|
||||||
'POST',
|
'POST',
|
||||||
'php://input',
|
'php://input',
|
||||||
@ -491,8 +482,7 @@ class AuthCodeGrantTest extends \PHPUnit_Framework_TestCase
|
|||||||
'HTTP_HOST' => 'auth-server.tld',
|
'HTTP_HOST' => 'auth-server.tld',
|
||||||
'REQUEST_URI' => '/authorize',
|
'REQUEST_URI' => '/authorize',
|
||||||
],
|
],
|
||||||
[]
|
[],
|
||||||
,
|
|
||||||
null,
|
null,
|
||||||
'POST',
|
'POST',
|
||||||
'php://input',
|
'php://input',
|
||||||
@ -547,8 +537,7 @@ class AuthCodeGrantTest extends \PHPUnit_Framework_TestCase
|
|||||||
'HTTP_HOST' => 'auth-server.tld',
|
'HTTP_HOST' => 'auth-server.tld',
|
||||||
'REQUEST_URI' => '/authorize',
|
'REQUEST_URI' => '/authorize',
|
||||||
],
|
],
|
||||||
[]
|
[],
|
||||||
,
|
|
||||||
null,
|
null,
|
||||||
'POST',
|
'POST',
|
||||||
'php://input',
|
'php://input',
|
||||||
@ -607,8 +596,7 @@ class AuthCodeGrantTest extends \PHPUnit_Framework_TestCase
|
|||||||
|
|
||||||
$request = new ServerRequest(
|
$request = new ServerRequest(
|
||||||
[],
|
[],
|
||||||
[]
|
[],
|
||||||
,
|
|
||||||
null,
|
null,
|
||||||
'POST',
|
'POST',
|
||||||
'php://input',
|
'php://input',
|
||||||
@ -667,8 +655,7 @@ class AuthCodeGrantTest extends \PHPUnit_Framework_TestCase
|
|||||||
|
|
||||||
$request = new ServerRequest(
|
$request = new ServerRequest(
|
||||||
[],
|
[],
|
||||||
[]
|
[],
|
||||||
,
|
|
||||||
null,
|
null,
|
||||||
'POST',
|
'POST',
|
||||||
'php://input',
|
'php://input',
|
||||||
@ -680,7 +667,7 @@ class AuthCodeGrantTest extends \PHPUnit_Framework_TestCase
|
|||||||
]
|
]
|
||||||
);
|
);
|
||||||
|
|
||||||
/** @var StubResponseType $response */
|
/* @var StubResponseType $response */
|
||||||
$grant->respondToRequest($request, new StubResponseType(), new \DateInterval('PT10M'));
|
$grant->respondToRequest($request, new StubResponseType(), new \DateInterval('PT10M'));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -714,8 +701,7 @@ class AuthCodeGrantTest extends \PHPUnit_Framework_TestCase
|
|||||||
|
|
||||||
$request = new ServerRequest(
|
$request = new ServerRequest(
|
||||||
[],
|
[],
|
||||||
[]
|
[],
|
||||||
,
|
|
||||||
null,
|
null,
|
||||||
'POST',
|
'POST',
|
||||||
'php://input',
|
'php://input',
|
||||||
@ -730,7 +716,7 @@ class AuthCodeGrantTest extends \PHPUnit_Framework_TestCase
|
|||||||
]
|
]
|
||||||
);
|
);
|
||||||
|
|
||||||
/** @var StubResponseType $response */
|
/* @var StubResponseType $response */
|
||||||
$grant->respondToRequest($request, new StubResponseType(), new \DateInterval('PT10M'));
|
$grant->respondToRequest($request, new StubResponseType(), new \DateInterval('PT10M'));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -766,8 +752,7 @@ class AuthCodeGrantTest extends \PHPUnit_Framework_TestCase
|
|||||||
|
|
||||||
$request = new ServerRequest(
|
$request = new ServerRequest(
|
||||||
[],
|
[],
|
||||||
[]
|
[],
|
||||||
,
|
|
||||||
null,
|
null,
|
||||||
'POST',
|
'POST',
|
||||||
'php://input',
|
'php://input',
|
||||||
@ -795,7 +780,7 @@ class AuthCodeGrantTest extends \PHPUnit_Framework_TestCase
|
|||||||
);
|
);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
/** @var StubResponseType $response */
|
/* @var StubResponseType $response */
|
||||||
$grant->respondToRequest($request, new StubResponseType(), new \DateInterval('PT10M'));
|
$grant->respondToRequest($request, new StubResponseType(), new \DateInterval('PT10M'));
|
||||||
} catch (OAuthServerException $e) {
|
} catch (OAuthServerException $e) {
|
||||||
$this->assertEquals($e->getHint(), 'Authorization code has expired');
|
$this->assertEquals($e->getHint(), 'Authorization code has expired');
|
||||||
@ -837,8 +822,7 @@ class AuthCodeGrantTest extends \PHPUnit_Framework_TestCase
|
|||||||
|
|
||||||
$request = new ServerRequest(
|
$request = new ServerRequest(
|
||||||
[],
|
[],
|
||||||
[]
|
[],
|
||||||
,
|
|
||||||
null,
|
null,
|
||||||
'POST',
|
'POST',
|
||||||
'php://input',
|
'php://input',
|
||||||
@ -866,7 +850,7 @@ class AuthCodeGrantTest extends \PHPUnit_Framework_TestCase
|
|||||||
);
|
);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
/** @var StubResponseType $response */
|
/* @var StubResponseType $response */
|
||||||
$grant->respondToRequest($request, new StubResponseType(), new \DateInterval('PT10M'));
|
$grant->respondToRequest($request, new StubResponseType(), new \DateInterval('PT10M'));
|
||||||
} catch (OAuthServerException $e) {
|
} catch (OAuthServerException $e) {
|
||||||
$this->assertEquals($e->getHint(), 'Authorization code has been revoked');
|
$this->assertEquals($e->getHint(), 'Authorization code has been revoked');
|
||||||
@ -905,8 +889,7 @@ class AuthCodeGrantTest extends \PHPUnit_Framework_TestCase
|
|||||||
|
|
||||||
$request = new ServerRequest(
|
$request = new ServerRequest(
|
||||||
[],
|
[],
|
||||||
[]
|
[],
|
||||||
,
|
|
||||||
null,
|
null,
|
||||||
'POST',
|
'POST',
|
||||||
'php://input',
|
'php://input',
|
||||||
@ -934,7 +917,7 @@ class AuthCodeGrantTest extends \PHPUnit_Framework_TestCase
|
|||||||
);
|
);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
/** @var StubResponseType $response */
|
/* @var StubResponseType $response */
|
||||||
$grant->respondToRequest($request, new StubResponseType(), new \DateInterval('PT10M'));
|
$grant->respondToRequest($request, new StubResponseType(), new \DateInterval('PT10M'));
|
||||||
} catch (OAuthServerException $e) {
|
} catch (OAuthServerException $e) {
|
||||||
$this->assertEquals($e->getHint(), 'Authorization code was not issued to this client');
|
$this->assertEquals($e->getHint(), 'Authorization code was not issued to this client');
|
||||||
@ -973,8 +956,7 @@ class AuthCodeGrantTest extends \PHPUnit_Framework_TestCase
|
|||||||
|
|
||||||
$request = new ServerRequest(
|
$request = new ServerRequest(
|
||||||
[],
|
[],
|
||||||
[]
|
[],
|
||||||
,
|
|
||||||
null,
|
null,
|
||||||
'POST',
|
'POST',
|
||||||
'php://input',
|
'php://input',
|
||||||
@ -990,7 +972,7 @@ class AuthCodeGrantTest extends \PHPUnit_Framework_TestCase
|
|||||||
);
|
);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
/** @var StubResponseType $response */
|
/* @var StubResponseType $response */
|
||||||
$grant->respondToRequest($request, new StubResponseType(), new \DateInterval('PT10M'));
|
$grant->respondToRequest($request, new StubResponseType(), new \DateInterval('PT10M'));
|
||||||
} catch (OAuthServerException $e) {
|
} catch (OAuthServerException $e) {
|
||||||
$this->assertEquals($e->getHint(), 'Cannot decrypt the authorization code');
|
$this->assertEquals($e->getHint(), 'Cannot decrypt the authorization code');
|
||||||
|
@ -5,7 +5,6 @@ namespace LeagueTests\Grant;
|
|||||||
use League\OAuth2\Server\Entities\ClientEntity;
|
use League\OAuth2\Server\Entities\ClientEntity;
|
||||||
use League\OAuth2\Server\Entities\Interfaces\AccessTokenEntityInterface;
|
use League\OAuth2\Server\Entities\Interfaces\AccessTokenEntityInterface;
|
||||||
use League\OAuth2\Server\Entities\Interfaces\RefreshTokenEntityInterface;
|
use League\OAuth2\Server\Entities\Interfaces\RefreshTokenEntityInterface;
|
||||||
use League\OAuth2\Server\Exception\OAuthServerException;
|
|
||||||
use League\OAuth2\Server\Grant\PasswordGrant;
|
use League\OAuth2\Server\Grant\PasswordGrant;
|
||||||
use League\OAuth2\Server\Repositories\AccessTokenRepositoryInterface;
|
use League\OAuth2\Server\Repositories\AccessTokenRepositoryInterface;
|
||||||
use League\OAuth2\Server\Repositories\ClientRepositoryInterface;
|
use League\OAuth2\Server\Repositories\ClientRepositoryInterface;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user