zx/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/TestOssClientBase.php

52 lines
1.3 KiB
PHP
Raw Normal View History

2024-07-02 15:32:59 +08:00
<?php
namespace OSS\Tests;
use OSS\OssClient;
require_once __DIR__ . DIRECTORY_SEPARATOR . 'Common.php';
class TestOssClientBase extends \PHPUnit\Framework\TestCase
{
/**
* @var OssClient
*/
protected $ossClient;
/**
* @var string
*/
protected $bucket;
protected function setUp(): void
{
$this->bucket = Common::getBucketName() .'-'. time();
$this->ossClient = Common::getOssClient();
$this->ossClient->createBucket($this->bucket);
Common::waitMetaSync();
}
protected function tearDown(): void
{
if (!$this->ossClient->doesBucketExist($this->bucket)) {
return;
}
$objects = $this->ossClient->listObjects(
$this->bucket, array('max-keys' => 1000, 'delimiter' => ''))->getObjectList();
$keys = array();
foreach ($objects as $obj) {
$keys[] = $obj->getKey();
}
if (count($keys) > 0) {
$this->ossClient->deleteObjects($this->bucket, $keys);
}
$uploads = $this->ossClient->listMultipartUploads($this->bucket)->getUploads();
foreach ($uploads as $up) {
$this->ossClient->abortMultipartUpload($this->bucket, $up->getKey(), $up->getUploadId());
}
$this->ossClient->deleteBucket($this->bucket);
}
}