2014-08-27 15:17:06 +00:00
|
|
|
from __future__ import unicode_literals
|
2014-05-12 02:56:44 +00:00
|
|
|
import boto
|
2017-02-27 15:20:53 +00:00
|
|
|
import json
|
2014-08-26 17:25:50 +00:00
|
|
|
import six
|
2014-05-12 02:56:44 +00:00
|
|
|
|
|
|
|
import sure # noqa
|
|
|
|
|
2015-03-14 13:06:31 +00:00
|
|
|
from boto.exception import BotoServerError
|
2017-02-16 03:35:45 +00:00
|
|
|
from moto import mock_sns_deprecated
|
2019-10-25 15:57:50 +00:00
|
|
|
from moto.sns.models import DEFAULT_EFFECTIVE_DELIVERY_POLICY, DEFAULT_PAGE_SIZE
|
2019-12-17 02:05:29 +00:00
|
|
|
from moto.core import ACCOUNT_ID
|
2014-05-12 02:56:44 +00:00
|
|
|
|
|
|
|
|
2017-02-16 03:35:45 +00:00
|
|
|
@mock_sns_deprecated
|
2014-05-12 02:56:44 +00:00
|
|
|
def test_create_and_delete_topic():
|
|
|
|
conn = boto.connect_sns()
|
|
|
|
conn.create_topic("some-topic")
|
|
|
|
|
|
|
|
topics_json = conn.get_all_topics()
|
|
|
|
topics = topics_json["ListTopicsResponse"]["ListTopicsResult"]["Topics"]
|
|
|
|
topics.should.have.length_of(1)
|
2019-10-31 15:44:26 +00:00
|
|
|
topics[0]["TopicArn"].should.equal(
|
2019-12-16 00:22:26 +00:00
|
|
|
"arn:aws:sns:{0}:{1}:some-topic".format(conn.region.name, ACCOUNT_ID)
|
2015-07-31 20:01:07 +00:00
|
|
|
)
|
2014-05-12 02:56:44 +00:00
|
|
|
|
|
|
|
# Delete the topic
|
2019-10-31 15:44:26 +00:00
|
|
|
conn.delete_topic(topics[0]["TopicArn"])
|
2014-05-12 02:56:44 +00:00
|
|
|
|
|
|
|
# And there should now be 0 topics
|
|
|
|
topics_json = conn.get_all_topics()
|
|
|
|
topics = topics_json["ListTopicsResponse"]["ListTopicsResult"]["Topics"]
|
|
|
|
topics.should.have.length_of(0)
|
|
|
|
|
|
|
|
|
2020-09-10 07:32:41 +00:00
|
|
|
@mock_sns_deprecated
|
|
|
|
def test_delete_non_existent_topic():
|
|
|
|
conn = boto.connect_sns()
|
|
|
|
conn.delete_topic.when.called_with("a-fake-arn").should.throw(BotoServerError)
|
|
|
|
|
|
|
|
|
2017-02-16 03:35:45 +00:00
|
|
|
@mock_sns_deprecated
|
2015-03-14 13:06:31 +00:00
|
|
|
def test_get_missing_topic():
|
|
|
|
conn = boto.connect_sns()
|
2019-10-31 15:44:26 +00:00
|
|
|
conn.get_topic_attributes.when.called_with("a-fake-arn").should.throw(
|
|
|
|
BotoServerError
|
|
|
|
)
|
2015-03-14 13:06:31 +00:00
|
|
|
|
|
|
|
|
2017-02-16 03:35:45 +00:00
|
|
|
@mock_sns_deprecated
|
2014-11-16 23:35:11 +00:00
|
|
|
def test_create_topic_in_multiple_regions():
|
2019-10-31 15:44:26 +00:00
|
|
|
for region in ["us-west-1", "us-west-2"]:
|
2015-07-31 20:01:07 +00:00
|
|
|
conn = boto.sns.connect_to_region(region)
|
|
|
|
conn.create_topic("some-topic")
|
2019-10-31 15:44:26 +00:00
|
|
|
list(
|
|
|
|
conn.get_all_topics()["ListTopicsResponse"]["ListTopicsResult"]["Topics"]
|
|
|
|
).should.have.length_of(1)
|
2017-02-24 02:37:43 +00:00
|
|
|
|
2014-11-16 23:35:11 +00:00
|
|
|
|
2017-02-16 03:35:45 +00:00
|
|
|
@mock_sns_deprecated
|
2015-07-31 20:01:07 +00:00
|
|
|
def test_topic_corresponds_to_region():
|
2019-10-31 15:44:26 +00:00
|
|
|
for region in ["us-east-1", "us-west-2"]:
|
2015-07-31 20:01:07 +00:00
|
|
|
conn = boto.sns.connect_to_region(region)
|
|
|
|
conn.create_topic("some-topic")
|
|
|
|
topics_json = conn.get_all_topics()
|
2019-10-31 15:44:26 +00:00
|
|
|
topic_arn = topics_json["ListTopicsResponse"]["ListTopicsResult"]["Topics"][0][
|
|
|
|
"TopicArn"
|
|
|
|
]
|
2019-12-17 02:25:20 +00:00
|
|
|
topic_arn.should.equal(
|
|
|
|
"arn:aws:sns:{0}:{1}:some-topic".format(region, ACCOUNT_ID)
|
|
|
|
)
|
2017-02-24 02:37:43 +00:00
|
|
|
|
2014-11-16 23:35:11 +00:00
|
|
|
|
2017-02-16 03:35:45 +00:00
|
|
|
@mock_sns_deprecated
|
2014-05-12 02:56:44 +00:00
|
|
|
def test_topic_attributes():
|
|
|
|
conn = boto.connect_sns()
|
|
|
|
conn.create_topic("some-topic")
|
|
|
|
|
|
|
|
topics_json = conn.get_all_topics()
|
2019-10-31 15:44:26 +00:00
|
|
|
topic_arn = topics_json["ListTopicsResponse"]["ListTopicsResult"]["Topics"][0][
|
|
|
|
"TopicArn"
|
|
|
|
]
|
2014-05-12 02:56:44 +00:00
|
|
|
|
2019-10-31 15:44:26 +00:00
|
|
|
attributes = conn.get_topic_attributes(topic_arn)["GetTopicAttributesResponse"][
|
|
|
|
"GetTopicAttributesResult"
|
|
|
|
]["Attributes"]
|
2015-07-31 20:01:07 +00:00
|
|
|
attributes["TopicArn"].should.equal(
|
2019-12-16 00:22:26 +00:00
|
|
|
"arn:aws:sns:{0}:{1}:some-topic".format(conn.region.name, ACCOUNT_ID)
|
2015-07-31 20:01:07 +00:00
|
|
|
)
|
2019-12-16 00:22:26 +00:00
|
|
|
attributes["Owner"].should.equal(ACCOUNT_ID)
|
2019-10-31 15:44:26 +00:00
|
|
|
json.loads(attributes["Policy"]).should.equal(
|
|
|
|
{
|
|
|
|
"Version": "2008-10-17",
|
|
|
|
"Id": "__default_policy_ID",
|
|
|
|
"Statement": [
|
|
|
|
{
|
|
|
|
"Effect": "Allow",
|
|
|
|
"Sid": "__default_statement_ID",
|
|
|
|
"Principal": {"AWS": "*"},
|
|
|
|
"Action": [
|
|
|
|
"SNS:GetTopicAttributes",
|
|
|
|
"SNS:SetTopicAttributes",
|
|
|
|
"SNS:AddPermission",
|
|
|
|
"SNS:RemovePermission",
|
|
|
|
"SNS:DeleteTopic",
|
|
|
|
"SNS:Subscribe",
|
|
|
|
"SNS:ListSubscriptionsByTopic",
|
|
|
|
"SNS:Publish",
|
|
|
|
"SNS:Receive",
|
|
|
|
],
|
2019-12-17 02:25:20 +00:00
|
|
|
"Resource": "arn:aws:sns:us-east-1:{}:some-topic".format(
|
|
|
|
ACCOUNT_ID
|
|
|
|
),
|
2019-12-16 00:22:26 +00:00
|
|
|
"Condition": {"StringEquals": {"AWS:SourceOwner": ACCOUNT_ID}},
|
2019-10-25 15:57:50 +00:00
|
|
|
}
|
2019-10-31 15:44:26 +00:00
|
|
|
],
|
|
|
|
}
|
|
|
|
)
|
2014-05-12 02:56:44 +00:00
|
|
|
attributes["DisplayName"].should.equal("")
|
|
|
|
attributes["SubscriptionsPending"].should.equal(0)
|
|
|
|
attributes["SubscriptionsConfirmed"].should.equal(0)
|
|
|
|
attributes["SubscriptionsDeleted"].should.equal(0)
|
|
|
|
attributes["DeliveryPolicy"].should.equal("")
|
2017-02-28 01:53:57 +00:00
|
|
|
json.loads(attributes["EffectiveDeliveryPolicy"]).should.equal(
|
2019-10-31 15:44:26 +00:00
|
|
|
DEFAULT_EFFECTIVE_DELIVERY_POLICY
|
|
|
|
)
|
2014-05-12 02:56:44 +00:00
|
|
|
|
2014-08-26 17:25:50 +00:00
|
|
|
# boto can't handle prefix-mandatory strings:
|
|
|
|
# i.e. unicode on Python 2 -- u"foobar"
|
|
|
|
# and bytes on Python 3 -- b"foobar"
|
|
|
|
if six.PY2:
|
2019-10-25 15:57:50 +00:00
|
|
|
policy = json.dumps({b"foo": b"bar"})
|
2014-08-26 17:25:50 +00:00
|
|
|
displayname = b"My display name"
|
|
|
|
delivery = {b"http": {b"defaultHealthyRetryPolicy": {b"numRetries": 5}}}
|
|
|
|
else:
|
2019-10-31 15:44:26 +00:00
|
|
|
policy = json.dumps({"foo": "bar"})
|
|
|
|
displayname = "My display name"
|
|
|
|
delivery = {"http": {"defaultHealthyRetryPolicy": {"numRetries": 5}}}
|
2014-08-26 17:25:50 +00:00
|
|
|
conn.set_topic_attributes(topic_arn, "Policy", policy)
|
|
|
|
conn.set_topic_attributes(topic_arn, "DisplayName", displayname)
|
|
|
|
conn.set_topic_attributes(topic_arn, "DeliveryPolicy", delivery)
|
2014-05-12 02:56:44 +00:00
|
|
|
|
2019-10-31 15:44:26 +00:00
|
|
|
attributes = conn.get_topic_attributes(topic_arn)["GetTopicAttributesResponse"][
|
|
|
|
"GetTopicAttributesResult"
|
|
|
|
]["Attributes"]
|
2019-10-25 15:57:50 +00:00
|
|
|
attributes["Policy"].should.equal('{"foo": "bar"}')
|
2014-05-12 02:56:44 +00:00
|
|
|
attributes["DisplayName"].should.equal("My display name")
|
2017-02-24 02:37:43 +00:00
|
|
|
attributes["DeliveryPolicy"].should.equal(
|
2019-10-31 15:44:26 +00:00
|
|
|
"{'http': {'defaultHealthyRetryPolicy': {'numRetries': 5}}}"
|
|
|
|
)
|
2017-02-24 02:37:43 +00:00
|
|
|
|
2014-11-30 03:37:48 +00:00
|
|
|
|
2017-02-16 03:35:45 +00:00
|
|
|
@mock_sns_deprecated
|
2014-11-30 03:37:48 +00:00
|
|
|
def test_topic_paging():
|
|
|
|
conn = boto.connect_sns()
|
|
|
|
for index in range(DEFAULT_PAGE_SIZE + int(DEFAULT_PAGE_SIZE / 2)):
|
|
|
|
conn.create_topic("some-topic_" + str(index))
|
|
|
|
|
|
|
|
topics_json = conn.get_all_topics()
|
2019-10-31 15:44:26 +00:00
|
|
|
topics_list = topics_json["ListTopicsResponse"]["ListTopicsResult"]["Topics"]
|
|
|
|
next_token = topics_json["ListTopicsResponse"]["ListTopicsResult"]["NextToken"]
|
2014-11-30 03:37:48 +00:00
|
|
|
|
|
|
|
len(topics_list).should.equal(DEFAULT_PAGE_SIZE)
|
|
|
|
next_token.should.equal(DEFAULT_PAGE_SIZE)
|
|
|
|
|
|
|
|
topics_json = conn.get_all_topics(next_token=next_token)
|
2019-10-31 15:44:26 +00:00
|
|
|
topics_list = topics_json["ListTopicsResponse"]["ListTopicsResult"]["Topics"]
|
|
|
|
next_token = topics_json["ListTopicsResponse"]["ListTopicsResult"]["NextToken"]
|
2014-11-30 03:37:48 +00:00
|
|
|
|
|
|
|
topics_list.should.have.length_of(int(DEFAULT_PAGE_SIZE / 2))
|
|
|
|
next_token.should.equal(None)
|
2020-10-16 11:30:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
@mock_sns_deprecated
|
|
|
|
def test_topic_kms_master_key_id_attribute():
|
|
|
|
conn = boto.connect_sns()
|
|
|
|
|
|
|
|
conn.create_topic("test-sns-no-key-attr")
|
|
|
|
topics_json = conn.get_all_topics()
|
|
|
|
topic_arn = topics_json["ListTopicsResponse"]["ListTopicsResult"]["Topics"][0][
|
|
|
|
"TopicArn"
|
|
|
|
]
|
|
|
|
attributes = conn.get_topic_attributes(topic_arn)["GetTopicAttributesResponse"][
|
|
|
|
"GetTopicAttributesResult"
|
|
|
|
]["Attributes"]
|
|
|
|
attributes.should_not.have.key("KmsMasterKeyId")
|
|
|
|
|
|
|
|
conn.set_topic_attributes(topic_arn, "KmsMasterKeyId", "test-key")
|
|
|
|
attributes = conn.get_topic_attributes(topic_arn)["GetTopicAttributesResponse"][
|
|
|
|
"GetTopicAttributesResult"
|
|
|
|
]["Attributes"]
|
|
|
|
attributes.should.have.key("KmsMasterKeyId")
|
|
|
|
attributes["KmsMasterKeyId"].should.equal("test-key")
|