2013-02-05 01:16:29 +05:30
|
|
|
<?php
|
|
|
|
|
|
|
|
class Secure_Key_test extends PHPUnit_Framework_TestCase
|
|
|
|
{
|
2014-06-01 03:00:32 +05:30
|
|
|
function test_make()
|
|
|
|
{
|
|
|
|
$v1 = League\OAuth2\Server\Util\SecureKey::make();
|
|
|
|
$v2 = League\OAuth2\Server\Util\SecureKey::make();
|
|
|
|
$v3 = League\OAuth2\Server\Util\SecureKey::make(50);
|
2013-02-05 01:16:29 +05:30
|
|
|
|
2014-06-01 03:00:32 +05:30
|
|
|
$this->assertEquals(40, strlen($v1));
|
|
|
|
$this->assertTrue($v1 !== $v2);
|
|
|
|
$this->assertEquals(50, strlen($v3));
|
|
|
|
}
|
2014-03-11 22:09:09 +05:30
|
|
|
|
|
|
|
public function test_make_with_different_algorithm()
|
|
|
|
{
|
|
|
|
$algorithm = $this->getMock('League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface');
|
|
|
|
|
|
|
|
$result = 'dasdsdsaads';
|
|
|
|
$algorithm
|
|
|
|
->expects($this->once())
|
|
|
|
->method('make')
|
|
|
|
->with(11)
|
|
|
|
->will($this->returnValue($result))
|
|
|
|
;
|
|
|
|
|
|
|
|
League\OAuth2\Server\Util\SecureKey::setAlgorithm($algorithm);
|
|
|
|
$this->assertSame($algorithm, League\OAuth2\Server\Util\SecureKey::getAlgorithm());
|
|
|
|
$this->assertEquals($result, League\OAuth2\Server\Util\SecureKey::make(11));
|
|
|
|
}
|
2014-06-01 03:00:32 +05:30
|
|
|
}
|