mirror of https://github.com/xinyewl/Simpic
26 lines
516 B
PHP
26 lines
516 B
PHP
<?php
|
|
namespace Upyun\Tests;
|
|
|
|
use Upyun\Signature;
|
|
use Upyun\Config;
|
|
|
|
class SignatureTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
|
|
/**
|
|
* @var Config;
|
|
*/
|
|
public $config;
|
|
|
|
public function setUp()
|
|
{
|
|
$this->config = new Config('bucket', 'operator', 'password');
|
|
}
|
|
|
|
public function testGetBodySignature()
|
|
{
|
|
$sign = Signature::getBodySignature($this->config, 'POST', '/bucket');
|
|
$this->assertEquals($sign, 'UPYUN operator:Xx3G6+DAvUyCL2Y2npSW/giTFI8=');
|
|
}
|
|
}
|