added the ability to change the algorithm used to generate the token strings. added files missing in last commit

This commit is contained in:
Joseph Deray
2014-03-11 12:41:21 -04:00
parent 901aab9deb
commit b12a1d84df
3 changed files with 74 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<?php
/**
* Created by PhpStorm.
* User: jderay
* Date: 3/11/14
* Time: 12:31 PM
*/
use League\OAuth2\Server\Util\KeyAlgorithm\DefaultAlgorithm;
class Default_Algorithm_test extends PHPUnit_Framework_TestCase
{
public function test_make()
{
$algorithm = new League\OAuth2\Server\Util\KeyAlgorithm\DefaultAlgorithm();
$v1 = $algorithm->make();
$v2 = $algorithm->make();
$v3 = $algorithm->make(50);
$this->assertEquals(40, strlen($v1));
$this->assertTrue($v1 !== $v2);
$this->assertEquals(50, strlen($v3));
}
}