First commit
This commit is contained in:
37
app/Common/extend/qiniu/tests/Qiniu/Tests/FopTest.php
Executable file
37
app/Common/extend/qiniu/tests/Qiniu/Tests/FopTest.php
Executable file
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
namespace Qiniu\Tests;
|
||||
|
||||
use Qiniu\Processing\Operation;
|
||||
use Qiniu\Processing\PersistentFop;
|
||||
|
||||
class FopTest extends \PHPUnit_Framework_TestCase
|
||||
{
|
||||
public function testExifPub()
|
||||
{
|
||||
$fop = new Operation('testres.qiniudn.com');
|
||||
list($exif, $error) = $fop->execute('gogopher.jpg', 'exif');
|
||||
$this->assertNull($error);
|
||||
$this->assertNotNull($exif);
|
||||
}
|
||||
|
||||
public function testExifPrivate()
|
||||
{
|
||||
global $testAuth;
|
||||
$fop = new Operation('private-res.qiniudn.com', $testAuth);
|
||||
list($exif, $error) = $fop->execute('noexif.jpg', 'exif');
|
||||
$this->assertNotNull($error);
|
||||
$this->assertNull($exif);
|
||||
}
|
||||
|
||||
public function testbuildUrl()
|
||||
{
|
||||
$fops = 'imageView2/2/h/200';
|
||||
$fop = new Operation('testres.qiniudn.com');
|
||||
$url = $fop->buildUrl('gogopher.jpg', $fops);
|
||||
$this->assertEquals($url, 'http://testres.qiniudn.com/gogopher.jpg?imageView2/2/h/200');
|
||||
|
||||
$fops = array('imageView2/2/h/200', 'imageInfo');
|
||||
$url = $fop->buildUrl('gogopher.jpg', $fops);
|
||||
$this->assertEquals($url, 'http://testres.qiniudn.com/gogopher.jpg?imageView2/2/h/200|imageInfo');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user