The heat_integrationtests.functional.test_aws_stack Module

class heat_integrationtests.functional.test_aws_stack.AwsStackTest(*args, **kwargs)[source]

Bases: heat_integrationtests.functional.functional_base.FunctionalTestsBase

nested_template = "\nHeatTemplateFormatVersion: '2012-12-12'\nParameters:\n KeyName:\n Type: String\nOutputs:\n Foo:\n Value: bar\n"
nested_with_res_template = '\nHeatTemplateFormatVersion: \'2012-12-12\'\nParameters:\n KeyName:\n Type: String\nResources:\n NestedResource:\n Type: OS::Heat::RandomString\nOutputs:\n Foo:\n Value: {"Fn::GetAtt": [NestedResource, value]}\n'
publish_template(contents, cleanup=True)[source]
setUp()[source]
test_nested_stack_adopt_fail()[source]
test_nested_stack_adopt_ok()[source]
test_nested_stack_create()[source]
test_nested_stack_create_with_timeout()[source]
test_nested_stack_suspend_resume()[source]
test_nested_stack_update()[source]
test_template = '\nHeatTemplateFormatVersion: \'2012-12-12\'\nResources:\n the_nested:\n Type: AWS::CloudFormation::Stack\n Properties:\n TemplateURL: the.yaml\n Parameters:\n KeyName: foo\nOutputs:\n output_foo:\n Value: {"Fn::GetAtt": [the_nested, Outputs.Foo]}\n'
update_template = "\nHeatTemplateFormatVersion: '2012-12-12'\nParameters:\n KeyName:\n Type: String\nOutputs:\n Foo:\n Value: foo\n"

Previous topic

The heat_integrationtests.functional.test_autoscaling Module

Next topic

The heat_integrationtests.functional.test_cancel_update Module

Project Source

This Page