2014-08-27 15:17:06 +00:00
|
|
|
from __future__ import unicode_literals
|
2015-08-02 14:27:08 +00:00
|
|
|
|
|
|
|
import json
|
2015-08-02 15:37:10 +00:00
|
|
|
from six.moves.urllib.parse import urlencode
|
2015-08-02 14:27:08 +00:00
|
|
|
import re
|
2015-08-02 15:37:10 +00:00
|
|
|
import sure # noqa
|
2015-08-02 14:27:08 +00:00
|
|
|
|
|
|
|
import moto.server as server
|
|
|
|
|
|
|
|
'''
|
|
|
|
Test the different server responses
|
|
|
|
'''
|
|
|
|
|
2015-08-02 15:37:10 +00:00
|
|
|
|
2015-08-02 14:27:08 +00:00
|
|
|
def test_cloudformation_server_get():
|
|
|
|
backend = server.create_backend_app("cloudformation")
|
|
|
|
stack_name = 'test stack'
|
2015-08-03 20:48:15 +00:00
|
|
|
test_client = backend.test_client()
|
2015-08-02 14:27:08 +00:00
|
|
|
template_body = {
|
|
|
|
"Resources": {},
|
|
|
|
}
|
2016-02-29 19:50:23 +00:00
|
|
|
create_stack_resp = test_client.action_data("CreateStack", StackName=stack_name,
|
2017-02-24 02:37:43 +00:00
|
|
|
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]
|
2015-08-02 22:31:36 +00:00
|
|
|
|
2016-02-29 19:50:23 +00:00
|
|
|
list_stacks_resp = test_client.action_data("ListStacks")
|
2017-02-24 02:37:43 +00:00
|
|
|
stack_id_from_list_response = re.search(
|
|
|
|
"<StackId>(.*)</StackId>", list_stacks_resp).groups()[0]
|
2015-08-02 22:31:36 +00:00
|
|
|
|
2016-02-29 19:50:23 +00:00
|
|
|
stack_id_from_create_response.should.equal(stack_id_from_list_response)
|