6b9023fa2c
Change-Id: I2a2f3fbf0c523e294dd52024a2f55c0ad158b15b
100 lines
4.1 KiB
Python
100 lines
4.1 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 json
|
|
|
|
from tempest.lib import decorators
|
|
|
|
from heat_tempest_plugin.common import exceptions
|
|
from heat_tempest_plugin.tests.scenario import scenario_base
|
|
|
|
|
|
class ServerSignalIntegrationTest(scenario_base.ScenarioTestsBase):
|
|
"""Test a server in a created network can signal to heat."""
|
|
|
|
def _test_server_signal(self, user_data_format='RAW',
|
|
image=None, flavor=None):
|
|
"""Check a server in a created network can signal to heat."""
|
|
parameters = {
|
|
'key_name': self.keypair_name,
|
|
'flavor': flavor,
|
|
'image': image,
|
|
'public_net': self.conf.floating_network_name,
|
|
'timeout': self.conf.build_timeout,
|
|
'user_data_format': user_data_format
|
|
}
|
|
if self.conf.vm_to_heat_api_insecure:
|
|
parameters['wc_extra_args'] = '--insecure'
|
|
# Launch stack
|
|
sid = self.launch_stack(
|
|
template_name="test_server_signal.yaml",
|
|
parameters=parameters,
|
|
expected_status=None
|
|
)
|
|
|
|
# Check status of all resources
|
|
for res in ('sg', 'floating_ip', 'network', 'router', 'subnet',
|
|
'router_interface', 'wait_handle', 'server',
|
|
'server_floating_ip_assoc'):
|
|
self._wait_for_resource_status(
|
|
sid, res, 'CREATE_COMPLETE')
|
|
|
|
server_resource = self.client.resources.get(sid, 'server')
|
|
server_id = server_resource.physical_resource_id
|
|
server = self.compute_client.servers.get(server_id)
|
|
|
|
try:
|
|
self._wait_for_resource_status(
|
|
sid, 'wait_condition', 'CREATE_COMPLETE')
|
|
except (exceptions.StackResourceBuildErrorException,
|
|
exceptions.TimeoutException):
|
|
raise
|
|
finally:
|
|
# attempt to log the server console regardless of WaitCondition
|
|
# going to complete. This allows successful and failed cloud-init
|
|
# logs to be compared
|
|
self._log_console_output(servers=[server])
|
|
|
|
stack = self.client.stacks.get(sid)
|
|
|
|
wc_data = json.loads(
|
|
self._stack_output(stack, 'wc_data'))
|
|
self.assertEqual({'1': 'test complete'}, wc_data)
|
|
|
|
server_ip = self._stack_output(stack, 'server_ip')
|
|
|
|
# Check that created server is reachable
|
|
if not self._ping_ip_address(server_ip):
|
|
self._log_console_output(servers=[server])
|
|
self.fail(
|
|
"Timed out waiting for %s to become reachable" % server_ip)
|
|
|
|
@decorators.idempotent_id('8da0f6cc-60e6-4298-9e54-e1f905c5552a')
|
|
def test_server_signal_userdata_format_raw(self):
|
|
if not self.conf.minimal_image_ref:
|
|
raise self.skipException("No minimal image configured to test")
|
|
if not self.conf.minimal_instance_type:
|
|
raise self.skipException("No minimal flavor configured to test")
|
|
self._test_server_signal(image=self.conf.minimal_image_ref,
|
|
flavor=self.conf.minimal_instance_type)
|
|
|
|
@decorators.idempotent_id('3d753d42-7c16-4a0e-8f73-875881826626')
|
|
def test_server_signal_userdata_format_software_config(self):
|
|
if not self.conf.image_ref:
|
|
raise self.skipException("No image configured to test")
|
|
if not self.conf.instance_type:
|
|
raise self.skipException("No flavor configured to test")
|
|
self._test_server_signal(user_data_format='SOFTWARE_CONFIG',
|
|
image=self.conf.image_ref,
|
|
flavor=self.conf.instance_type)
|