# Copyright 2017 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 mock import uuid from rest_framework import status from django.test import TestCase from django.test import Client from lcm.pub.database.models import NSDModel, NSInstModel from lcm.pub.utils.jobutil import JobUtil, JOB_MODEL_STATUS, JOB_TYPE from lcm.ns.const import NS_INST_STATUS from lcm.pub.utils import restcall from lcm.pub.utils import toscautil from lcm.ns.ns_manual_scale import NSManualScaleService from lcm.pub.exceptions import NSLCMException class TestNsManualScale(TestCase): def setUp(self): self.nsd_id = str(uuid.uuid4()) self.ns_package_id = str(uuid.uuid4()) self.ns_inst_id = str(uuid.uuid4()) self.job_id = JobUtil.create_job("NS", JOB_TYPE.MANUAL_SCALE_VNF, self.ns_inst_id) NSDModel(id=self.ns_package_id, nsd_id=self.nsd_id, name='name').save() self.client = Client() self.context = '{"vnfs": ["a", "b"], "sfcs": ["c"], "vls": ["d", "e", "f"]}' NSInstModel(id=self.ns_inst_id, name="abc",nspackage_id="7", nsd_id="111").save() def tearDown(self): NSInstModel.objects.filter().delete() """ @mock.patch.object(restcall, 'call_req') @mock.patch.object(toscautil, 'convert_nsd_model') def test_ns_instant_ok(self, mock_convert_nsd_model, mock_call_req): mock_convert_nsd_model.return_value = self.context mock_vals = { "/api/catalog/v1/csars/7/files?relativePath=abc.yaml": [0, '{"downloadUri":"http://test.yaml", "localPath":"./test.yaml"}', '200'], "/api/tosca/v1/indirect/plan": [0, '{"description":"", "metadata":{}, "nodes":[]}', '200'], "/api/catalog/v1/servicetemplates/2/operations": [0, '[{"name":"LCM", "processId":"{http://www.open-o.org/tosca/nfv/2015/12}init-16"}]', '200'], "/api/wso2bpel/v1/process/instance": [0, '{"status": 1}', '200']} def side_effect(*args): return mock_vals[args[4]] mock_call_req.side_effect = side_effect data = {'iaUrl': "", 'vnfmId': "", 'context': "{\"e\":{\"f\":\"4\"}}", 'statusUrl': "", 'serviceTemplateId': "", 'roUrl': "", 'containerapiUrl': "", 'flavor': "", 'nsInstanceId': "123", 'instanceId': "234", 'resourceUrl': "", 'callbackId': "", 'additionalParamForVnf': "[{\"b\":1},{\"c\":{\"d\":\"2\"}}]", 'additionalParamForNs': "[{\"a\":3},{\"e\":{\"f\":\"4\"}}]", 'flavorParams': ""} resp = self.client.post("/api/nslcm/v1/ns/123/instantiate", data, format='json') self.assertEqual(resp.status_code, status.HTTP_200_OK) """ @mock.patch.object(NSManualScaleService, 'run') def test_ns_manual_scale(self, mock_run): data = { 'nsdid': self.nsd_id, 'nsname': 'ns', 'description': 'description'} response = self.client.post("/api/nslcm/v1/ns/%s/scale"%self.nsd_id, data=data) self.failUnlessEqual(status.HTTP_202_ACCEPTED, response.status_code) @mock.patch.object(restcall, 'call_req') def test_ns_manual_scale_thread(self, mock_call): data = { 'nsdid': self.nsd_id, 'nsname': 'ns', 'description': 'description'} NSManualScaleService(self.ns_inst_id, data, self.job_id).run() self.assertTrue(NSInstModel.objects.get(id=self.ns_inst_id).status, NS_INST_STATUS.ACTIVE) def test_swagger_ok(self): resp = self.client.get("/api/nslcm/v1/swagger.json", format='json') self.assertEqual(resp.status_code, status.HTTP_200_OK) @mock.patch.object(NSManualScaleService, 'start') def test_ns_manual_scale_empty_data(self, mock_start): mock_start.side_effect = NSLCMException("NS scale failed.") data = {} response = self.client.post("/api/nslcm/v1/ns/%s/scale" % self.nsd_id, data=data) self.assertEqual(response.status_code, status.HTTP_500_INTERNAL_SERVER_ERROR) self.assertIn("error", response.data) @mock.patch.object(NSManualScaleService, 'start') def test_ns_manual_scale_non_existing_nsd_id(self, mock_start): mock_start.side_effect = NSLCMException("NS scale failed.") nsd_id = '1111' data = { 'nsdid': nsd_id, 'nsname': 'ns', 'description': 'description'} response = self.client.post("/api/nslcm/v1/ns/%s/scale" % nsd_id, data=data) self.assertEqual(response.status_code, status.HTTP_500_INTERNAL_SERVER_ERROR) self.assertIn("error", response.data)