heat/heat/tests/openstack/magnum/test_cluster_template.py

164 lines
6.5 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 copy
import mock
import six
from heat.common import exception
from heat.common import template_format
from heat.engine import resource
from heat.engine.resources.openstack.magnum import cluster_template
from heat.engine import scheduler
from heat.engine import template
from heat.tests import common
from heat.tests import utils
RESOURCE_TYPE = 'OS::Magnum::ClusterTemplate'
class TestMagnumClusterTemplate(common.HeatTestCase):
magnum_template = '''
heat_template_version: ocata
resources:
test_cluster_template:
type: OS::Magnum::ClusterTemplate
properties:
name: test_cluster_template
image: fedora-21-atomic-2
flavor: m1.small
master_flavor: m1.medium
keypair: heat_key
external_network: 0244b54d-ae1f-44f0-a24a-442760f1d681
fixed_network: 0f59a3dd-fac1-4d03-b41a-d4115fbffa89
fixed_subnet: 27a8c89c-0d28-4946-8c78-82cfec1d670a
dns_nameserver: 8.8.8.8
docker_volume_size: 5
docker_storage_driver: devicemapper
coe: 'mesos'
network_driver: 'flannel'
http_proxy: 'http://proxy.com:123'
https_proxy: 'https://proxy.com:123'
no_proxy: '192.168.0.1'
labels: {'flannel_cidr': ['10.101.0.0/16', '10.102.0.0/16']}
tls_disabled: True
public: True
registry_enabled: True
volume_driver: rexray
server_type: vm
master_lb_enabled: True
floating_ip_enabled: True
'''
expected = {
'name': 'test_cluster_template',
'image_id': 'fedora-21-atomic-2',
'flavor_id': 'm1.small',
'master_flavor_id': 'm1.medium',
'keypair_id': 'heat_key',
'external_network_id': '0244b54d-ae1f-44f0-a24a-442760f1d681',
'fixed_network': '0f59a3dd-fac1-4d03-b41a-d4115fbffa89',
'fixed_subnet': '27a8c89c-0d28-4946-8c78-82cfec1d670a',
'dns_nameserver': '8.8.8.8',
'docker_volume_size': 5,
'docker_storage_driver': 'devicemapper',
'coe': 'mesos',
'network_driver': 'flannel',
'http_proxy': 'http://proxy.com:123',
'https_proxy': 'https://proxy.com:123',
'no_proxy': '192.168.0.1',
'labels': {'flannel_cidr': ['10.101.0.0/16', '10.102.0.0/16']},
'tls_disabled': True,
'public': True,
'registry_enabled': True,
'volume_driver': 'rexray',
'server_type': 'vm',
'master_lb_enabled': True,
'floating_ip_enabled': True
}
def setUp(self):
super(TestMagnumClusterTemplate, self).setUp()
resource._register_class(RESOURCE_TYPE,
cluster_template.ClusterTemplate)
self.t = template_format.parse(self.magnum_template)
self.stack = utils.parse_stack(self.t)
resource_defns = self.stack.t.resource_definitions(self.stack)
self.rsrc_defn = resource_defns['test_cluster_template']
self.client = mock.Mock()
self.patchobject(cluster_template.ClusterTemplate, 'client',
return_value=self.client)
self.stub_FlavorConstraint_validate()
self.stub_KeypairConstraint_validate()
self.stub_ImageConstraint_validate()
self.stub_NetworkConstraint_validate()
self.stub_SubnetConstraint_validate()
def _create_resource(self, name, snippet, stack):
self.resource_id = '12345'
self.test_cluster_template = self.stack['test_cluster_template']
value = mock.MagicMock(uuid=self.resource_id)
self.client.cluster_templates.create.return_value = value
bm = cluster_template.ClusterTemplate(name, snippet, stack)
scheduler.TaskRunner(bm.create)()
return bm
def test_cluster_template_create(self):
bm = self._create_resource('bm', self.rsrc_defn, self.stack)
self.assertEqual(self.resource_id, bm.resource_id)
self.assertEqual((bm.CREATE, bm.COMPLETE), bm.state)
self.client.cluster_templates.create.assert_called_once_with(
**self.expected)
def test_validate_invalid_volume_driver(self):
props = self.t['resources']['test_cluster_template']['properties']
props['volume_driver'] = 'cinder'
stack = utils.parse_stack(self.t)
msg = ("Volume driver type cinder is not supported by COE:mesos, "
"expecting a ['rexray'] volume driver.")
ex = self.assertRaises(exception.StackValidationFailed,
stack['test_cluster_template'].validate)
self.assertEqual(msg, six.text_type(ex))
def _cluster_template_update(self, update_status='UPDATE_COMPLETE',
exc_msg=None):
ct = self._create_resource('ct', self.rsrc_defn, self.stack)
status = mock.MagicMock(status=update_status)
self.client.cluster_templates.get.return_value = status
t = template_format.parse(self.magnum_template)
new_t = copy.deepcopy(t)
new_t['resources'][self.expected['name']]['properties'][
cluster_template.ClusterTemplate.PUBLIC] = False
rsrc_defns = template.Template(new_t).resource_definitions(self.stack)
new_ct = rsrc_defns[self.expected['name']]
if update_status == 'UPDATE_COMPLETE':
scheduler.TaskRunner(ct.update, new_ct)()
self.assertEqual((ct.UPDATE, ct.COMPLETE), ct.state)
else:
exc = self.assertRaises(
exception.ResourceFailure,
scheduler.TaskRunner(ct.update, new_ct))
self.assertIn(exc_msg, six.text_type(exc))
def test_cluster_update(self):
self._cluster_template_update()
def test_cluster_update_failed(self):
self._cluster_template_update('UPDATE_FAILED',
'Failed to update Cluster')
def test_cluster_update_unknown_status(self):
self._cluster_template_update('UPDATE_BAR',
'Unknown status updating Cluster')