e50ce9c6e2
Reverts I90e1d26a67a349f897d895f750d8e57fae98ec1f and I116a96b20082d1c47068ddc64873200e9ae33a27 . There have been a few changes that should enable these tests to succeed on a regular basis, all related to edge cases around updating a resource's atomic_key and metadata: Corrected max secs for concurrent trans retriese37d9fab8f
Don't set metadata for deleted resources8d7e3e41e8
Allow retries when resource acquires lock2ec2d5a973
Change-Id: I0fe508cf102bc1041a16c5ce1d9e384ecd591173
108 lines
3.1 KiB
Python
108 lines
3.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.
|
|
|
|
from heat_integrationtests.functional import functional_base
|
|
|
|
|
|
class OSWaitCondition(functional_base.FunctionalTestsBase):
|
|
|
|
template = '''
|
|
heat_template_version: 2013-05-23
|
|
parameters:
|
|
flavor:
|
|
type: string
|
|
image:
|
|
type: string
|
|
network:
|
|
type: string
|
|
timeout:
|
|
type: number
|
|
default: 60
|
|
resources:
|
|
instance1:
|
|
type: OS::Nova::Server
|
|
properties:
|
|
flavor: {get_param: flavor}
|
|
image: {get_param: image}
|
|
networks:
|
|
- network: {get_param: network}
|
|
user_data_format: RAW
|
|
user_data:
|
|
str_replace:
|
|
template: '#!/bin/sh
|
|
|
|
wc_notify --data-binary ''{"status": "SUCCESS"}''
|
|
|
|
# signals with reason
|
|
|
|
wc_notify --data-binary ''{"status": "SUCCESS", "reason":
|
|
"signal2"}''
|
|
|
|
# signals with data
|
|
|
|
wc_notify --data-binary ''{"status": "SUCCESS", "reason":
|
|
"signal3", "data": "data3"}''
|
|
|
|
wc_notify --data-binary ''{"status": "SUCCESS", "reason":
|
|
"signal4", "data": "data4"}''
|
|
|
|
# check signals with the same number
|
|
|
|
wc_notify --data-binary ''{"status": "SUCCESS", "id": "5"}''
|
|
|
|
wc_notify --data-binary ''{"status": "SUCCESS", "id": "5"}''
|
|
|
|
# loop for 20 signals without reasons and data
|
|
|
|
for i in `seq 1 20`; do wc_notify --data-binary ''{"status":
|
|
"SUCCESS"}'' & done
|
|
|
|
wait
|
|
'
|
|
params:
|
|
wc_notify:
|
|
get_attr: [wait_handle, curl_cli]
|
|
|
|
wait_condition:
|
|
type: OS::Heat::WaitCondition
|
|
depends_on: instance1
|
|
properties:
|
|
count: 25
|
|
handle: {get_resource: wait_handle}
|
|
timeout: {get_param: timeout}
|
|
|
|
wait_handle:
|
|
type: OS::Heat::WaitConditionHandle
|
|
|
|
outputs:
|
|
curl_cli:
|
|
value:
|
|
get_attr: [wait_handle, curl_cli]
|
|
wc_data:
|
|
value:
|
|
get_attr: [wait_condition, data]
|
|
'''
|
|
|
|
def setUp(self):
|
|
super(OSWaitCondition, self).setUp()
|
|
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")
|
|
|
|
def test_create_stack_with_multi_signal_waitcondition(self):
|
|
params = {'flavor': self.conf.minimal_instance_type,
|
|
'image': self.conf.minimal_image_ref,
|
|
'network': self.conf.fixed_network_name,
|
|
'timeout': 120}
|
|
self.stack_create(template=self.template, parameters=params)
|