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.
38 lines
1.2 KiB
38 lines
1.2 KiB
9 months ago
|
<?php
|
||
|
namespace Qiniu\Tests;
|
||
|
|
||
|
use Qiniu\Processing\Operation;
|
||
|
use Qiniu\Processing\PersistentFop;
|
||
|
|
||
|
class FopTest extends \PHPUnit_Framework_TestCase
|
||
|
{
|
||
|
public function testExifPub()
|
||
|
{
|
||
|
$fop = new Operation('sdk.peterpy.cn');
|
||
|
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');
|
||
|
}
|
||
|
}
|