mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-11-02 00:43:11 +05:30
20 lines
617 B
PHP
20 lines
617 B
PHP
<?php
|
|
|
|
namespace LeagueTests\util;
|
|
|
|
use League\OAuth2\Server\Util\RedirectUri;
|
|
|
|
class RedirectUriTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
public 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);
|
|
}
|
|
}
|