37 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
from __future__ import unicode_literals
 | 
						|
 | 
						|
import json
 | 
						|
from urllib.parse import urlencode
 | 
						|
import re
 | 
						|
import sure  # noqa
 | 
						|
 | 
						|
import moto.server as server
 | 
						|
 | 
						|
"""
 | 
						|
Test the different server responses
 | 
						|
"""
 | 
						|
 | 
						|
 | 
						|
def test_cloudformation_server_get():
 | 
						|
    backend = server.create_backend_app("cloudformation")
 | 
						|
    stack_name = "test stack"
 | 
						|
    test_client = backend.test_client()
 | 
						|
    template_body = {"Resources": {}}
 | 
						|
    create_stack_resp = test_client.action_data(
 | 
						|
        "CreateStack", StackName=stack_name, TemplateBody=json.dumps(template_body)
 | 
						|
    )
 | 
						|
    create_stack_resp.should.match(
 | 
						|
        r"<CreateStackResponse>.*<CreateStackResult>.*<StackId>.*</StackId>.*</CreateStackResult>.*</CreateStackResponse>",
 | 
						|
        re.DOTALL,
 | 
						|
    )
 | 
						|
    stack_id_from_create_response = re.search(
 | 
						|
        "<StackId>(.*)</StackId>", create_stack_resp
 | 
						|
    ).groups()[0]
 | 
						|
 | 
						|
    list_stacks_resp = test_client.action_data("ListStacks")
 | 
						|
    stack_id_from_list_response = re.search(
 | 
						|
        "<StackId>(.*)</StackId>", list_stacks_resp
 | 
						|
    ).groups()[0]
 | 
						|
 | 
						|
    stack_id_from_create_response.should.equal(stack_id_from_list_response)
 |