Fix pep8 error for vfc-nfvo-lcm/test_ns
[vfc/nfvo/lcm.git] / lcm / ns / tests / test_ns_manual_scale.py
1 # Copyright 2017 ZTE Corporation.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #         http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15
16 import mock
17 import uuid
18 from rest_framework import status
19 from django.test import TestCase
20 from django.test import Client
21 from lcm.pub.database.models import NSDModel, NSInstModel
22 from lcm.pub.utils.jobutil import JobUtil, JOB_TYPE
23 from lcm.ns.const import NS_INST_STATUS
24 from lcm.pub.utils import restcall
25 from lcm.ns.ns_manual_scale import NSManualScaleService
26 from lcm.pub.exceptions import NSLCMException
27
28
29 class TestNsManualScale(TestCase):
30     def setUp(self):
31         self.nsd_id = str(uuid.uuid4())
32         self.ns_package_id = str(uuid.uuid4())
33         self.ns_inst_id = str(uuid.uuid4())
34         self.job_id = JobUtil.create_job("NS", JOB_TYPE.MANUAL_SCALE_VNF, self.ns_inst_id)
35         NSDModel(id=self.ns_package_id, nsd_id=self.nsd_id, name='name').save()
36
37         self.client = Client()
38         self.context = '{"vnfs": ["a", "b"], "sfcs": ["c"], "vls": ["d", "e", "f"]}'
39         NSInstModel(id=self.ns_inst_id, name="abc",nspackage_id="7", nsd_id="111").save()
40
41     def tearDown(self):
42         NSInstModel.objects.filter().delete()
43
44     """
45     @mock.patch.object(restcall, 'call_req')
46     @mock.patch.object(toscautil, 'convert_nsd_model')
47     def test_ns_instant_ok(self, mock_convert_nsd_model, mock_call_req):
48         mock_convert_nsd_model.return_value = self.context
49         mock_vals = {
50             "/api/catalog/v1/csars/7/files?relativePath=abc.yaml":
51                 [0, '{"downloadUri":"http://test.yaml", "localPath":"./test.yaml"}', '200'],
52             "/api/tosca/v1/indirect/plan":
53                 [0, '{"description":"", "metadata":{}, "nodes":[]}', '200'],
54             "/api/catalog/v1/servicetemplates/2/operations":
55                 [0, '[{"name":"LCM", "processId":"{http://www.open-o.org/tosca/nfv/2015/12}init-16"}]', '200'],
56             "/api/wso2bpel/v1/process/instance":
57                 [0, '{"status": 1}', '200']}
58
59         def side_effect(*args):
60             return mock_vals[args[4]]
61
62         mock_call_req.side_effect = side_effect
63
64         data = {'iaUrl': "", 'vnfmId': "", 'context': "{\"e\":{\"f\":\"4\"}}", 'statusUrl': "",
65                 'serviceTemplateId': "", 'roUrl': "", 'containerapiUrl': "", 'flavor': "",
66                 'nsInstanceId': "123", 'instanceId': "234", 'resourceUrl': "", 'callbackId': "",
67                 'additionalParamForVnf': "[{\"b\":1},{\"c\":{\"d\":\"2\"}}]",
68                 'additionalParamForNs': "[{\"a\":3},{\"e\":{\"f\":\"4\"}}]", 'flavorParams': ""}
69         resp = self.client.post("/api/nslcm/v1/ns/123/instantiate", data, format='json')
70         self.assertEqual(resp.status_code, status.HTTP_200_OK)
71     """
72     @mock.patch.object(NSManualScaleService, 'run')
73     def test_ns_manual_scale(self, mock_run):
74         data = {
75             'nsdid': self.nsd_id,
76             'nsname': 'ns',
77             'description': 'description'}
78         response = self.client.post("/api/nslcm/v1/ns/%s/scale" % self.nsd_id, data=data)
79         self.failUnlessEqual(status.HTTP_202_ACCEPTED, response.status_code)
80
81     @mock.patch.object(restcall, 'call_req')
82     def test_ns_manual_scale_thread(self, mock_call):
83
84         data = {
85             'nsdid': self.nsd_id,
86             'nsname': 'ns',
87             'description': 'description'}
88         NSManualScaleService(self.ns_inst_id, data, self.job_id).run()
89         self.assertTrue(NSInstModel.objects.get(id=self.ns_inst_id).status, NS_INST_STATUS.ACTIVE)
90
91     def test_swagger_ok(self):
92         resp = self.client.get("/api/nslcm/v1/swagger.json", format='json')
93         self.assertEqual(resp.status_code, status.HTTP_200_OK)
94
95     @mock.patch.object(NSManualScaleService, 'start')
96     def test_ns_manual_scale_empty_data(self, mock_start):
97         mock_start.side_effect = NSLCMException("NS scale failed.")
98
99         data = {}
100
101         response = self.client.post("/api/nslcm/v1/ns/%s/scale" % self.nsd_id, data=data)
102         self.assertEqual(response.status_code, status.HTTP_500_INTERNAL_SERVER_ERROR)
103         self.assertIn("error", response.data)
104
105     @mock.patch.object(NSManualScaleService, 'start')
106     def test_ns_manual_scale_non_existing_nsd_id(self, mock_start):
107         mock_start.side_effect = NSLCMException("NS scale failed.")
108
109         nsd_id = '1111'
110
111         data = {
112             'nsdid': nsd_id,
113             'nsname': 'ns',
114             'description': 'description'}
115
116         response = self.client.post("/api/nslcm/v1/ns/%s/scale" % nsd_id, data=data)
117         self.assertEqual(response.status_code, status.HTTP_500_INTERNAL_SERVER_ERROR)
118         self.assertIn("error", response.data)