Init Repo

This commit is contained in:
root
2019-09-06 23:53:10 +08:00
commit f0ef89dfbb
7905 changed files with 914138 additions and 0 deletions

View File

@ -0,0 +1,28 @@
<?php
namespace OSS\Tests;
require_once __DIR__ . '/Common.php';
class ObjectAclTest extends \PHPUnit_Framework_TestCase
{
public function testGetSet()
{
$client = Common::getOssClient();
$bucket = Common::getBucketName();
$object = 'test/object-acl';
$client->deleteObject($bucket, $object);
$client->putObject($bucket, $object, "hello world");
$acl = $client->getObjectAcl($bucket, $object);
$this->assertEquals('default', $acl);
$client->putObjectAcl($bucket, $object, 'public-read');
$acl = $client->getObjectAcl($bucket, $object);
$this->assertEquals('public-read', $acl);
$content = $client->getObject($bucket, $object);
$this->assertEquals('hello world', $content);
}
}