
Add ``openstack vnflcm op retry`` to python-tackerclient. This command can execute Retry operation. This API re-executes an LCM that is stopped in the FAILED_TEMP state from where it was interrupted. Implements: blueprint support-error-handling Spec: https://specs.openstack.org/openstack/tacker-specs/specs/wallaby/support-error-handling-based-on-ETSI-NFV.html Change-Id: I6731d0bcbcd5a4e597596e63c2cd883b3897a145
327 lines
11 KiB
Python
327 lines
11 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 io import StringIO
|
|
import os
|
|
import sys
|
|
|
|
from oslo_utils.fixture import uuidsentinel
|
|
from unittest import mock
|
|
|
|
from tackerclient.common import exceptions
|
|
from tackerclient.osc.v1.vnflcm import vnflcm_op_occs
|
|
from tackerclient.tests.unit.osc import base
|
|
from tackerclient.tests.unit.osc.v1.fixture_data import client
|
|
from tackerclient.tests.unit.osc.v1 import vnflcm_op_occs_fakes
|
|
|
|
|
|
def _get_columns_vnflcm_op_occs():
|
|
columns = ['ID', 'Operation State', 'State Entered Time',
|
|
'Start Time', 'VNF Instance ID', 'Operation',
|
|
'Is Automatic Invocation', 'Is Cancel Pending',
|
|
'Error', 'Links']
|
|
|
|
return columns
|
|
|
|
|
|
class TestVnfLcm(base.FixturedTestCase):
|
|
client_fixture_class = client.ClientFixture
|
|
|
|
def setUp(self):
|
|
super(TestVnfLcm, self).setUp()
|
|
self.url = client.TACKER_URL
|
|
self.header = {'content-type': 'application/json'}
|
|
self.app = mock.Mock()
|
|
self.app_args = mock.Mock()
|
|
self.client_manager = self.cs
|
|
self.app.client_manager.tackerclient = self.client_manager
|
|
|
|
|
|
class TestRollbackVnfLcmOp(TestVnfLcm):
|
|
|
|
def setUp(self):
|
|
super(TestRollbackVnfLcmOp, self).setUp()
|
|
self.rollback_vnf_lcm = vnflcm_op_occs.RollbackVnfLcmOp(
|
|
self.app, self.app_args, cmd_name='vnflcm op rollback')
|
|
|
|
def test_take_action(self):
|
|
"""take_action normal system test"""
|
|
|
|
arglist = [uuidsentinel.vnf_lcm_op_occ_id]
|
|
verifylist = [('vnf_lcm_op_occ_id', uuidsentinel.vnf_lcm_op_occ_id)]
|
|
|
|
parsed_args = self.check_parser(
|
|
self.rollback_vnf_lcm, arglist, verifylist)
|
|
url = os.path.join(
|
|
self.url,
|
|
'vnflcm/v1/vnf_lcm_op_occs',
|
|
uuidsentinel.vnf_lcm_op_occ_id,
|
|
'rollback')
|
|
|
|
self.requests_mock.register_uri(
|
|
'POST', url, headers=self.header, json={})
|
|
|
|
sys.stdout = buffer = StringIO()
|
|
self.rollback_vnf_lcm.take_action(parsed_args)
|
|
|
|
actual_message = buffer.getvalue().strip()
|
|
|
|
expected_message = (
|
|
'Rollback request for LCM operation ' +
|
|
uuidsentinel.vnf_lcm_op_occ_id +
|
|
' has been accepted')
|
|
|
|
self.assertEqual(expected_message, actual_message)
|
|
|
|
def test_take_action_vnf_lcm_op_occ_id_not_found(self):
|
|
"""take_action abnomaly system test"""
|
|
|
|
arglist = [uuidsentinel.vnf_lcm_op_occ_id]
|
|
verifylist = [('vnf_lcm_op_occ_id', uuidsentinel.vnf_lcm_op_occ_id)]
|
|
|
|
parsed_args = self.check_parser(
|
|
self.rollback_vnf_lcm, arglist, verifylist)
|
|
|
|
url = os.path.join(
|
|
self.url,
|
|
'vnflcm/v1/vnf_lcm_op_occs',
|
|
uuidsentinel.vnf_lcm_op_occ_id,
|
|
'rollback')
|
|
self.requests_mock.register_uri(
|
|
'POST', url, headers=self.header, status_code=404, json={})
|
|
|
|
self.assertRaises(exceptions.TackerClientException,
|
|
self.rollback_vnf_lcm.take_action,
|
|
parsed_args)
|
|
|
|
|
|
class TestFailVnfLcmOp(TestVnfLcm):
|
|
|
|
def setUp(self):
|
|
super(TestFailVnfLcmOp, self).setUp()
|
|
self.fail_vnf_lcm = vnflcm_op_occs.FailVnfLcmOp(
|
|
self.app, self.app_args, cmd_name='vnflcm op fail')
|
|
|
|
def test_take_action(self):
|
|
"""Test of take_action()"""
|
|
|
|
vnflcm_op_occ = vnflcm_op_occs_fakes.vnflcm_op_occ_response()
|
|
|
|
arg_list = [vnflcm_op_occ['id']]
|
|
verify_list = [('vnf_lcm_op_occ_id', vnflcm_op_occ['id'])]
|
|
|
|
# command param
|
|
parsed_args = self.check_parser(
|
|
self.fail_vnf_lcm, arg_list, verify_list)
|
|
url = os.path.join(
|
|
self.url,
|
|
'vnflcm/v1/vnf_lcm_op_occs',
|
|
vnflcm_op_occ['id'],
|
|
'fail')
|
|
|
|
self.requests_mock.register_uri(
|
|
'POST', url, headers=self.header, json=vnflcm_op_occ)
|
|
|
|
columns, data = (self.fail_vnf_lcm.take_action(parsed_args))
|
|
expected_columns = _get_columns_vnflcm_op_occs()
|
|
|
|
self.assertCountEqual(expected_columns, columns)
|
|
|
|
def test_take_action_vnf_lcm_op_occ_id_not_found(self):
|
|
"""Test if vnf-lcm-op-occ-id does not find"""
|
|
|
|
arg_list = [uuidsentinel.vnf_lcm_op_occ_id]
|
|
verify_list = [('vnf_lcm_op_occ_id', uuidsentinel.vnf_lcm_op_occ_id)]
|
|
|
|
# command param
|
|
parsed_args = self.check_parser(
|
|
self.fail_vnf_lcm, arg_list, verify_list)
|
|
|
|
url = os.path.join(
|
|
self.url,
|
|
'vnflcm/v1/vnf_lcm_op_occs',
|
|
uuidsentinel.vnf_lcm_op_occ_id,
|
|
'fail')
|
|
self.requests_mock.register_uri(
|
|
'POST', url, headers=self.header, status_code=404, json={})
|
|
|
|
self.assertRaises(exceptions.TackerClientException,
|
|
self.fail_vnf_lcm.take_action,
|
|
parsed_args)
|
|
|
|
def test_take_action_vnf_lcm_op_occ_state_is_conflict(self):
|
|
"""Test if vnf-lcm-op-occ state is conflict"""
|
|
|
|
arg_list = [uuidsentinel.vnf_lcm_op_occ_id]
|
|
verify_list = [('vnf_lcm_op_occ_id', uuidsentinel.vnf_lcm_op_occ_id)]
|
|
|
|
# command param
|
|
parsed_args = self.check_parser(
|
|
self.fail_vnf_lcm, arg_list, verify_list)
|
|
|
|
url = os.path.join(
|
|
self.url,
|
|
'vnflcm/v1/vnf_lcm_op_occs',
|
|
uuidsentinel.vnf_lcm_op_occ_id,
|
|
'fail')
|
|
self.requests_mock.register_uri(
|
|
'POST', url, headers=self.header, status_code=409, json={})
|
|
|
|
self.assertRaises(exceptions.TackerClientException,
|
|
self.fail_vnf_lcm.take_action,
|
|
parsed_args)
|
|
|
|
def test_take_action_vnf_lcm_op_occ_internal_server_error(self):
|
|
"""Test if request is internal server error"""
|
|
|
|
arg_list = [uuidsentinel.vnf_lcm_op_occ_id]
|
|
verify_list = [('vnf_lcm_op_occ_id', uuidsentinel.vnf_lcm_op_occ_id)]
|
|
|
|
# command param
|
|
parsed_args = self.check_parser(
|
|
self.fail_vnf_lcm, arg_list, verify_list)
|
|
|
|
url = os.path.join(
|
|
self.url,
|
|
'vnflcm/v1/vnf_lcm_op_occs',
|
|
uuidsentinel.vnf_lcm_op_occ_id,
|
|
'fail')
|
|
self.requests_mock.register_uri(
|
|
'POST', url, headers=self.header, status_code=500, json={})
|
|
|
|
self.assertRaises(exceptions.TackerClientException,
|
|
self.fail_vnf_lcm.take_action,
|
|
parsed_args)
|
|
|
|
def test_take_action_vnf_lcm_op_occ_missing_vnf_lcm_op_occ_id_argument(
|
|
self):
|
|
"""Test if vnflcm_op_occ_id is not provided"""
|
|
|
|
arg_list = []
|
|
verify_list = [('vnf_lcm_op_occ_id', arg_list)]
|
|
self.assertRaises(base.ParserException, self.check_parser,
|
|
self.fail_vnf_lcm, arg_list, verify_list)
|
|
|
|
|
|
class TestRetryVnfLcmOp(TestVnfLcm):
|
|
|
|
def setUp(self):
|
|
super(TestRetryVnfLcmOp, self).setUp()
|
|
self.retry_vnf_lcm = vnflcm_op_occs.RetryVnfLcmOp(
|
|
self.app, self.app_args, cmd_name='vnflcm op retry')
|
|
|
|
def test_take_action(self):
|
|
"""Test of take_action()"""
|
|
arg_list = [uuidsentinel.vnf_lcm_op_occ_id]
|
|
verify_list = [('vnf_lcm_op_occ_id', uuidsentinel.vnf_lcm_op_occ_id)]
|
|
|
|
# command param
|
|
parsed_args = self.check_parser(
|
|
self.retry_vnf_lcm, arg_list, verify_list)
|
|
url = os.path.join(
|
|
self.url,
|
|
'vnflcm/v1/vnf_lcm_op_occs',
|
|
uuidsentinel.vnf_lcm_op_occ_id,
|
|
'retry')
|
|
|
|
self.requests_mock.register_uri(
|
|
'POST', url, headers=self.header, json={})
|
|
|
|
sys.stdout = buffer = StringIO()
|
|
self.retry_vnf_lcm.take_action(parsed_args)
|
|
|
|
actual_message = buffer.getvalue().strip()
|
|
|
|
expected_message = (
|
|
'Retry request for LCM operation ' +
|
|
uuidsentinel.vnf_lcm_op_occ_id +
|
|
' has been accepted')
|
|
|
|
self.assertEqual(expected_message, actual_message)
|
|
|
|
def test_take_action_vnf_lcm_op_occ_id_not_found(self):
|
|
"""Test if vnf-lcm-op-occ-id is not found."""
|
|
arglist = [uuidsentinel.vnf_lcm_op_occ_id]
|
|
verifylist = [('vnf_lcm_op_occ_id', uuidsentinel.vnf_lcm_op_occ_id)]
|
|
|
|
# command param
|
|
parsed_args = self.check_parser(
|
|
self.retry_vnf_lcm, arglist, verifylist)
|
|
|
|
url = os.path.join(
|
|
self.url,
|
|
'vnflcm/v1/vnf_lcm_op_occs',
|
|
uuidsentinel.vnf_lcm_op_occ_id,
|
|
'retry')
|
|
|
|
self.requests_mock.register_uri(
|
|
'POST', url, headers=self.header, status_code=404, json={})
|
|
|
|
self.assertRaises(exceptions.TackerClientException,
|
|
self.retry_vnf_lcm.take_action,
|
|
parsed_args)
|
|
|
|
def test_take_action_vnf_lcm_op_occ_state_is_conflict(self):
|
|
"""Test if vnf-lcm-op-occ state is conflict"""
|
|
|
|
arg_list = [uuidsentinel.vnf_lcm_op_occ_id]
|
|
verify_list = [('vnf_lcm_op_occ_id', uuidsentinel.vnf_lcm_op_occ_id)]
|
|
|
|
# command param
|
|
parsed_args = self.check_parser(
|
|
self.retry_vnf_lcm, arg_list, verify_list)
|
|
|
|
url = os.path.join(
|
|
self.url,
|
|
'vnflcm/v1/vnf_lcm_op_occs',
|
|
uuidsentinel.vnf_lcm_op_occ_id,
|
|
'retry')
|
|
|
|
self.requests_mock.register_uri(
|
|
'POST', url, headers=self.header, status_code=409, json={})
|
|
|
|
self.assertRaises(exceptions.TackerClientException,
|
|
self.retry_vnf_lcm.take_action,
|
|
parsed_args)
|
|
|
|
def test_take_action_vnf_lcm_op_occ_internal_server_error(self):
|
|
"""Test if request is internal server error"""
|
|
|
|
arg_list = [uuidsentinel.vnf_lcm_op_occ_id]
|
|
verify_list = [('vnf_lcm_op_occ_id', uuidsentinel.vnf_lcm_op_occ_id)]
|
|
|
|
# command param
|
|
parsed_args = self.check_parser(
|
|
self.retry_vnf_lcm, arg_list, verify_list)
|
|
|
|
url = os.path.join(
|
|
self.url,
|
|
'vnflcm/v1/vnf_lcm_op_occs',
|
|
uuidsentinel.vnf_lcm_op_occ_id,
|
|
'retry')
|
|
|
|
self.requests_mock.register_uri(
|
|
'POST', url, headers=self.header, status_code=500, json={})
|
|
|
|
self.assertRaises(exceptions.TackerClientException,
|
|
self.retry_vnf_lcm.take_action,
|
|
parsed_args)
|
|
|
|
def test_take_action_vnf_lcm_op_occ_missing_vnf_lcm_op_occ_id_argument(
|
|
self):
|
|
"""Test if vnflcm_op_occ_id is not provided"""
|
|
|
|
arg_list = []
|
|
verify_list = [('vnf_lcm_op_occ_id', arg_list)]
|
|
self.assertRaises(base.ParserException, self.check_parser,
|
|
self.retry_vnf_lcm, arg_list, verify_list)
|