diff options
author | ying.yunlong <ying.yunlong@zte.com.cn> | 2017-08-18 09:03:39 +0800 |
---|---|---|
committer | yunlong ying <ying.yunlong@zte.com.cn> | 2017-08-22 08:14:10 +0000 |
commit | c2d8ae2afb05531b64a0029bdc4b17895398afdf (patch) | |
tree | 638c23b52ff77c555fc144029a0dd3b0bc10bf57 /lcm | |
parent | ebfb00fb5e70cdc919b910d91650446542088cea (diff) |
Add asynchronous Unit test cases
Add asynchronous Unit test cases
to verify that the Redis service
for the Redis service node is normal.
As the redis server is still unavalable,
remove the asynchronous unit use
case temporarily .
Change-Id: Id9336b50ecff619873d07052269b88d514b9f8c5
Issue-ID: VFC-98
Signed-off-by: ying.yunlong <ying.yunlong@zte.com.cn>
Diffstat (limited to 'lcm')
-rw-r--r-- | lcm/lcm/nf/vnfs/tests/test_vnf_cancel.py | 4 | ||||
-rw-r--r-- | lcm/lcm/nf/vnfs/tests/test_vnf_create.py | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/lcm/lcm/nf/vnfs/tests/test_vnf_cancel.py b/lcm/lcm/nf/vnfs/tests/test_vnf_cancel.py index 9bedab78..e4cf7d90 100644 --- a/lcm/lcm/nf/vnfs/tests/test_vnf_cancel.py +++ b/lcm/lcm/nf/vnfs/tests/test_vnf_cancel.py @@ -97,7 +97,7 @@ class TestNFTerminate(TestCase): TermVnf(data, nf_inst_id=self.nf_inst_id, job_id=self.job_id).run() self.assert_job_result(self.job_id, 255, "VnfInst(%s) does not exist" % self.nf_inst_id) """ -''' +""" @mock.patch.object(restcall, 'call_req') @mock.patch.object(api, 'call') def test_terminate_vnf_success(self, mock_call, mock_call_req): @@ -117,4 +117,4 @@ class TestNFTerminate(TestCase): JobUtil.add_job_status(self.job_id, 0, "INST_VNF_READY") TermVnf(data, nf_inst_id=self.nf_inst_id, job_id=self.job_id).run() self.assert_job_result(self.job_id, 100, "Terminate Vnf success.") -''' +""" diff --git a/lcm/lcm/nf/vnfs/tests/test_vnf_create.py b/lcm/lcm/nf/vnfs/tests/test_vnf_create.py index 9942183d..9edd6076 100644 --- a/lcm/lcm/nf/vnfs/tests/test_vnf_create.py +++ b/lcm/lcm/nf/vnfs/tests/test_vnf_create.py @@ -179,4 +179,5 @@ class TestNFInstantiate(TestCase): data = inst_req_data InstVnf(data, nf_inst_id=self.nf_inst_id, job_id=self.job_id).run() self.assert_job_result(self.job_id, 100, "Instantiate Vnf success.") -""" + +"""
\ No newline at end of file |