123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- namespace OSS\Tests;
- use OSS\Core\OssException;
- require_once __DIR__ . DIRECTORY_SEPARATOR . 'TestOssClientBase.php';
- class OssClientBucketPolicyTest extends TestOssClientBase
- {
- public function testBucket()
- {
- $policy_str = <<< BBBB
- {
- "Version": "1",
- "Statement": [
- {
- "Action": [
- "oss:PutObject",
- "oss:GetObject"
- ],
- "Effect": "Deny",
- "Principal": [
- "1234567890"
- ],
- "Resource": [
- "acs:oss:*:1234567890:*/*"
- ]
- }
- ]
- }
- BBBB;
- try {
- $this->ossClient->deleteBucketPolicy($this->bucket);
- $policy = $this->ossClient->getBucketPolicy($this->bucket);
- $this->assertTrue(false);
- } catch (OssException $e) {
- $this->assertTrue(true);
- $this->assertEquals("NoSuchBucketPolicy", $e->getErrorCode());
- }
- try {
- $this->ossClient->putBucketPolicy($this->bucket, $policy_str);
- $policy = $this->ossClient->getBucketPolicy($this->bucket);
- $data1 = json_decode($policy_str, true);
- $data2 = json_decode($policy, true);
- $this->assertEquals($data1, $data2);
- $this->ossClient->deleteBucketPolicy($this->bucket);
- } catch (OssException $e) {
- $this->assertTrue(false);
- }
- }
- }
|