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.
think-library/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/OssClientBucketTransferAcce...

41 lines
1.2 KiB

<?php
namespace OSS\Tests;
use OSS\Core\OssException;
require_once __DIR__ . DIRECTORY_SEPARATOR . 'TestOssClientBase.php';
class OssClientBucketTransferAccelerationTest extends TestOssClientBase
{
public function testBucket()
{
try {
Common::waitMetaSync();
$status = $this->ossClient->getBucketTransferAcceleration($this->bucket);
$this->assertTrue(false);
} catch (OssException $e) {
$this->assertEquals("NoSuchTransferAccelerationConfiguration", $e->getErrorCode());
}
try {
$this->ossClient->putBucketTransferAcceleration($this->bucket, true);
Common::waitMetaSync();
$status = $this->ossClient->getBucketTransferAcceleration($this->bucket);
$this->assertEquals(true, $status);
} catch (OssException $e) {
$this->assertTrue(false);
}
try {
$this->ossClient->putBucketTransferAcceleration($this->bucket, false);
Common::waitMetaSync();
$status = $this->ossClient->getBucketTransferAcceleration($this->bucket);
$this->assertEquals(false, $status);
} catch (OssException $e) {
$this->assertTrue(false);
}
}
}