oauth2-server/tests/util/RedirectUriTest.php
2014-01-16 16:50:30 +00:00

20 lines
583 B
PHP

<?php
namespace LeagueTests\Util;
use League\OAuth2\Server\Util\RedirectUri;
use \Mockery as M;
class RedirectUriTest extends \PHPUnit_Framework_TestCase
{
function testMake()
{
$v1 = RedirectUri::make('https://foobar/', array('foo'=>'bar'));
$v2 = RedirectUri::make('https://foobar/', array('foo'=>'bar'), '#');
$v3 = RedirectUri::make('https://foobar/', array('foo'=>'bar', 'bar' => 'foo'));
$this->assertEquals('https://foobar/?foo=bar', $v1);
$this->assertEquals('https://foobar/#foo=bar', $v2);
$this->assertEquals('https://foobar/?foo=bar&bar=foo', $v3);
}
}