2016-07-26 10:58:33 +08:00
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
# not use this file except in compliance with the License. You may obtain
|
|
|
|
# a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
# License for the specific language governing permissions and limitations
|
|
|
|
# under the License.
|
|
|
|
|
|
|
|
from heat_integrationtests.functional import functional_base
|
|
|
|
|
|
|
|
|
|
|
|
cfn_template = '''
|
|
|
|
AWSTemplateFormatVersion: 2010-09-09
|
|
|
|
Parameters:
|
|
|
|
env_type:
|
|
|
|
Default: test
|
|
|
|
Type: String
|
|
|
|
AllowedValues: [prod, test]
|
2016-06-17 09:25:38 +08:00
|
|
|
zone:
|
|
|
|
Type: String
|
|
|
|
Default: beijing
|
2016-07-26 10:58:33 +08:00
|
|
|
Conditions:
|
|
|
|
Prod: {"Fn::Equals" : [{Ref: env_type}, "prod"]}
|
2016-07-27 13:02:39 +08:00
|
|
|
Test:
|
|
|
|
Fn::Not:
|
|
|
|
- Fn::Equals:
|
|
|
|
- Ref: env_type
|
|
|
|
- prod
|
2016-06-17 09:25:38 +08:00
|
|
|
Beijing_Prod:
|
|
|
|
Fn::And:
|
|
|
|
- Fn::Equals:
|
|
|
|
- Ref: env_type
|
|
|
|
- prod
|
|
|
|
- Fn::Equals:
|
|
|
|
- Ref: zone
|
|
|
|
- beijing
|
2016-09-08 15:37:51 -04:00
|
|
|
Xian_Zone:
|
|
|
|
Fn::Equals:
|
|
|
|
- Ref: zone
|
|
|
|
- xian
|
|
|
|
Xianyang_Zone:
|
|
|
|
Fn::Equals:
|
|
|
|
- Ref: zone
|
|
|
|
- xianyang
|
2016-07-27 18:11:58 +08:00
|
|
|
Fujian_Zone:
|
|
|
|
Fn::Or:
|
|
|
|
- Fn::Equals:
|
|
|
|
- Ref: zone
|
|
|
|
- fuzhou
|
|
|
|
- Fn::Equals:
|
|
|
|
- Ref: zone
|
|
|
|
- xiamen
|
2016-09-08 15:37:51 -04:00
|
|
|
Fujian_Prod:
|
|
|
|
Fn::And:
|
|
|
|
- Fujian_Zone
|
|
|
|
- Prod
|
|
|
|
Shannxi_Provice:
|
|
|
|
Fn::Or:
|
|
|
|
- Xian_Zone
|
|
|
|
- Xianyang_Zone
|
|
|
|
Not_Shannxi:
|
|
|
|
Fn::Not: [Shannxi_Provice]
|
2016-07-26 10:58:33 +08:00
|
|
|
Resources:
|
|
|
|
test_res:
|
|
|
|
Type: OS::Heat::TestResource
|
|
|
|
Properties:
|
2016-02-23 17:03:10 +08:00
|
|
|
value: {"Fn::If": ["Prod", "env_is_prod", "env_is_test"]}
|
2016-07-26 10:58:33 +08:00
|
|
|
prod_res:
|
|
|
|
Type: OS::Heat::TestResource
|
|
|
|
Properties:
|
|
|
|
value: prod_res
|
|
|
|
Condition: Prod
|
2016-07-27 13:02:39 +08:00
|
|
|
test_res1:
|
|
|
|
Type: OS::Heat::TestResource
|
|
|
|
Properties:
|
|
|
|
value: just in test env
|
|
|
|
Condition: Test
|
2016-06-17 09:25:38 +08:00
|
|
|
beijing_prod_res:
|
|
|
|
Type: OS::Heat::TestResource
|
|
|
|
Properties:
|
|
|
|
value: beijing_prod_res
|
|
|
|
Condition: Beijing_Prod
|
2016-07-27 18:11:58 +08:00
|
|
|
fujian_res:
|
|
|
|
Type: OS::Heat::TestResource
|
|
|
|
Condition: Fujian_Zone
|
|
|
|
Properties:
|
|
|
|
value: fujian_res
|
2016-09-08 15:37:51 -04:00
|
|
|
fujian_prod_res:
|
|
|
|
Type: OS::Heat::TestResource
|
|
|
|
Condition: Fujian_Prod
|
|
|
|
Properties:
|
|
|
|
value: fujian_prod_res
|
|
|
|
shannxi_res:
|
|
|
|
Type: OS::Heat::TestResource
|
|
|
|
Condition: Shannxi_Provice
|
|
|
|
Properties:
|
|
|
|
value: shannxi_res
|
|
|
|
not_shannxi_res:
|
|
|
|
Type: OS::Heat::TestResource
|
|
|
|
Condition: Not_Shannxi
|
|
|
|
Properties:
|
|
|
|
value: not_shannxi_res
|
2016-07-26 14:32:40 +08:00
|
|
|
Outputs:
|
|
|
|
res_value:
|
|
|
|
Value: {"Fn::GetAtt": [prod_res, output]}
|
|
|
|
Condition: Prod
|
2016-02-23 17:03:10 +08:00
|
|
|
test_res_value:
|
|
|
|
Value: {"Fn::GetAtt": [test_res, output]}
|
|
|
|
prod_resource:
|
|
|
|
Value: {"Fn::If": [Prod, {Ref: prod_res}, 'no_prod_res']}
|
2016-07-27 13:02:39 +08:00
|
|
|
test_res1_value:
|
|
|
|
Value: {"Fn::If": [Test, {"Fn::GetAtt": [test_res1, output]},
|
|
|
|
'no_test_res1']}
|
2016-06-17 09:25:38 +08:00
|
|
|
beijing_prod_res:
|
|
|
|
Value: {"Fn::If": [Beijing_Prod, {Ref: beijing_prod_res}, 'no_prod_res']}
|
2016-07-26 10:58:33 +08:00
|
|
|
'''
|
|
|
|
|
|
|
|
hot_template = '''
|
|
|
|
heat_template_version: 2016-10-14
|
|
|
|
parameters:
|
|
|
|
env_type:
|
|
|
|
default: test
|
|
|
|
type: string
|
|
|
|
constraints:
|
|
|
|
- allowed_values: [prod, test]
|
2016-06-17 09:25:38 +08:00
|
|
|
zone:
|
|
|
|
type: string
|
|
|
|
default: beijing
|
2016-07-26 10:58:33 +08:00
|
|
|
conditions:
|
|
|
|
prod: {equals : [{get_param: env_type}, "prod"]}
|
2016-07-27 13:02:39 +08:00
|
|
|
test:
|
|
|
|
not:
|
|
|
|
equals:
|
|
|
|
- get_param: env_type
|
|
|
|
- prod
|
2016-06-17 09:25:38 +08:00
|
|
|
beijing_prod:
|
|
|
|
and:
|
|
|
|
- equals:
|
|
|
|
- get_param: zone
|
|
|
|
- beijing
|
|
|
|
- equals:
|
|
|
|
- get_param: env_type
|
|
|
|
- prod
|
2016-09-08 15:37:51 -04:00
|
|
|
xian_zone:
|
|
|
|
equals:
|
|
|
|
- get_param: zone
|
|
|
|
- xian
|
|
|
|
xianyang_zone:
|
|
|
|
equals:
|
|
|
|
- get_param: zone
|
|
|
|
- xianyang
|
2016-07-27 18:11:58 +08:00
|
|
|
fujian_zone:
|
|
|
|
or:
|
|
|
|
- equals:
|
|
|
|
- get_param: zone
|
|
|
|
- fuzhou
|
|
|
|
- equals:
|
|
|
|
- get_param: zone
|
|
|
|
- xiamen
|
2016-09-08 15:37:51 -04:00
|
|
|
fujian_prod:
|
|
|
|
and:
|
|
|
|
- fujian_zone
|
|
|
|
- prod
|
|
|
|
shannxi_provice:
|
|
|
|
or:
|
|
|
|
- xian_zone
|
|
|
|
- xianyang_zone
|
|
|
|
not_shannxi:
|
|
|
|
not: shannxi_provice
|
2016-07-26 10:58:33 +08:00
|
|
|
resources:
|
|
|
|
test_res:
|
|
|
|
type: OS::Heat::TestResource
|
|
|
|
properties:
|
2016-02-23 17:03:10 +08:00
|
|
|
value: {if: ["prod", "env_is_prod", "env_is_test"]}
|
2016-07-26 10:58:33 +08:00
|
|
|
prod_res:
|
|
|
|
type: OS::Heat::TestResource
|
|
|
|
properties:
|
|
|
|
value: prod_res
|
|
|
|
condition: prod
|
2016-07-27 13:02:39 +08:00
|
|
|
test_res1:
|
|
|
|
type: OS::Heat::TestResource
|
|
|
|
properties:
|
|
|
|
value: just in test env
|
|
|
|
condition: test
|
2016-06-17 09:25:38 +08:00
|
|
|
beijing_prod_res:
|
|
|
|
type: OS::Heat::TestResource
|
|
|
|
properties:
|
|
|
|
value: beijing_prod_res
|
|
|
|
condition: beijing_prod
|
2016-07-27 18:11:58 +08:00
|
|
|
fujian_res:
|
|
|
|
type: OS::Heat::TestResource
|
|
|
|
condition: fujian_zone
|
|
|
|
properties:
|
|
|
|
value: fujian_res
|
2016-09-08 15:37:51 -04:00
|
|
|
fujian_prod_res:
|
|
|
|
type: OS::Heat::TestResource
|
|
|
|
condition: fujian_prod
|
|
|
|
properties:
|
|
|
|
value: fujian_prod_res
|
|
|
|
shannxi_res:
|
|
|
|
type: OS::Heat::TestResource
|
|
|
|
condition: shannxi_provice
|
|
|
|
properties:
|
|
|
|
value: shannxi_res
|
|
|
|
not_shannxi_res:
|
|
|
|
type: OS::Heat::TestResource
|
|
|
|
condition: not_shannxi
|
|
|
|
properties:
|
|
|
|
value: not_shannxi_res
|
2016-07-26 14:32:40 +08:00
|
|
|
outputs:
|
|
|
|
res_value:
|
|
|
|
value: {get_attr: [prod_res, output]}
|
|
|
|
condition: prod
|
2016-02-23 17:03:10 +08:00
|
|
|
test_res_value:
|
|
|
|
value: {get_attr: [test_res, output]}
|
|
|
|
prod_resource:
|
|
|
|
value: {if: [prod, {get_resource: prod_res}, 'no_prod_res']}
|
2016-07-27 13:02:39 +08:00
|
|
|
test_res1_value:
|
|
|
|
value: {if: [test, {get_attr: [test_res1, output]}, 'no_test_res1']}
|
2016-06-17 09:25:38 +08:00
|
|
|
beijing_prod_res:
|
|
|
|
value: {if: [beijing_prod, {get_resource: beijing_prod_res},
|
|
|
|
'no_prod_res']}
|
2016-07-26 10:58:33 +08:00
|
|
|
'''
|
|
|
|
|
Copy correct definition to the backup stack
We were using the definition of the existing resource, immediately after
updating it in place, to copy to the backup stack. This turns out to be
incorrect, because the definition of the new resource is only copied to the
existing resource if it was actually updated. It doesn't follow that the
existing resource's definition must be the same, because it's actually the
frozen definition (using the stored property values from the DB) that's
compared with the new definition when deciding to update. The existing
definition might well be rubbish if a previous update is failed, because it
does not get updated in the existing template after the resource is updated
in place. This caused bug 1622795 when combined with the new conditionals
feature.
We were also using the wrong template to do the parsing in both cases: when
updating in-place we are passing the new definition, but we were reparsing
using the existing template. And we were effectively doing the same when
creating a new resource, because we accessed the template through the new
resource only *after* it had been moved to the existing stack. In both
cases the correct code would have been:
definition = new_res.t.reparse(self.previous_stack,
new_res.stack.t)
However, there's no actual need to reparse the resource definitions before
passing them to Template.add_resource(), because that method immediately
calls render_hot() to get back to the unparsed definition anyway. So just
don't bother. These issues have been requiring us up until now to cache the
conditionals from the new_stack in the Template, to prevent the reparsing
from looking at the wrong set of conditionals. This change relieves us of
that restriction.
Finally, change the debug error messages to distinguish this case (copying
a resource definition into the backup template) from "backing up" a
resource (moving an actual physical resource into the backup stack).
Change-Id: I7be92f2e1b812c23fa52d87c18c7f22f1be94446
Closes-Bug: #1622795
2016-09-12 20:51:52 -04:00
|
|
|
before_rename_tmpl = '''
|
|
|
|
heat_template_version: 2016-10-14
|
|
|
|
parameters:
|
|
|
|
env_type:
|
|
|
|
default: test
|
|
|
|
type: string
|
|
|
|
conditions:
|
|
|
|
cd1: {equals : [{get_param: env_type}, "prod"]}
|
|
|
|
resources:
|
|
|
|
test:
|
|
|
|
type: OS::Heat::TestResource
|
|
|
|
properties:
|
|
|
|
value: {if: [cd1, 'prod', 'test']}
|
|
|
|
'''
|
|
|
|
|
|
|
|
after_rename_tmpl = '''
|
|
|
|
heat_template_version: 2016-10-14
|
|
|
|
parameters:
|
|
|
|
env_type:
|
|
|
|
default: prod
|
|
|
|
type: string
|
|
|
|
conditions:
|
|
|
|
cd2: {equals : [{get_param: env_type}, "prod"]}
|
|
|
|
resources:
|
|
|
|
test:
|
|
|
|
type: OS::Heat::TestResource
|
|
|
|
properties:
|
|
|
|
value: {if: [cd2, 'prod', 'test']}
|
|
|
|
test2:
|
|
|
|
type: OS::Heat::TestResource
|
|
|
|
properties:
|
|
|
|
value: {if: [cd2, 'prod', 'test']}
|
|
|
|
'''
|
|
|
|
|
|
|
|
fail_rename_tmpl = '''
|
|
|
|
heat_template_version: 2016-10-14
|
|
|
|
parameters:
|
|
|
|
env_type:
|
|
|
|
default: prod
|
|
|
|
type: string
|
|
|
|
conditions:
|
|
|
|
cd3: {equals : [{get_param: env_type}, "prod"]}
|
|
|
|
resources:
|
|
|
|
test:
|
|
|
|
type: OS::Heat::TestResource
|
|
|
|
properties:
|
|
|
|
value: {if: [cd3, 'prod', 'test']}
|
|
|
|
test2:
|
|
|
|
type: OS::Heat::TestResource
|
|
|
|
properties:
|
|
|
|
value: {if: [cd3, 'prod', 'test']}
|
|
|
|
test_fail:
|
|
|
|
type: OS::Heat::TestResource
|
|
|
|
properties:
|
|
|
|
fail: True
|
|
|
|
depends_on: [test, test2]
|
|
|
|
'''
|
|
|
|
|
|
|
|
recover_rename_tmpl = '''
|
|
|
|
heat_template_version: 2016-10-14
|
|
|
|
parameters:
|
|
|
|
env_type:
|
|
|
|
default: prod
|
|
|
|
type: string
|
|
|
|
conditions:
|
|
|
|
cd3: {equals : [{get_param: env_type}, "prod"]}
|
|
|
|
resources:
|
|
|
|
test2:
|
|
|
|
type: OS::Heat::TestResource
|
|
|
|
properties:
|
|
|
|
value: {if: [cd3, 'prod', 'test']}
|
|
|
|
test_fail:
|
|
|
|
type: OS::Heat::TestResource
|
|
|
|
properties:
|
|
|
|
fail: False
|
|
|
|
depends_on: [test2]
|
|
|
|
'''
|
|
|
|
|
2016-07-26 10:58:33 +08:00
|
|
|
|
|
|
|
class CreateUpdateResConditionTest(functional_base.FunctionalTestsBase):
|
|
|
|
|
2016-09-08 15:37:51 -04:00
|
|
|
def res_assert_for_prod(self, resources, bj_prod=True, fj_zone=False,
|
|
|
|
shannxi_provice=False):
|
2018-02-07 20:22:24 -05:00
|
|
|
res_names = {res.resource_name for res in resources
|
|
|
|
if res.resource_status != 'DELETE_COMPLETE'}
|
2016-06-17 09:25:38 +08:00
|
|
|
if bj_prod:
|
2016-09-08 15:37:51 -04:00
|
|
|
self.assertEqual(4, len(resources))
|
2016-06-17 09:25:38 +08:00
|
|
|
self.assertIn('beijing_prod_res', res_names)
|
2016-09-08 15:37:51 -04:00
|
|
|
self.assertIn('not_shannxi_res', res_names)
|
2016-07-27 18:11:58 +08:00
|
|
|
elif fj_zone:
|
2016-09-08 15:37:51 -04:00
|
|
|
self.assertEqual(5, len(resources))
|
2016-07-27 18:11:58 +08:00
|
|
|
self.assertIn('fujian_res', res_names)
|
|
|
|
self.assertNotIn('beijing_prod_res', res_names)
|
2016-09-08 15:37:51 -04:00
|
|
|
self.assertIn('not_shannxi_res', res_names)
|
|
|
|
self.assertIn('fujian_prod_res', res_names)
|
|
|
|
elif shannxi_provice:
|
|
|
|
self.assertEqual(3, len(resources))
|
|
|
|
self.assertIn('shannxi_res', res_names)
|
2016-06-17 09:25:38 +08:00
|
|
|
else:
|
2016-09-08 15:37:51 -04:00
|
|
|
self.assertEqual(3, len(resources))
|
|
|
|
self.assertIn('not_shannxi_res', res_names)
|
2016-07-26 10:58:33 +08:00
|
|
|
self.assertIn('prod_res', res_names)
|
|
|
|
self.assertIn('test_res', res_names)
|
|
|
|
|
2016-09-08 15:37:51 -04:00
|
|
|
def res_assert_for_test(self, resources, fj_zone=False,
|
|
|
|
shannxi_provice=False):
|
2018-02-07 20:22:24 -05:00
|
|
|
res_names = {res.resource_name for res in resources
|
|
|
|
if res.resource_status != 'DELETE_COMPLETE'}
|
2016-07-27 18:11:58 +08:00
|
|
|
|
|
|
|
if fj_zone:
|
2016-09-08 15:37:51 -04:00
|
|
|
self.assertEqual(4, len(resources))
|
2016-09-08 11:33:46 -04:00
|
|
|
self.assertIn('fujian_res', res_names)
|
2016-09-08 15:37:51 -04:00
|
|
|
self.assertIn('not_shannxi_res', res_names)
|
|
|
|
elif shannxi_provice:
|
|
|
|
self.assertEqual(3, len(resources))
|
2016-09-08 11:33:46 -04:00
|
|
|
self.assertNotIn('fujian_res', res_names)
|
2016-09-08 15:37:51 -04:00
|
|
|
self.assertIn('shannxi_res', res_names)
|
|
|
|
else:
|
|
|
|
self.assertEqual(3, len(resources))
|
|
|
|
self.assertIn('not_shannxi_res', res_names)
|
2016-07-26 10:58:33 +08:00
|
|
|
self.assertIn('test_res', res_names)
|
2016-07-27 13:02:39 +08:00
|
|
|
self.assertIn('test_res1', res_names)
|
2016-07-26 10:58:33 +08:00
|
|
|
self.assertNotIn('prod_res', res_names)
|
|
|
|
|
2016-06-17 09:25:38 +08:00
|
|
|
def output_assert_for_prod(self, stack_id, bj_prod=True):
|
2016-07-26 14:32:40 +08:00
|
|
|
output = self.client.stacks.output_show(stack_id,
|
|
|
|
'res_value')['output']
|
|
|
|
self.assertEqual('prod_res', output['output_value'])
|
|
|
|
|
2016-02-23 17:03:10 +08:00
|
|
|
test_res_value = self.client.stacks.output_show(
|
|
|
|
stack_id, 'test_res_value')['output']
|
|
|
|
self.assertEqual('env_is_prod', test_res_value['output_value'])
|
|
|
|
|
|
|
|
prod_resource = self.client.stacks.output_show(
|
|
|
|
stack_id, 'prod_resource')['output']
|
|
|
|
self.assertNotEqual('no_prod_res', prod_resource['output_value'])
|
|
|
|
|
2016-07-27 13:02:39 +08:00
|
|
|
test_res_output = self.client.stacks.output_show(
|
|
|
|
stack_id, 'test_res1_value')['output']
|
|
|
|
self.assertEqual('no_test_res1', test_res_output['output_value'])
|
|
|
|
|
2016-06-17 09:25:38 +08:00
|
|
|
beijing_prod_res = self.client.stacks.output_show(
|
|
|
|
stack_id, 'beijing_prod_res')['output']
|
|
|
|
if bj_prod:
|
|
|
|
self.assertNotEqual('no_prod_res',
|
|
|
|
beijing_prod_res['output_value'])
|
|
|
|
else:
|
|
|
|
self.assertEqual('no_prod_res', beijing_prod_res['output_value'])
|
|
|
|
|
2016-07-26 14:32:40 +08:00
|
|
|
def output_assert_for_test(self, stack_id):
|
|
|
|
output = self.client.stacks.output_show(stack_id,
|
|
|
|
'res_value')['output']
|
|
|
|
self.assertIsNone(output['output_value'])
|
|
|
|
|
2016-02-23 17:03:10 +08:00
|
|
|
test_res_value = self.client.stacks.output_show(
|
|
|
|
stack_id, 'test_res_value')['output']
|
|
|
|
self.assertEqual('env_is_test', test_res_value['output_value'])
|
|
|
|
|
|
|
|
prod_resource = self.client.stacks.output_show(
|
|
|
|
stack_id, 'prod_resource')['output']
|
|
|
|
self.assertEqual('no_prod_res', prod_resource['output_value'])
|
|
|
|
|
2016-07-27 13:02:39 +08:00
|
|
|
test_res_output = self.client.stacks.output_show(
|
|
|
|
stack_id, 'test_res1_value')['output']
|
|
|
|
self.assertEqual('just in test env',
|
|
|
|
test_res_output['output_value'])
|
|
|
|
|
2016-06-17 09:25:38 +08:00
|
|
|
beijing_prod_res = self.client.stacks.output_show(
|
|
|
|
stack_id, 'beijing_prod_res')['output']
|
|
|
|
self.assertEqual('no_prod_res', beijing_prod_res['output_value'])
|
|
|
|
|
2016-07-26 10:58:33 +08:00
|
|
|
def test_stack_create_update_cfn_template_test_to_prod(self):
|
|
|
|
stack_identifier = self.stack_create(template=cfn_template)
|
|
|
|
resources = self.client.resources.list(stack_identifier)
|
|
|
|
self.res_assert_for_test(resources)
|
2016-07-26 14:32:40 +08:00
|
|
|
self.output_assert_for_test(stack_identifier)
|
2016-07-26 10:58:33 +08:00
|
|
|
|
2016-07-27 18:11:58 +08:00
|
|
|
parms = {'zone': 'fuzhou'}
|
|
|
|
self.update_stack(stack_identifier,
|
|
|
|
template=cfn_template,
|
|
|
|
parameters=parms)
|
|
|
|
|
|
|
|
resources = self.client.resources.list(stack_identifier)
|
|
|
|
self.res_assert_for_test(resources, fj_zone=True)
|
|
|
|
self.output_assert_for_test(stack_identifier)
|
|
|
|
|
2016-09-08 15:37:51 -04:00
|
|
|
parms = {'zone': 'xianyang'}
|
|
|
|
self.update_stack(stack_identifier,
|
|
|
|
template=cfn_template,
|
|
|
|
parameters=parms)
|
|
|
|
|
|
|
|
resources = self.client.resources.list(stack_identifier)
|
|
|
|
self.res_assert_for_test(resources, shannxi_provice=True)
|
|
|
|
self.output_assert_for_test(stack_identifier)
|
|
|
|
|
2016-07-26 10:58:33 +08:00
|
|
|
parms = {'env_type': 'prod'}
|
|
|
|
self.update_stack(stack_identifier,
|
|
|
|
template=cfn_template,
|
|
|
|
parameters=parms)
|
|
|
|
|
|
|
|
resources = self.client.resources.list(stack_identifier)
|
|
|
|
self.res_assert_for_prod(resources)
|
2016-07-26 14:32:40 +08:00
|
|
|
self.output_assert_for_prod(stack_identifier)
|
2016-07-26 10:58:33 +08:00
|
|
|
|
2016-06-17 09:25:38 +08:00
|
|
|
parms = {'env_type': 'prod',
|
|
|
|
'zone': 'shanghai'}
|
|
|
|
self.update_stack(stack_identifier,
|
|
|
|
template=cfn_template,
|
|
|
|
parameters=parms)
|
|
|
|
|
|
|
|
resources = self.client.resources.list(stack_identifier)
|
|
|
|
self.res_assert_for_prod(resources, False)
|
|
|
|
self.output_assert_for_prod(stack_identifier, False)
|
|
|
|
|
2016-07-27 18:11:58 +08:00
|
|
|
parms = {'env_type': 'prod',
|
|
|
|
'zone': 'xiamen'}
|
|
|
|
self.update_stack(stack_identifier,
|
|
|
|
template=cfn_template,
|
|
|
|
parameters=parms)
|
|
|
|
|
|
|
|
resources = self.client.resources.list(stack_identifier)
|
|
|
|
self.res_assert_for_prod(resources, bj_prod=False, fj_zone=True)
|
|
|
|
self.output_assert_for_prod(stack_identifier, False)
|
|
|
|
|
2016-09-08 15:37:51 -04:00
|
|
|
parms = {'env_type': 'prod',
|
|
|
|
'zone': 'xianyang'}
|
|
|
|
self.update_stack(stack_identifier,
|
|
|
|
template=cfn_template,
|
|
|
|
parameters=parms)
|
|
|
|
|
|
|
|
resources = self.client.resources.list(stack_identifier)
|
|
|
|
self.res_assert_for_prod(resources, bj_prod=False, fj_zone=False,
|
|
|
|
shannxi_provice=True)
|
|
|
|
self.output_assert_for_prod(stack_identifier, False)
|
|
|
|
|
2016-07-26 10:58:33 +08:00
|
|
|
def test_stack_create_update_cfn_template_prod_to_test(self):
|
|
|
|
parms = {'env_type': 'prod'}
|
|
|
|
stack_identifier = self.stack_create(template=cfn_template,
|
|
|
|
parameters=parms)
|
|
|
|
resources = self.client.resources.list(stack_identifier)
|
|
|
|
self.res_assert_for_prod(resources)
|
2016-07-26 14:32:40 +08:00
|
|
|
self.output_assert_for_prod(stack_identifier)
|
2016-07-26 10:58:33 +08:00
|
|
|
|
2016-07-27 18:11:58 +08:00
|
|
|
parms = {'zone': 'xiamen',
|
|
|
|
'env_type': 'prod'}
|
|
|
|
self.update_stack(stack_identifier,
|
|
|
|
template=cfn_template,
|
|
|
|
parameters=parms)
|
|
|
|
|
|
|
|
resources = self.client.resources.list(stack_identifier)
|
|
|
|
self.res_assert_for_prod(resources, bj_prod=False, fj_zone=True)
|
|
|
|
self.output_assert_for_prod(stack_identifier, bj_prod=False)
|
|
|
|
|
2016-09-08 15:37:51 -04:00
|
|
|
parms = {'zone': 'xianyang',
|
|
|
|
'env_type': 'prod'}
|
|
|
|
self.update_stack(stack_identifier,
|
|
|
|
template=cfn_template,
|
|
|
|
parameters=parms)
|
|
|
|
|
|
|
|
resources = self.client.resources.list(stack_identifier)
|
|
|
|
self.res_assert_for_prod(resources, bj_prod=False, fj_zone=False,
|
|
|
|
shannxi_provice=True)
|
|
|
|
self.output_assert_for_prod(stack_identifier, bj_prod=False)
|
|
|
|
|
|
|
|
parms = {'zone': 'shanghai',
|
|
|
|
'env_type': 'prod'}
|
|
|
|
self.update_stack(stack_identifier,
|
|
|
|
template=cfn_template,
|
|
|
|
parameters=parms)
|
|
|
|
|
|
|
|
resources = self.client.resources.list(stack_identifier)
|
|
|
|
self.res_assert_for_prod(resources, bj_prod=False, fj_zone=False,
|
|
|
|
shannxi_provice=False)
|
|
|
|
self.output_assert_for_prod(stack_identifier, bj_prod=False)
|
|
|
|
|
2016-07-26 10:58:33 +08:00
|
|
|
parms = {'env_type': 'test'}
|
|
|
|
self.update_stack(stack_identifier,
|
|
|
|
template=cfn_template,
|
|
|
|
parameters=parms)
|
|
|
|
|
|
|
|
resources = self.client.resources.list(stack_identifier)
|
|
|
|
self.res_assert_for_test(resources)
|
2016-07-26 14:32:40 +08:00
|
|
|
self.output_assert_for_test(stack_identifier)
|
2016-07-26 10:58:33 +08:00
|
|
|
|
2016-07-27 18:11:58 +08:00
|
|
|
parms = {'env_type': 'test',
|
|
|
|
'zone': 'fuzhou'}
|
|
|
|
self.update_stack(stack_identifier,
|
|
|
|
template=cfn_template,
|
|
|
|
parameters=parms)
|
|
|
|
|
|
|
|
resources = self.client.resources.list(stack_identifier)
|
|
|
|
self.res_assert_for_test(resources, fj_zone=True)
|
|
|
|
self.output_assert_for_test(stack_identifier)
|
|
|
|
|
2016-09-08 15:37:51 -04:00
|
|
|
parms = {'env_type': 'test',
|
|
|
|
'zone': 'xianyang'}
|
|
|
|
self.update_stack(stack_identifier,
|
|
|
|
template=cfn_template,
|
|
|
|
parameters=parms)
|
|
|
|
|
|
|
|
resources = self.client.resources.list(stack_identifier)
|
|
|
|
self.res_assert_for_test(resources, fj_zone=False,
|
|
|
|
shannxi_provice=True)
|
|
|
|
self.output_assert_for_test(stack_identifier)
|
|
|
|
|
2016-07-26 10:58:33 +08:00
|
|
|
def test_stack_create_update_hot_template_test_to_prod(self):
|
|
|
|
stack_identifier = self.stack_create(template=hot_template)
|
|
|
|
resources = self.client.resources.list(stack_identifier)
|
|
|
|
self.res_assert_for_test(resources)
|
2016-07-26 14:32:40 +08:00
|
|
|
self.output_assert_for_test(stack_identifier)
|
2016-07-26 10:58:33 +08:00
|
|
|
|
2016-09-08 15:37:51 -04:00
|
|
|
parms = {'zone': 'xianyang'}
|
|
|
|
self.update_stack(stack_identifier,
|
|
|
|
template=hot_template,
|
|
|
|
parameters=parms)
|
|
|
|
|
|
|
|
resources = self.client.resources.list(stack_identifier)
|
|
|
|
self.res_assert_for_test(resources, shannxi_provice=True)
|
|
|
|
self.output_assert_for_test(stack_identifier)
|
|
|
|
|
2016-07-26 10:58:33 +08:00
|
|
|
parms = {'env_type': 'prod'}
|
|
|
|
self.update_stack(stack_identifier,
|
|
|
|
template=hot_template,
|
|
|
|
parameters=parms)
|
|
|
|
|
|
|
|
resources = self.client.resources.list(stack_identifier)
|
|
|
|
self.res_assert_for_prod(resources)
|
2016-07-26 14:32:40 +08:00
|
|
|
self.output_assert_for_prod(stack_identifier)
|
2016-07-26 10:58:33 +08:00
|
|
|
|
2016-06-17 09:25:38 +08:00
|
|
|
parms = {'env_type': 'prod',
|
|
|
|
'zone': 'shanghai'}
|
|
|
|
self.update_stack(stack_identifier,
|
|
|
|
template=hot_template,
|
|
|
|
parameters=parms)
|
|
|
|
|
|
|
|
resources = self.client.resources.list(stack_identifier)
|
|
|
|
self.res_assert_for_prod(resources, False)
|
|
|
|
self.output_assert_for_prod(stack_identifier, False)
|
|
|
|
|
2016-09-08 15:37:51 -04:00
|
|
|
parms = {'env_type': 'prod',
|
|
|
|
'zone': 'xianyang'}
|
|
|
|
self.update_stack(stack_identifier,
|
|
|
|
template=hot_template,
|
|
|
|
parameters=parms)
|
|
|
|
|
|
|
|
resources = self.client.resources.list(stack_identifier)
|
|
|
|
self.res_assert_for_prod(resources, False, shannxi_provice=True)
|
|
|
|
self.output_assert_for_prod(stack_identifier, False)
|
|
|
|
|
2016-07-26 10:58:33 +08:00
|
|
|
def test_stack_create_update_hot_template_prod_to_test(self):
|
|
|
|
parms = {'env_type': 'prod'}
|
|
|
|
stack_identifier = self.stack_create(template=hot_template,
|
|
|
|
parameters=parms)
|
|
|
|
resources = self.client.resources.list(stack_identifier)
|
|
|
|
self.res_assert_for_prod(resources)
|
2016-07-26 14:32:40 +08:00
|
|
|
self.output_assert_for_prod(stack_identifier)
|
2016-07-26 10:58:33 +08:00
|
|
|
|
2016-09-08 15:37:51 -04:00
|
|
|
parms = {'env_type': 'prod',
|
|
|
|
'zone': 'xianyang'}
|
|
|
|
self.update_stack(stack_identifier,
|
|
|
|
template=hot_template,
|
|
|
|
parameters=parms)
|
|
|
|
|
|
|
|
resources = self.client.resources.list(stack_identifier)
|
|
|
|
self.res_assert_for_prod(resources, False, shannxi_provice=True)
|
|
|
|
self.output_assert_for_prod(stack_identifier, False)
|
|
|
|
|
2016-07-26 10:58:33 +08:00
|
|
|
parms = {'env_type': 'test'}
|
|
|
|
self.update_stack(stack_identifier,
|
|
|
|
template=hot_template,
|
|
|
|
parameters=parms)
|
|
|
|
|
|
|
|
resources = self.client.resources.list(stack_identifier)
|
|
|
|
self.res_assert_for_test(resources)
|
2016-07-26 14:32:40 +08:00
|
|
|
self.output_assert_for_test(stack_identifier)
|
Copy correct definition to the backup stack
We were using the definition of the existing resource, immediately after
updating it in place, to copy to the backup stack. This turns out to be
incorrect, because the definition of the new resource is only copied to the
existing resource if it was actually updated. It doesn't follow that the
existing resource's definition must be the same, because it's actually the
frozen definition (using the stored property values from the DB) that's
compared with the new definition when deciding to update. The existing
definition might well be rubbish if a previous update is failed, because it
does not get updated in the existing template after the resource is updated
in place. This caused bug 1622795 when combined with the new conditionals
feature.
We were also using the wrong template to do the parsing in both cases: when
updating in-place we are passing the new definition, but we were reparsing
using the existing template. And we were effectively doing the same when
creating a new resource, because we accessed the template through the new
resource only *after* it had been moved to the existing stack. In both
cases the correct code would have been:
definition = new_res.t.reparse(self.previous_stack,
new_res.stack.t)
However, there's no actual need to reparse the resource definitions before
passing them to Template.add_resource(), because that method immediately
calls render_hot() to get back to the unparsed definition anyway. So just
don't bother. These issues have been requiring us up until now to cache the
conditionals from the new_stack in the Template, to prevent the reparsing
from looking at the wrong set of conditionals. This change relieves us of
that restriction.
Finally, change the debug error messages to distinguish this case (copying
a resource definition into the backup template) from "backing up" a
resource (moving an actual physical resource into the backup stack).
Change-Id: I7be92f2e1b812c23fa52d87c18c7f22f1be94446
Closes-Bug: #1622795
2016-09-12 20:51:52 -04:00
|
|
|
|
2016-09-08 15:37:51 -04:00
|
|
|
parms = {'env_type': 'test',
|
|
|
|
'zone': 'xianyang'}
|
|
|
|
self.update_stack(stack_identifier,
|
|
|
|
template=hot_template,
|
|
|
|
parameters=parms)
|
|
|
|
|
|
|
|
resources = self.client.resources.list(stack_identifier)
|
|
|
|
self.res_assert_for_test(resources, fj_zone=False,
|
|
|
|
shannxi_provice=True)
|
|
|
|
self.output_assert_for_test(stack_identifier)
|
|
|
|
|
Copy correct definition to the backup stack
We were using the definition of the existing resource, immediately after
updating it in place, to copy to the backup stack. This turns out to be
incorrect, because the definition of the new resource is only copied to the
existing resource if it was actually updated. It doesn't follow that the
existing resource's definition must be the same, because it's actually the
frozen definition (using the stored property values from the DB) that's
compared with the new definition when deciding to update. The existing
definition might well be rubbish if a previous update is failed, because it
does not get updated in the existing template after the resource is updated
in place. This caused bug 1622795 when combined with the new conditionals
feature.
We were also using the wrong template to do the parsing in both cases: when
updating in-place we are passing the new definition, but we were reparsing
using the existing template. And we were effectively doing the same when
creating a new resource, because we accessed the template through the new
resource only *after* it had been moved to the existing stack. In both
cases the correct code would have been:
definition = new_res.t.reparse(self.previous_stack,
new_res.stack.t)
However, there's no actual need to reparse the resource definitions before
passing them to Template.add_resource(), because that method immediately
calls render_hot() to get back to the unparsed definition anyway. So just
don't bother. These issues have been requiring us up until now to cache the
conditionals from the new_stack in the Template, to prevent the reparsing
from looking at the wrong set of conditionals. This change relieves us of
that restriction.
Finally, change the debug error messages to distinguish this case (copying
a resource definition into the backup template) from "backing up" a
resource (moving an actual physical resource into the backup stack).
Change-Id: I7be92f2e1b812c23fa52d87c18c7f22f1be94446
Closes-Bug: #1622795
2016-09-12 20:51:52 -04:00
|
|
|
def test_condition_rename(self):
|
|
|
|
stack_identifier = self.stack_create(template=before_rename_tmpl)
|
|
|
|
self.update_stack(stack_identifier, template=after_rename_tmpl)
|
|
|
|
self.update_stack(stack_identifier, template=fail_rename_tmpl,
|
|
|
|
expected_status='UPDATE_FAILED')
|
|
|
|
self.update_stack(stack_identifier, template=recover_rename_tmpl)
|