Add unit test for ns instantiate
[vfc/nfvo/lcm.git] / lcm / ns / tests / test_ns_instant.py
1 # Copyright 2016 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 from rest_framework import status
16 from django.test import TestCase
17 from django.test import Client
18 import mock
19
20 from lcm.pub.database.models import NSInstModel
21 from lcm.ns.ns_instant import InstantNSService
22
23
24 class TestNsInstant(TestCase):
25     def setUp(self):
26         self.client = Client()
27         NSInstModel.objects.filter().delete()
28         self.ns_inst_id = "2"
29         NSInstModel(id="2", nspackage_id="7", nsd_id="2").save()
30
31     def tearDown(self):
32         pass
33
34     @mock.patch.object(InstantNSService, 'do_biz')
35     def testNsInstantNormal(self, mock_do_biz):
36         mock_do_biz.return_value = dict(data={'jobId': "1"}, status=status.HTTP_200_OK)
37         data = {
38             "additionalParamForNs": {
39                 "location": "1",
40                 "sdnControllerId": "2"
41             }
42         }
43         resp = self.client.post("/api/nslcm/v1/ns/%s/instantiate" % self.ns_inst_id, data=data)
44         self.failUnlessEqual(status.HTTP_200_OK, resp.status_code)
45         self.assertEqual({'jobId': "1"}, resp.data)