mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-11-02 00:43:11 +05:30
35 lines
1.1 KiB
PHP
35 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace LeagueTests;
|
|
|
|
use League\OAuth2\Server\Exception\OAuthException;
|
|
|
|
class OAuthExceptionTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
public function testGetHttpHeaders()
|
|
{
|
|
$exception = new OAuthException();
|
|
|
|
$exception->httpStatusCode = 400;
|
|
$this->assertSame($exception->getHttpHeaders(), ['HTTP/1.1 400 Bad Request']);
|
|
|
|
$exception->httpStatusCode = 401;
|
|
$this->assertSame($exception->getHttpHeaders(), ['HTTP/1.1 401 Unauthorized']);
|
|
|
|
$exception->httpStatusCode = 500;
|
|
$this->assertSame($exception->getHttpHeaders(), ['HTTP/1.1 500 Internal Server Error']);
|
|
|
|
$exception->httpStatusCode = 501;
|
|
$this->assertSame($exception->getHttpHeaders(), ['HTTP/1.1 501 Not Implemented']);
|
|
}
|
|
|
|
public function testShouldRedirect()
|
|
{
|
|
$exception = new OAuthException();
|
|
$exception->redirectUri = 'http://example.com/';
|
|
$exception->errorType = 'Error';
|
|
$this->assertTrue($exception->shouldRedirect());
|
|
$this->assertEquals('http://example.com/?error=Error&message=An+error+occured', $exception->getRedirectUri());
|
|
}
|
|
}
|