8bd355f556
In practice, there were still too many concrete classes, which makes integration into a framework hard. To overcome this, the codebase has been refactored to use Interfaces when a resource is needed. All necessary Interfaces have been created, and the existing concrete classes now implement these interfaces.
80 lines
2.2 KiB
PHP
80 lines
2.2 KiB
PHP
<?php
|
|
|
|
use Mockery as m;
|
|
use JacobKiers\OAuth\SignatureMethod\HmacSha1;
|
|
|
|
class HmacSha1Test extends PHPUnit_Framework_TestCase
|
|
{
|
|
public function tearDown()
|
|
{
|
|
m::close();
|
|
}
|
|
|
|
public function testSignatureName()
|
|
{
|
|
$hmacsha1 = $this->getSignatureMethod();
|
|
$this->assertEquals('HMAC-SHA1', $hmacsha1->getName());
|
|
}
|
|
|
|
public function testBuildSignatureWithoutToken()
|
|
{
|
|
// Create instance of class to test
|
|
$hmacsha1 = $this->getSignatureMethod();
|
|
|
|
// Get mock objects
|
|
$request = $this->getRequest();
|
|
$client = $this->getConsumer();
|
|
|
|
// Run method being tested
|
|
$signature = $hmacsha1->buildSignature($request, $client);
|
|
|
|
// Check results
|
|
$this->assertEquals('RaZU4UG/wwJ/E5Df2/pePmwaS1Q=', $signature);
|
|
}
|
|
|
|
public function testBuildSignatureWithToken()
|
|
{
|
|
// Create instance of class to test
|
|
$hmacsha1 = $this->getSignatureMethod();
|
|
|
|
// Get mock objects
|
|
$request = $this->getRequest();
|
|
$client = $this->getConsumer();
|
|
$token = $this->getToken();
|
|
|
|
// Run method being tested
|
|
$signature = $hmacsha1->buildSignature($request, $client, $token);
|
|
|
|
// Check results
|
|
$this->assertEquals('1P/rfHzjnxBcNzngW9BEuT01goM=', $signature);
|
|
}
|
|
|
|
private function getSignatureMethod()
|
|
{
|
|
return new HmacSha1;
|
|
}
|
|
|
|
private function getRequest()
|
|
{
|
|
return m::mock('JacobKiers\OAuth\Request\Request', function ($mock) {
|
|
$mock->shouldReceive('getOAuthSignatureBaseString')
|
|
->withNoArgs()
|
|
->andReturn('POST&http%3A%2F%2Fexample.com%2Ffoobar&oauth_signature_method%3DHMAC-SHA1')->once();
|
|
});
|
|
}
|
|
|
|
private function getConsumer()
|
|
{
|
|
return m::mock('JacobKiers\OAuth\Consumer\Consumer', function ($mock) {
|
|
$mock->shouldReceive('getSecret')->withNoArgs()->andReturn('secret')->once();
|
|
});
|
|
}
|
|
|
|
private function getToken()
|
|
{
|
|
return m::mock('JacobKiers\OAuth\Token\Token', function ($mock) {
|
|
$mock->shouldReceive('getSecret')->withNoArgs()->andReturn('token_secret');
|
|
});
|
|
}
|
|
}
|