first commit
This commit is contained in:
54
pgserver/third_party/cos/tests/TestCosClientBase.php
vendored
Normal file
54
pgserver/third_party/cos/tests/TestCosClientBase.php
vendored
Normal file
@@ -0,0 +1,54 @@
|
||||
<?php
|
||||
|
||||
namespace Qcloud\Cos\Tests;
|
||||
|
||||
class TestCosClientBase extends \PHPUnit\Framework\TestCase
|
||||
{
|
||||
protected $cosClient;
|
||||
protected $bucket;
|
||||
|
||||
protected function setUp(): void
|
||||
{
|
||||
$this->bucket = Common::getBucketName();
|
||||
$this->cosClient = Common::getCosClient();
|
||||
try{
|
||||
$this->cosClient->createBucket(array('Bucket' => $this->bucket));
|
||||
} catch(\Exception $e) {
|
||||
}
|
||||
Common::waitSync();
|
||||
}
|
||||
|
||||
protected function tearDown(): void
|
||||
{
|
||||
if (!$this->cosClient->doesBucketExist($this->bucket)) {
|
||||
return;
|
||||
}
|
||||
|
||||
$result = $this->cosClient->listObjects(
|
||||
array('Bucket' => $this->bucket));
|
||||
|
||||
if (isset($result['Contents'])) {
|
||||
foreach ($result['Contents'] as $content) {
|
||||
$this->cosClient->deleteObject(array('Bucket' => $this->bucket, 'Key' => $content['Key']));
|
||||
}
|
||||
}
|
||||
while(True){
|
||||
$result = $this->cosClient->ListMultipartUploads(
|
||||
array('Bucket' => $this->bucket));
|
||||
if ($result['Uploads'] == array()) {
|
||||
break;
|
||||
}
|
||||
foreach ($result['Uploads'] as $upload) {
|
||||
try {
|
||||
$this->cosClient->AbortMultipartUpload(
|
||||
array('Bucket' => $this->bucket,
|
||||
'Key' => $upload['Key'],
|
||||
'UploadId' => $upload['UploadId']));
|
||||
} catch (\Exception $e) {
|
||||
print_r($e);
|
||||
}
|
||||
}
|
||||
}
|
||||
$this->cosClient->deleteBucket(array('Bucket' => $this->bucket));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user