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 from lcm.pub.utils import restcall
23
24
25 class TestNsInstant(TestCase):
26     def setUp(self):
27         self.client = Client()
28         NSInstModel.objects.filter().delete()
29         self.url = "/api/nslcm/v1/ns/2/instantiate"
30         self.req_data = {
31             "additionalParamForNs": {
32                 "location": "1",
33                 "sdnControllerId": "2"
34             }
35         }
36         NSInstModel(id="2", nspackage_id="7", nsd_id="2").save()
37
38     def tearDown(self):
39         pass
40
41     @mock.patch.object(InstantNSService, 'do_biz')
42     def test_ns_instantiate_normal(self, mock_do_biz):
43         mock_do_biz.return_value = dict(data={'jobId': "1"}, status=status.HTTP_200_OK)
44         resp = self.client.post(self.url, data=self.req_data)
45         self.failUnlessEqual(status.HTTP_200_OK, resp.status_code)
46         self.assertEqual({'jobId': "1"}, resp.data)
47
48     @mock.patch.object(restcall, 'call_req')
49     def test_ns_instantiate_when_fail_to_parse_nsd(self, mock_call_req):
50         mock_call_req.return_value = [1, "Failed to parse nsd", '500']
51         resp = self.client.post(self.url, data=self.req_data)
52         self.assertEqual(resp.status_code, status.HTTP_500_INTERNAL_SERVER_ERROR)
53         self.assertIn("error", resp.data)