tacker/tacker/tests/functional/commonservices/test_vnf_events.py

96 lines
3.6 KiB
Python

# Copyright 2016 Brocade Communications System, Inc.
#
# 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 oslo_config import cfg
from tacker.plugins.common import constants as evt_constants
from tacker.tests import constants
from tacker.tests.functional import base
from tacker.tests.utils import read_file
CONF = cfg.CONF
VNF_CIRROS_CREATE_TIMEOUT = 120
class VnfTestEvent(base.BaseTackerTest):
def _test_create_delete_vnf_events(self, vnf_name, vim_id=None):
data = dict()
data['tosca'] = read_file(
'sample_cirros_vnf_no_monitoring.yaml')
vnfd_name = 'sample_cirros_vnf_no_monitoring'
toscal = data['tosca']
tosca_arg = {'vnfd': {'name': vnfd_name,
'attributes': {'vnfd': toscal}}}
# Create vnfd with tosca template
vnfd_instance = self.client.create_vnfd(body=tosca_arg)
self.assertIsNotNone(vnfd_instance)
# Create vnf with vnfd_id
vnfd_id = vnfd_instance['vnfd']['id']
vnf_arg = {'vnf': {'vnfd_id': vnfd_id, 'name': vnf_name}}
if vim_id:
vnf_arg['vnf']['vim_id'] = vim_id
vnf_instance = self.client.create_vnf(body=vnf_arg)
self.validate_vnf_instance(vnfd_instance, vnf_instance)
vnf_id = vnf_instance['vnf']['id']
self.wait_until_vnf_active(
vnf_id,
constants.VNF_CIRROS_CREATE_TIMEOUT,
constants.ACTIVE_SLEEP_TIME)
self.assertIsNotNone(self.client.show_vnf(vnf_id)['vnf']['mgmt_url'])
if vim_id:
self.assertEqual(vim_id, vnf_instance['vnf']['vim_id'])
vnf_id = vnf_instance['vnf']['id']
params = {'resource_id': vnf_id,
'event_type': evt_constants.RES_EVT_CREATE,
'timestamp': vnf_instance['vnf'][
evt_constants.RES_EVT_CREATED_FLD]}
vnf_evt_list = self.client.list_vnf_events(params)
self.assertIsNotNone(vnf_evt_list,
"List of vnfd events are Empty after Creation")
# Delete vnf_instance with vnf_id
try:
self.client.delete_vnf(vnf_id)
except Exception:
assert False, "vnf Delete failed"
params = {'resource_id': vnf_id,
'event_type': evt_constants.RES_EVT_DELETE}
vnf_evt_list = self.client.list_vnf_events(params)
self.assertIsNotNone(vnf_evt_list,
"List of vnf events are Empty after Deletion")
self.assertEqual(1, len(vnf_evt_list))
# Delete vnfd_instance
self.addCleanup(self.client.delete_vnfd, vnfd_id)
self.addCleanup(self.wait_until_vnf_delete, vnf_id,
constants.VNF_CIRROS_DELETE_TIMEOUT)
def test_create_delete_vnf_with_default_vim(self):
self._test_create_delete_vnf_events(
vnf_name='test_vnf_with_cirros_no_monitoring')
def test_create_delete_vnf_with_vim_id(self):
vim_list = self.client.list_vims()
vim0_id = self.get_vim(vim_list, 'VIM0')['id']
self._test_create_delete_vnf_events(
vim_id=vim0_id,
vnf_name='test_vnf_with_cirros_with_default_vim_id')