You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
466 B
20 lines
466 B
<?php |
|
|
|
namespace yiiunit\extensions\authclient\signature; |
|
|
|
use yii\authclient\signature\HmacSha1; |
|
use yiiunit\extensions\authclient\TestCase; |
|
|
|
class HmacSha1Test extends TestCase |
|
{ |
|
public function testGenerateSignature() |
|
{ |
|
$signatureMethod = new HmacSha1(); |
|
|
|
$baseString = 'test_base_string'; |
|
$key = 'test_key'; |
|
|
|
$signature = $signatureMethod->generateSignature($baseString, $key); |
|
$this->assertNotEmpty($signature, 'Unable to generate signature!'); |
|
} |
|
} |