File size: 6,518 Bytes
065fee7 |
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 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 |
# Copyright 2021 Google LLC
#
# 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
#
# https://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 pytest
from . import _helpers
custom_attributes = {"attr1": "value1", "attr2": "value2"}
blob_name_prefix = "blob-name-prefix/"
@pytest.fixture(scope="session")
def event_types():
from google.cloud.storage.notification import (
OBJECT_FINALIZE_EVENT_TYPE,
OBJECT_DELETE_EVENT_TYPE,
)
return [OBJECT_FINALIZE_EVENT_TYPE, OBJECT_DELETE_EVENT_TYPE]
@pytest.fixture(scope="session")
def payload_format():
from google.cloud.storage.notification import JSON_API_V1_PAYLOAD_FORMAT
return JSON_API_V1_PAYLOAD_FORMAT
@pytest.fixture(scope="session")
def publisher_client():
try:
from google.cloud.pubsub_v1 import PublisherClient
except ImportError:
pytest.skip("Cannot import pubsub")
return PublisherClient()
@pytest.fixture(scope="session")
def topic_name():
return _helpers.unique_name("notification")
@pytest.fixture(scope="session")
def topic_path(storage_client, topic_name):
return f"projects/{storage_client.project}/topics/{topic_name}"
@pytest.fixture(scope="session")
def notification_topic(storage_client, publisher_client, topic_path, no_mtls):
_helpers.retry_429(publisher_client.create_topic)(topic_path)
policy = publisher_client.get_iam_policy(topic_path)
binding = policy.bindings.add()
binding.role = "roles/pubsub.publisher"
binding.members.append(
f"serviceAccount:{storage_client.get_service_account_email()}"
)
publisher_client.set_iam_policy(topic_path, policy)
def test_notification_create_minimal(
storage_client,
buckets_to_delete,
topic_name,
notification_topic,
):
bucket_name = _helpers.unique_name("notification-minimal")
bucket = _helpers.retry_429_503(storage_client.create_bucket)(bucket_name)
buckets_to_delete.append(bucket)
assert list(bucket.list_notifications()) == []
notification = bucket.notification(topic_name)
_helpers.retry_429_503(notification.create)()
try:
assert notification.exists()
assert notification.notification_id is not None
notifications = list(bucket.list_notifications())
assert len(notifications) == 1
assert notifications[0].topic_name == topic_name
finally:
notification.delete()
def test_notification_create_explicit(
storage_client,
buckets_to_delete,
topic_name,
notification_topic,
event_types,
payload_format,
):
bucket_name = _helpers.unique_name("notification-explicit")
bucket = _helpers.retry_429_503(storage_client.create_bucket)(bucket_name)
buckets_to_delete.append(bucket)
assert list(bucket.list_notifications()) == []
notification = bucket.notification(
topic_name=topic_name,
custom_attributes=custom_attributes,
event_types=event_types,
blob_name_prefix=blob_name_prefix,
payload_format=payload_format,
)
_helpers.retry_429_503(notification.create)()
try:
assert notification.exists()
assert notification.notification_id is not None
assert notification.custom_attributes == custom_attributes
assert notification.event_types == event_types
assert notification.blob_name_prefix == blob_name_prefix
assert notification.payload_format == payload_format
finally:
notification.delete()
def test_notification_create_w_user_project(
storage_client,
buckets_to_delete,
topic_name,
notification_topic,
user_project,
):
bucket_name = _helpers.unique_name("notification-w-up")
bucket = _helpers.retry_429_503(storage_client.create_bucket)(bucket_name)
buckets_to_delete.append(bucket)
with_user_project = storage_client.bucket(bucket_name, user_project=user_project)
assert list(with_user_project.list_notifications()) == []
notification = with_user_project.notification(topic_name)
_helpers.retry_429_503(notification.create)()
try:
assert notification.exists()
assert notification.notification_id is not None
notifications = list(bucket.list_notifications())
assert len(notifications) == 1
assert notifications[0].topic_name == topic_name
finally:
notification.delete()
def test_notification_create_wo_topic_name(
storage_client,
buckets_to_delete,
topic_name,
notification_topic,
event_types,
payload_format,
):
from google.cloud.exceptions import BadRequest
bucket_name = _helpers.unique_name("notification-wo-name")
bucket = _helpers.retry_429_503(storage_client.create_bucket)(bucket_name)
buckets_to_delete.append(bucket)
assert list(bucket.list_notifications()) == []
notification = bucket.notification(
topic_name=None,
custom_attributes=custom_attributes,
event_types=event_types,
blob_name_prefix=blob_name_prefix,
payload_format=payload_format,
)
with pytest.raises(BadRequest):
notification.create()
def test_bucket_get_notification(
storage_client,
buckets_to_delete,
topic_name,
notification_topic,
event_types,
payload_format,
):
bucket_name = _helpers.unique_name("notification-get")
bucket = _helpers.retry_429_503(storage_client.create_bucket)(bucket_name)
buckets_to_delete.append(bucket)
notification = bucket.notification(
topic_name=topic_name,
custom_attributes=custom_attributes,
payload_format=payload_format,
)
_helpers.retry_429_503(notification.create)()
try:
assert notification.exists()
assert notification.notification_id is not None
fetched = bucket.get_notification(notification.notification_id)
assert fetched.notification_id == notification.notification_id
assert fetched.custom_attributes == custom_attributes
assert fetched.payload_format == payload_format
finally:
notification.delete()
|