forked from GoogleCloudPlatform/python-docs-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathacl_test.py
More file actions
140 lines (99 loc) · 3.87 KB
/
acl_test.py
File metadata and controls
140 lines (99 loc) · 3.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
# Copyright 2016 Google, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import os
from google.cloud import storage
import google.cloud.storage.acl
import pytest
import acl
BUCKET = os.environ['CLOUD_STORAGE_BUCKET']
# Typically we'd use a @example.com address, but GCS requires a real Google
# account.
TEST_EMAIL = (
'google-auth-system-tests'
'@python-docs-samples-tests.iam.gserviceaccount.com')
@pytest.fixture
def test_bucket():
"""Yields a bucket that resets its acl after the test completes."""
bucket = storage.Client().bucket(BUCKET)
acl = google.cloud.storage.acl.BucketACL(bucket)
object_default_acl = google.cloud.storage.acl.DefaultObjectACL(bucket)
acl.reload()
object_default_acl.reload()
yield bucket
acl.save()
object_default_acl.save()
@pytest.fixture
def test_blob():
"""Yields a blob that resets its acl after the test completes."""
bucket = storage.Client().bucket(BUCKET)
blob = bucket.blob('storage_acl_test_sigil')
blob.upload_from_string('Hello, is it me you\'re looking for?')
acl = google.cloud.storage.acl.ObjectACL(blob)
acl.reload()
yield blob
acl.save()
def test_print_bucket_acl(capsys):
acl.print_bucket_acl(BUCKET)
out, _ = capsys.readouterr()
assert out
def test_print_bucket_acl_for_user(test_bucket, capsys):
test_bucket.acl.user(TEST_EMAIL).grant_owner()
test_bucket.acl.save()
acl.print_bucket_acl_for_user(BUCKET, TEST_EMAIL)
out, _ = capsys.readouterr()
assert 'OWNER' in out
def test_add_bucket_owner(test_bucket):
acl.add_bucket_owner(BUCKET, TEST_EMAIL)
test_bucket.acl.reload()
assert 'OWNER' in test_bucket.acl.user(TEST_EMAIL).get_roles()
def test_remove_bucket_owner(test_bucket):
test_bucket.acl.user(TEST_EMAIL).grant_owner()
test_bucket.acl.save()
acl.remove_bucket_owner(BUCKET, TEST_EMAIL)
test_bucket.acl.reload()
assert 'OWNER' not in test_bucket.acl.user(TEST_EMAIL).get_roles()
def test_add_bucket_default_owner(test_bucket):
acl.add_bucket_default_owner(BUCKET, TEST_EMAIL)
test_bucket.default_object_acl.reload()
roles = test_bucket.default_object_acl.user(TEST_EMAIL).get_roles()
assert 'OWNER' in roles
def test_remove_bucket_default_owner(test_bucket):
test_bucket.acl.user(TEST_EMAIL).grant_owner()
test_bucket.acl.save()
acl.remove_bucket_default_owner(BUCKET, TEST_EMAIL)
test_bucket.default_object_acl.reload()
roles = test_bucket.default_object_acl.user(TEST_EMAIL).get_roles()
assert 'OWNER' not in roles
def test_print_blob_acl(test_blob, capsys):
acl.print_blob_acl(BUCKET, test_blob.name)
out, _ = capsys.readouterr()
assert out
def test_print_blob_acl_for_user(test_blob, capsys):
test_blob.acl.user(TEST_EMAIL).grant_owner()
test_blob.acl.save()
acl.print_blob_acl_for_user(
BUCKET, test_blob.name, TEST_EMAIL)
out, _ = capsys.readouterr()
assert 'OWNER' in out
def test_add_blob_owner(test_blob):
acl.add_blob_owner(BUCKET, test_blob.name, TEST_EMAIL)
test_blob.acl.reload()
assert 'OWNER' in test_blob.acl.user(TEST_EMAIL).get_roles()
def test_remove_blob_owner(test_blob):
test_blob.acl.user(TEST_EMAIL).grant_owner()
test_blob.acl.save()
acl.remove_blob_owner(
BUCKET, test_blob.name, TEST_EMAIL)
test_blob.acl.reload()
assert 'OWNER' not in test_blob.acl.user(TEST_EMAIL).get_roles()