mirror of
				https://github.com/elyby/oauth2-server.git
				synced 2025-05-31 14:12:07 +05:30 
			
		
		
		
	Cleaned up tests
This commit is contained in:
		@@ -1,20 +1,19 @@
 | 
			
		||||
<?php
 | 
			
		||||
 | 
			
		||||
namespace LeagueTests\Util;
 | 
			
		||||
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'));
 | 
			
		||||
    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);
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
        $this->assertEquals('https://foobar/?foo=bar', $v1);
 | 
			
		||||
        $this->assertEquals('https://foobar/#foo=bar', $v2);
 | 
			
		||||
        $this->assertEquals('https://foobar/?foo=bar&bar=foo', $v3);
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -1,13 +1,12 @@
 | 
			
		||||
<?php
 | 
			
		||||
 | 
			
		||||
namespace LeagueTests\Util;
 | 
			
		||||
namespace LeagueTests\util;
 | 
			
		||||
 | 
			
		||||
use \League\OAuth2\Server\Util\SecureKey;
 | 
			
		||||
use \Mockery as M;
 | 
			
		||||
 | 
			
		||||
class SecureKeyTest extends \PHPUnit_Framework_TestCase
 | 
			
		||||
{
 | 
			
		||||
	function testGenerate()
 | 
			
		||||
    public function testGenerate()
 | 
			
		||||
    {
 | 
			
		||||
        $v1 = SecureKey::generate();
 | 
			
		||||
        $v2 = SecureKey::generate();
 | 
			
		||||
@@ -34,4 +33,4 @@ class SecureKeyTest extends \PHPUnit_Framework_TestCase
 | 
			
		||||
        $this->assertSame($algorithm, SecureKey::getAlgorithm());
 | 
			
		||||
        $this->assertEquals($result, SecureKey::generate(11));
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user