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
475 B
20 lines
475 B
11 years ago
|
<?php
|
||
|
|
||
|
namespace yiiunit\extensions\authclient\oauth\signature;
|
||
|
|
||
11 years ago
|
use yii\authclient\signature\PlainText;
|
||
11 years ago
|
use yiiunit\extensions\authclient\TestCase;
|
||
|
|
||
|
class PlainTextTest extends TestCase
|
||
|
{
|
||
|
public function testGenerateSignature()
|
||
|
{
|
||
|
$signatureMethod = new PlainText();
|
||
|
|
||
|
$baseString = 'test_base_string';
|
||
|
$key = 'test_key';
|
||
|
|
||
|
$signature = $signatureMethod->generateSignature($baseString, $key);
|
||
|
$this->assertNotEmpty($signature, 'Unable to generate signature!');
|
||
|
}
|
||
|
}
|