27 lines
		
	
	
		
			761 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			761 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from moto.core import DEFAULT_ACCOUNT_ID as ACCOUNT_ID
 | |
| 
 | |
| import sure  # noqa # pylint: disable=unused-import
 | |
| 
 | |
| import moto.server as server
 | |
| 
 | |
| """
 | |
| Test the different server responses
 | |
| """
 | |
| 
 | |
| 
 | |
| def test_sns_server_get():
 | |
|     backend = server.create_backend_app("sns")
 | |
|     test_client = backend.test_client()
 | |
| 
 | |
|     topic_data = test_client.action_data("CreateTopic", Name="testtopic")
 | |
|     topic_data.should.contain("CreateTopicResult")
 | |
|     topic_data.should.contain(
 | |
|         f"<TopicArn>arn:aws:sns:us-east-1:{ACCOUNT_ID}:testtopic</TopicArn>"
 | |
|     )
 | |
| 
 | |
|     topics_data = test_client.action_data("ListTopics")
 | |
|     topics_data.should.contain("ListTopicsResult")
 | |
|     topic_data.should.contain(
 | |
|         f"<TopicArn>arn:aws:sns:us-east-1:{ACCOUNT_ID}:testtopic</TopicArn>"
 | |
|     )
 |