heat/heat_integrationtests/functional/test_stack_tags.py
Sergey Kraynev 834d0deeb2 Extract tags before pass them in create/update
This patch adds call for extracting Tags from args and converting them
to list of tags instead of string.

Change-Id: If5159a548d38e6cb8400800be1e564c44c638edf
Closes-Bug: #1472266
2015-07-08 06:52:19 -04:00

70 lines
2.2 KiB
Python

# 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.common import test
class StackTagTest(test.HeatIntegrationTest):
template = '''
heat_template_version: 2014-10-16
description:
foo
'''
def setUp(self):
super(StackTagTest, self).setUp()
self.client = self.orchestration_client
def test_stack_tag(self):
# Stack create with stack tags
tags = 'foo,bar'
stack_identifier = self.stack_create(
template=self.template,
tags=tags
)
# Ensure property tag is populated and matches given tags
stack = self.client.stacks.get(stack_identifier)
self.assertEqual(['foo', 'bar'], stack.tags)
# Update tags
updated_tags = 'tag1,tag2'
self.update_stack(
stack_identifier,
template=self.template,
tags=updated_tags)
# Ensure property tag is populated and matches updated tags
updated_stack = self.client.stacks.get(stack_identifier)
self.assertEqual(['tag1', 'tag2'], updated_stack.tags)
# Delete tags
self.update_stack(
stack_identifier,
template=self.template
)
# Ensure property tag is not populated
empty_tags_stack = self.client.stacks.get(stack_identifier)
self.assertIsNone(empty_tags_stack.tags)
def test_hidden_stack(self):
# Stack create with hidden stack tag
tags = 'foo,hidden'
self.stack_create(
template=self.template,
tags=tags)
# Ensure stack does not exist when we do a stack list
for stack in self.client.stacks.list():
self.assertNotIn('hidden', stack.tags, "Hidden stack can be seen")