Add seed codes of nfvo
[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_MODEL_STATUS, JOB_TYPE
23 from lcm.ns.const import NS_INST_STATUS
24 from lcm.pub.utils import restcall
25 from lcm.pub.utils import toscautil
26 from lcm.ns.ns_manual_scale import NSManualScaleService
27
28 class TestNsManualScale(TestCase):
29     def setUp(self):
30         self.nsd_id = str(uuid.uuid4())
31         self.ns_package_id = str(uuid.uuid4())
32         self.ns_inst_id = str(uuid.uuid4())
33         self.job_id = JobUtil.create_job("NS", JOB_TYPE.MANUAL_SCALE_VNF, self.ns_inst_id)
34         NSDModel(id=self.ns_package_id, nsd_id=self.nsd_id, name='name').save()
35
36         self.client = Client()
37         self.context = '{"vnfs": ["a", "b"], "sfcs": ["c"], "vls": ["d", "e", "f"]}'
38         NSInstModel(id=self.ns_inst_id, name="abc",nspackage_id="7", nsd_id="111").save()
39
40     def tearDown(self):
41         NSInstModel.objects.filter().delete()
42
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             "/openoapi/catalog/v1/csars/7/files?relativePath=abc.yaml":
51                 [0, '{"downloadUri":"http://test.yaml", "localPath":"./test.yaml"}', '200'],
52             "/openoapi/tosca/v1/indirect/plan":
53                 [0, '{"description":"", "metadata":{}, "nodes":[]}', '200'],
54             "/openoapi/catalog/v1/servicetemplates/2/operations":
55                 [0, '[{"name":"LCM", "processId":"{http://www.open-o.org/tosca/nfv/2015/12}init-16"}]', '200'],
56             "/openoapi/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("/openoapi/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("/openoapi/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("/openoapi/nslcm/v1/swagger.json", format='json')
93         self.assertEqual(resp.status_code, status.HTTP_200_OK)