# # 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 time from oslo_config import cfg from oslo_serialization import jsonutils from tacker.plugins.common import constants as evt_constants from tacker.tests import constants from tacker.tests.functional import base CONF = cfg.CONF class VnfTestToscaScale(base.BaseTackerTest): def test_vnf_tosca_scale(self): vnf_name = 'test_tosca_vnf_scale_all' vnfd_file = 'sample-tosca-scale-all.yaml' vnfd_instance, vnf_instance, tosca_dict = self.vnfd_and_vnf_create( vnfd_file, vnf_name) vnf_id = vnf_instance['vnf']['id'] # TODO(kanagaraj-manickam) once load-balancer support is enabled, # update this logic to validate the scaling def _wait(count): self.wait_until_vnf_active( vnf_id, constants.VNF_CIRROS_CREATE_TIMEOUT, constants.ACTIVE_SLEEP_TIME) vnf = self.client.show_vnf(vnf_id)['vnf'] # {"VDU1": ["10.0.0.14", "10.0.0.5"]} self.assertEqual(count, len(jsonutils.loads(vnf[ 'mgmt_ip_address'])['VDU1'])) _wait(2) # Get nested resources when vnf is in active state vnf_details = self.client.list_vnf_resources(vnf_id)['resources'] resources_list = list() for vnf_detail in vnf_details: resources_list.append(vnf_detail['name']) self.assertIn('VDU1', resources_list) self.assertIn('CP1', resources_list) self.assertIn('SP1_group', resources_list) def _scale(type, count): body = {"scale": {'type': type, 'policy': 'SP1'}} self.client.scale_vnf(vnf_id, body) _wait(count) # scale out time.sleep(constants.SCALE_WINDOW_SLEEP_TIME) _scale('out', 3) # scale in time.sleep(constants.SCALE_WINDOW_SLEEP_TIME) _scale('in', 2) # Verifying that as part of SCALE OUT, VNF states PENDING_SCALE_OUT # and ACTIVE occurs and as part of SCALE IN, VNF states # PENDING_SCALE_IN and ACTIVE occur. self.verify_vnf_crud_events(vnf_id, evt_constants.RES_EVT_SCALE, evt_constants.ACTIVE, cnt=2) self.verify_vnf_crud_events(vnf_id, evt_constants.RES_EVT_SCALE, evt_constants.PENDING_SCALE_OUT, cnt=1) self.verify_vnf_crud_events(vnf_id, evt_constants.RES_EVT_SCALE, evt_constants.PENDING_SCALE_IN, cnt=1) # Delete vnf_instance with vnf_id try: self.client.delete_vnf(vnf_id) except Exception: assert False, "vnf Delete failed" # Wait for delete vnf_instance self.addCleanup(self.wait_until_vnf_delete, vnf_id, constants.VNF_CIRROS_DELETE_TIMEOUT)