| # 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 logging |
| |
| from tempest.api.orchestration import base |
| from tempest.common.utils import data_utils |
| from tempest import config |
| from tempest import exceptions |
| from tempest.test import attr |
| |
| CONF = config.CONF |
| |
| LOG = logging.getLogger(__name__) |
| |
| |
| class TestServerStackLimits(base.BaseOrchestrationTest): |
| |
| @attr(type='gate') |
| def test_exceed_max_template_size_fails(self): |
| stack_name = data_utils.rand_name('heat') |
| fill = 'A' * CONF.orchestration.max_template_size |
| template = ''' |
| HeatTemplateFormatVersion: '2012-12-12' |
| Description: '%s' |
| Outputs: |
| Foo: bar''' % fill |
| ex = self.assertRaises(exceptions.BadRequest, self.create_stack, |
| stack_name, template) |
| self.assertIn('Template exceeds maximum allowed size', str(ex)) |
| |
| @attr(type='gate') |
| def test_exceed_max_resources_per_stack(self): |
| stack_name = data_utils.rand_name('heat') |
| # Create a big template, one resource more than the limit |
| template = 'heat_template_version: \'2013-05-23\'\nresources:\n' |
| rsrc_snippet = ' random%s:\n type: \'OS::Heat::RandomString\'\n' |
| num_resources = CONF.orchestration.max_resources_per_stack + 1 |
| for i in range(num_resources): |
| template += rsrc_snippet % i |
| |
| ex = self.assertRaises(exceptions.BadRequest, self.create_stack, |
| stack_name, template) |
| self.assertIn('Maximum resources per stack exceeded', str(ex)) |