| 
									
										
										
										
											2021-10-04 13:47:40 +00:00
										 |  |  | import json | 
					
						
							| 
									
										
										
										
											2023-08-10 14:07:41 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | import boto3 | 
					
						
							| 
									
										
										
										
											2023-05-11 21:08:10 +00:00
										 |  |  | import pytest | 
					
						
							| 
									
										
										
										
											2021-10-04 13:47:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | from moto import mock_cloudformation, mock_sns | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @mock_cloudformation | 
					
						
							|  |  |  | @mock_sns | 
					
						
							|  |  |  | def test_sns_topic(): | 
					
						
							| 
									
										
										
										
											2023-05-11 21:08:10 +00:00
										 |  |  |     dummy_template = get_template(with_properties=True) | 
					
						
							| 
									
										
										
										
											2021-10-04 13:47:40 +00:00
										 |  |  |     template_json = json.dumps(dummy_template) | 
					
						
							|  |  |  |     cf = boto3.client("cloudformation", region_name="us-west-1") | 
					
						
							|  |  |  |     cf.create_stack(StackName="test_stack", TemplateBody=template_json) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     sns = boto3.client("sns", region_name="us-west-1") | 
					
						
							|  |  |  |     topics = sns.list_topics()["Topics"] | 
					
						
							| 
									
										
										
										
											2023-08-10 14:07:41 -04:00
										 |  |  |     assert len(topics) == 1 | 
					
						
							| 
									
										
										
										
											2021-10-04 13:47:40 +00:00
										 |  |  |     topic_arn = topics[0]["TopicArn"] | 
					
						
							| 
									
										
										
										
											2023-08-10 14:07:41 -04:00
										 |  |  |     assert "my_topics" in topic_arn | 
					
						
							| 
									
										
										
										
											2021-10-04 13:47:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     subscriptions = sns.list_subscriptions()["Subscriptions"] | 
					
						
							| 
									
										
										
										
											2023-08-10 14:07:41 -04:00
										 |  |  |     assert len(subscriptions) == 1 | 
					
						
							| 
									
										
										
										
											2021-10-04 13:47:40 +00:00
										 |  |  |     subscription = subscriptions[0] | 
					
						
							| 
									
										
										
										
											2023-08-10 14:07:41 -04:00
										 |  |  |     assert subscription["TopicArn"] == topic_arn | 
					
						
							|  |  |  |     assert subscription["Protocol"] == "https" | 
					
						
							|  |  |  |     assert topic_arn in subscription["SubscriptionArn"] | 
					
						
							|  |  |  |     assert subscription["Endpoint"] == "https://example.com" | 
					
						
							| 
									
										
										
										
											2021-10-04 13:47:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     stack = cf.describe_stacks(StackName="test_stack")["Stacks"][0] | 
					
						
							|  |  |  |     topic_name_output = [x for x in stack["Outputs"] if x["OutputKey"] == "topic_name"][ | 
					
						
							|  |  |  |         0 | 
					
						
							|  |  |  |     ] | 
					
						
							| 
									
										
										
										
											2023-08-10 14:07:41 -04:00
										 |  |  |     assert topic_name_output["OutputValue"] == "my_topics" | 
					
						
							| 
									
										
										
										
											2021-10-04 13:47:40 +00:00
										 |  |  |     topic_arn_output = [x for x in stack["Outputs"] if x["OutputKey"] == "topic_arn"][0] | 
					
						
							| 
									
										
										
										
											2023-08-10 14:07:41 -04:00
										 |  |  |     assert topic_arn_output["OutputValue"] == topic_arn | 
					
						
							| 
									
										
										
										
											2021-10-11 21:56:39 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @mock_cloudformation | 
					
						
							|  |  |  | @mock_sns | 
					
						
							|  |  |  | def test_sns_update_topic(): | 
					
						
							| 
									
										
										
										
											2023-05-11 21:08:10 +00:00
										 |  |  |     dummy_template = get_template(with_properties=True) | 
					
						
							| 
									
										
										
										
											2021-10-11 21:56:39 +00:00
										 |  |  |     sns_template_json = json.dumps(dummy_template) | 
					
						
							|  |  |  |     cf = boto3.client("cloudformation", region_name="us-west-1") | 
					
						
							|  |  |  |     cf.create_stack(StackName="test_stack", TemplateBody=sns_template_json) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     sns = boto3.client("sns", region_name="us-west-1") | 
					
						
							|  |  |  |     topics = sns.list_topics()["Topics"] | 
					
						
							| 
									
										
										
										
											2023-08-10 14:07:41 -04:00
										 |  |  |     assert len(topics) == 1 | 
					
						
							| 
									
										
										
										
											2021-10-11 21:56:39 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     dummy_template["Resources"]["MySNSTopic"]["Properties"]["Subscription"][0][ | 
					
						
							|  |  |  |         "Endpoint" | 
					
						
							|  |  |  |     ] = "https://example-updated.com" | 
					
						
							|  |  |  |     sns_template_json = json.dumps(dummy_template) | 
					
						
							|  |  |  |     cf.update_stack(StackName="test_stack", TemplateBody=sns_template_json) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     topics = sns.list_topics()["Topics"] | 
					
						
							| 
									
										
										
										
											2023-08-10 14:07:41 -04:00
										 |  |  |     assert len(topics) == 1 | 
					
						
							| 
									
										
										
										
											2021-10-11 21:56:39 +00:00
										 |  |  |     topic_arn = topics[0]["TopicArn"] | 
					
						
							| 
									
										
										
										
											2023-08-10 14:07:41 -04:00
										 |  |  |     assert "my_topics" in topic_arn | 
					
						
							| 
									
										
										
										
											2021-10-11 21:56:39 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     subscriptions = sns.list_subscriptions()["Subscriptions"] | 
					
						
							| 
									
										
										
										
											2023-08-10 14:07:41 -04:00
										 |  |  |     assert len(subscriptions) == 1 | 
					
						
							| 
									
										
										
										
											2021-10-11 21:56:39 +00:00
										 |  |  |     subscription = subscriptions[0] | 
					
						
							| 
									
										
										
										
											2023-08-10 14:07:41 -04:00
										 |  |  |     assert subscription["TopicArn"] == topic_arn | 
					
						
							|  |  |  |     assert subscription["Protocol"] == "https" | 
					
						
							|  |  |  |     assert topic_arn in subscription["SubscriptionArn"] | 
					
						
							|  |  |  |     assert subscription["Endpoint"] == "https://example-updated.com" | 
					
						
							| 
									
										
										
										
											2021-10-11 21:56:39 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @mock_cloudformation | 
					
						
							|  |  |  | @mock_sns | 
					
						
							| 
									
										
										
										
											2023-05-11 21:08:10 +00:00
										 |  |  | @pytest.mark.parametrize("with_properties", [True, False]) | 
					
						
							|  |  |  | def test_sns_update_remove_topic(with_properties): | 
					
						
							|  |  |  |     dummy_template = get_template(with_properties) | 
					
						
							| 
									
										
										
										
											2021-10-11 21:56:39 +00:00
										 |  |  |     sns_template_json = json.dumps(dummy_template) | 
					
						
							|  |  |  |     cf = boto3.client("cloudformation", region_name="us-west-1") | 
					
						
							|  |  |  |     cf.create_stack(StackName="test_stack", TemplateBody=sns_template_json) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     sns = boto3.client("sns", region_name="us-west-1") | 
					
						
							|  |  |  |     topics = sns.list_topics()["Topics"] | 
					
						
							| 
									
										
										
										
											2023-08-10 14:07:41 -04:00
										 |  |  |     assert len(topics) == 1 | 
					
						
							| 
									
										
										
										
											2021-10-11 21:56:39 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     dummy_template["Resources"].pop("MySNSTopic") | 
					
						
							|  |  |  |     dummy_template.pop("Outputs") | 
					
						
							|  |  |  |     sns_template_json = json.dumps(dummy_template) | 
					
						
							|  |  |  |     cf.update_stack(StackName="test_stack", TemplateBody=sns_template_json) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     topics = sns.list_topics()["Topics"] | 
					
						
							| 
									
										
										
										
											2023-08-10 14:07:41 -04:00
										 |  |  |     assert len(topics) == 0 | 
					
						
							| 
									
										
										
										
											2021-10-11 21:56:39 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @mock_cloudformation | 
					
						
							|  |  |  | @mock_sns | 
					
						
							| 
									
										
										
										
											2023-05-11 21:08:10 +00:00
										 |  |  | @pytest.mark.parametrize("with_properties", [True, False]) | 
					
						
							|  |  |  | def test_sns_delete_topic(with_properties): | 
					
						
							|  |  |  |     sns_template_json = json.dumps(get_template(with_properties)) | 
					
						
							| 
									
										
										
										
											2021-10-11 21:56:39 +00:00
										 |  |  |     cf = boto3.client("cloudformation", region_name="us-west-1") | 
					
						
							|  |  |  |     cf.create_stack(StackName="test_stack", TemplateBody=sns_template_json) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     sns = boto3.client("sns", region_name="us-west-1") | 
					
						
							|  |  |  |     topics = sns.list_topics()["Topics"] | 
					
						
							| 
									
										
										
										
											2023-08-10 14:07:41 -04:00
										 |  |  |     assert len(topics) == 1 | 
					
						
							| 
									
										
										
										
											2021-10-11 21:56:39 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     cf.delete_stack(StackName="test_stack") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     topics = sns.list_topics()["Topics"] | 
					
						
							| 
									
										
										
										
											2023-08-10 14:07:41 -04:00
										 |  |  |     assert len(topics) == 0 | 
					
						
							| 
									
										
										
										
											2023-05-11 21:08:10 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def get_template(with_properties): | 
					
						
							|  |  |  |     dummy_template = { | 
					
						
							|  |  |  |         "AWSTemplateFormatVersion": "2010-09-09", | 
					
						
							|  |  |  |         "Resources": {"MySNSTopic": {"Type": "AWS::SNS::Topic"}}, | 
					
						
							|  |  |  |         "Outputs": { | 
					
						
							|  |  |  |             "topic_name": {"Value": {"Fn::GetAtt": ["MySNSTopic", "TopicName"]}}, | 
					
						
							|  |  |  |             "topic_arn": {"Value": {"Ref": "MySNSTopic"}}, | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if with_properties: | 
					
						
							|  |  |  |         dummy_template["Resources"]["MySNSTopic"]["Properties"] = { | 
					
						
							|  |  |  |             "Subscription": [{"Endpoint": "https://example.com", "Protocol": "https"}], | 
					
						
							|  |  |  |             "TopicName": "my_topics", | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     return dummy_template |