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
155 lines (114 loc) · 4.48 KB
/
acl_test.py
File metadata and controls
155 lines (114 loc) · 4.48 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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
# 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 uuid
from google.cloud import storage
import pytest
import storage_remove_file_owner
import storage_remove_bucket_owner
import storage_remove_bucket_default_owner
import storage_add_file_owner
import storage_add_bucket_owner
import storage_add_bucket_default_owner
import storage_print_bucket_acl_for_user
import storage_print_bucket_acl
import storage_print_file_acl_for_user
import storage_print_file_acl
# 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(scope="module")
def test_bucket():
"""Yields a bucket that is deleted after the test completes."""
bucket = None
while bucket is None or bucket.exists():
bucket_name = "acl-test-{}".format(uuid.uuid4())
bucket = storage.Client().bucket(bucket_name)
bucket.create()
yield bucket
bucket.delete(force=True)
@pytest.fixture
def test_blob(test_bucket):
"""Yields a blob that is deleted after the test completes."""
bucket = test_bucket
blob = bucket.blob("storage_acl_test_sigil-{}".format(uuid.uuid4()))
blob.upload_from_string("Hello, is it me you're looking for?")
yield blob
def test_print_bucket_acl(test_bucket, capsys):
storage_print_bucket_acl.print_bucket_acl(test_bucket.name)
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()
storage_print_bucket_acl_for_user.print_bucket_acl_for_user(
test_bucket.name, TEST_EMAIL
)
out, _ = capsys.readouterr()
assert "OWNER" in out
def test_add_bucket_owner(test_bucket):
storage_add_bucket_owner.add_bucket_owner(test_bucket.name, 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()
storage_remove_bucket_owner.remove_bucket_owner(
test_bucket.name, 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):
storage_add_bucket_default_owner.add_bucket_default_owner(
test_bucket.name, 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()
storage_remove_bucket_default_owner.remove_bucket_default_owner(
test_bucket.name, 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):
storage_print_file_acl.print_blob_acl(
test_blob.bucket.name, 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()
storage_print_file_acl_for_user.print_blob_acl_for_user(
test_blob.bucket.name, test_blob.name, TEST_EMAIL
)
out, _ = capsys.readouterr()
assert "OWNER" in out
def test_add_blob_owner(test_blob):
storage_add_file_owner.add_blob_owner(
test_blob.bucket.name, 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()
storage_remove_file_owner.remove_blob_owner(
test_blob.bucket.name, test_blob.name, TEST_EMAIL
)
test_blob.acl.reload()
assert "OWNER" not in test_blob.acl.user(TEST_EMAIL).get_roles()