aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFu Jinhua <fu.jinhua@zte.com.cn>2019-03-27 05:41:27 +0000
committerGerrit Code Review <gerrit@onap.org>2019-03-27 05:41:27 +0000
commit71c07e64ab4743517937c32b1547a7a1ac5333cf (patch)
treeca079e4b0bc129d8967d75ebbccc136f57a5af8d
parent0991683540a3b73904cbd47b31863a241ee61121 (diff)
parent8ed3d6f39089b1f5050235e2e12646d0f8131fd8 (diff)
Merge "add NS terminate usecase"
-rw-r--r--lcm/ns/tests/test_sol_ns_terminate.py63
1 files changed, 63 insertions, 0 deletions
diff --git a/lcm/ns/tests/test_sol_ns_terminate.py b/lcm/ns/tests/test_sol_ns_terminate.py
new file mode 100644
index 00000000..7d6c52bb
--- /dev/null
+++ b/lcm/ns/tests/test_sol_ns_terminate.py
@@ -0,0 +1,63 @@
+# Copyright 2019 ZTE Corporation.
+#
+# 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 uuid
+
+import mock
+from django.test import TestCase, Client
+from rest_framework import status
+
+from lcm.ns.biz.ns_terminate import TerminateNsService
+from lcm.pub.database.models import NfInstModel, NSInstModel
+
+
+class TestTerminateNsViews(TestCase):
+ def setUp(self):
+ self.client = Client()
+ self.url = "/api/nslcm/v1/ns_instances/%s/terminate"
+ self.ns_inst_id = '1'
+ self.nf_inst_id = '1'
+ self.vnffg_id = str(uuid.uuid4())
+ self.vim_id = str(uuid.uuid4())
+ self.job_id = str(uuid.uuid4())
+ self.nf_uuid = '1-1-1'
+ self.tenant = "tenantname"
+ model = {"metadata": {
+ "vnfdId": "1",
+ "vnfdName": "PGW001",
+ "vnfProvider": "zte",
+ "vnfdVersion": "V00001",
+ "vnfVersion": "V5.10.20",
+ "productType": "CN",
+ "vnfType": "PGW",
+ "description": "PGW VNFD description",
+ "isShared": True,
+ "vnfExtendType": "driver"
+ }}
+ NSInstModel(id=self.ns_inst_id, name="ns_name", status='null').save()
+ NfInstModel.objects.create(nfinstid=self.nf_inst_id, nf_name='name_1', vnf_id='1',
+ vnfm_inst_id='1', ns_inst_id='1-1-1,2-2-2',
+ max_cpu='14', max_ram='12296', max_hd='101', max_shd="20", max_net=10,
+ status='null', mnfinstid=self.nf_uuid, package_id='pkg1',
+ vnfd_model=str(model))
+
+ def tearDown(self):
+ NSInstModel.objects.all().delete()
+ NfInstModel.objects.all().delete()
+
+ @mock.patch.object(TerminateNsService, 'run')
+ def test_terminate_vnf_url(self, mock_run):
+ mock_run.re.return_value = "1"
+ req_data = {}
+ response = self.client.post(self.url % self.ns_inst_id, data=req_data)
+ self.failUnlessEqual(status.HTTP_202_ACCEPTED, response.status_code)