oauth2-server/tests/util/RedirectUriTest.php

20 lines
617 B
PHP
Raw Normal View History

2013-02-04 19:46:29 +00:00
<?php
2014-05-03 10:55:25 +01:00
namespace LeagueTests\util;
2014-01-16 16:50:30 +00:00
use League\OAuth2\Server\Util\RedirectUri;
class RedirectUriTest extends \PHPUnit_Framework_TestCase
2013-02-04 19:46:29 +00:00
{
2014-05-03 10:55:25 +01:00
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'));
2013-02-04 19:46:29 +00:00
2014-05-03 10:55:25 +01:00
$this->assertEquals('https://foobar/?foo=bar', $v1);
$this->assertEquals('https://foobar/#foo=bar', $v2);
$this->assertEquals('https://foobar/?foo=bar&bar=foo', $v3);
}
}