65a77a3105
Classes in parser.py are already split to stack.py and template.py, it's not recommended to import it. Closes-Bug: #1442011 Change-Id: Ia8cc0ca07e7926fe8b7d9f5c89b39053a799e689
67 lines
2.4 KiB
Python
67 lines
2.4 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.
|
|
|
|
import uuid
|
|
|
|
import mock
|
|
|
|
from heat.engine.resources.openstack.heat import cloud_config
|
|
from heat.engine import stack
|
|
from heat.engine import template
|
|
from heat.tests import common
|
|
from heat.tests import utils
|
|
|
|
|
|
class CloudConfigTest(common.HeatTestCase):
|
|
|
|
def setUp(self):
|
|
super(CloudConfigTest, self).setUp()
|
|
self.ctx = utils.dummy_context()
|
|
self.properties = {
|
|
'cloud_config': {'foo': 'bar'}
|
|
}
|
|
self.stack = stack.Stack(
|
|
self.ctx, 'software_config_test_stack',
|
|
template.Template({
|
|
'HeatTemplateFormatVersion': '2012-12-12',
|
|
'Resources': {
|
|
'config_mysql': {
|
|
'Type': 'OS::Heat::CloudConfig',
|
|
'Properties': self.properties
|
|
}}}))
|
|
self.config = self.stack['config_mysql']
|
|
self.rpc_client = mock.MagicMock()
|
|
self.config._rpc_client = self.rpc_client
|
|
|
|
def test_resource_mapping(self):
|
|
mapping = cloud_config.resource_mapping()
|
|
self.assertEqual(1, len(mapping))
|
|
self.assertEqual(cloud_config.CloudConfig,
|
|
mapping['OS::Heat::CloudConfig'])
|
|
self.assertIsInstance(self.config, cloud_config.CloudConfig)
|
|
|
|
def test_handle_create(self):
|
|
config_id = 'c8a19429-7fde-47ea-a42f-40045488226c'
|
|
value = {'id': config_id}
|
|
self.rpc_client.create_software_config.return_value = value
|
|
self.config.id = 5
|
|
self.config.uuid = uuid.uuid4().hex
|
|
self.config.handle_create()
|
|
self.assertEqual(config_id, self.config.resource_id)
|
|
kwargs = self.rpc_client.create_software_config.call_args[1]
|
|
self.assertEqual({
|
|
'name': self.config.physical_resource_name(),
|
|
'config': '#cloud-config\n{foo: bar}\n',
|
|
'group': 'Heat::Ungrouped'
|
|
}, kwargs)
|