summaryrefslogtreecommitdiffstats
path: root/vnftest/tests/unit/onap
diff options
context:
space:
mode:
authorMoshe <moshehoa@amdocs.com>2018-08-15 12:19:07 +0300
committerMoshe <moshehoa@amdocs.com>2018-08-15 17:00:11 +0300
commit5e5e493a5ec5048c0a340e2acd72f52869779fdf (patch)
treeb4f787f6df2a4414660d7f235dfc128cc86fdc2e /vnftest/tests/unit/onap
parent1a54248ad5b5f836ae915413ffefaa487d1f73f5 (diff)
versionize tests due to API changes in ONAP
Issue-ID: VNFSDK-301 Change-Id: I1fdf1b42fc2cd44021c2f33695c86bbbdc8bb62b Signed-off-by: Moshe <moshehoa@amdocs.com> fix tests Issue-ID: VNFSDK-301 Change-Id: I87abc962b13956af07ad8bf7355ea681343664dc Signed-off-by: Moshe <moshehoa@amdocs.com>
Diffstat (limited to 'vnftest/tests/unit/onap')
-rw-r--r--vnftest/tests/unit/onap/test_rest_call.py (renamed from vnftest/tests/unit/onap/test_onap_api_call.py)12
1 files changed, 5 insertions, 7 deletions
diff --git a/vnftest/tests/unit/onap/test_onap_api_call.py b/vnftest/tests/unit/onap/test_rest_call.py
index 2b6d79d..ec3c88f 100644
--- a/vnftest/tests/unit/onap/test_onap_api_call.py
+++ b/vnftest/tests/unit/onap/test_rest_call.py
@@ -14,16 +14,14 @@
import mock
import testtools
-
from vnftest.contexts.base import Context
from vnftest.core import task
-from vnftest.onap.onap_api_call import OnapApiCall
-class OnapApiCallTestCase(testtools.TestCase):
+class RestCallTestCase(testtools.TestCase):
step = {
- 'type': 'OnapApiCall',
+ 'type': 'RestCall',
'options': {
'file': "dummy.yaml",
'input':
@@ -46,9 +44,9 @@ class OnapApiCallTestCase(testtools.TestCase):
NAME = 'sample'
def setUp(self):
- super(OnapApiCallTestCase, self).setUp()
+ super(RestCallTestCase, self).setUp()
- @mock.patch('vnftest.onap.onap_api_call.OnapApiCall.execute_operation_impl')
+ @mock.patch('vnftest.steps.rest_call.RestCall.execute_operation_impl')
def test_run(self, mock_execute_operation):
mock_execute_operation.return_value = {'body': {'value': 'output1'}}
t = task.Task()
@@ -56,5 +54,5 @@ class OnapApiCallTestCase(testtools.TestCase):
context = Context.get("CSAR")
context.init(context_cfg)
t.context = context
- output = t._run([OnapApiCallTestCase.step], False, "vnftest.out")
+ output = t._run([RestCallTestCase.step], False, "vnftest.out")
self.assertEquals(output[0]['data']['output1'], 'output1')