55397bb1c69f1802546b6412c20bed9f5ebbf04a
[vfc/nfvo/lcm.git] / lcm / ns / tests / test_ns_create.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 import json
15 import uuid
16
17 import mock
18 from django.test import TestCase, Client
19 from rest_framework import status
20 from rest_framework.test import APIClient
21
22 from lcm.ns.ns_create import CreateNSService
23 from lcm.pub.database.models import NSInstModel
24 from lcm.pub.exceptions import NSLCMException
25 from lcm.pub.utils import restcall
26
27
28 class TestNsInstantiate(TestCase):
29     def setUp(self):
30         self.client = Client()
31         self.client1 = APIClient()
32         self.nsd_id = str(uuid.uuid4())
33         self.ns_package_id = str(uuid.uuid4())
34
35     def tearDown(self):
36         NSInstModel.objects.all().delete()
37
38     @mock.patch.object(restcall, 'call_req')
39     def test_create_ns(self, mock_call_req):
40         nspackage_info = {
41             "csarId": self.ns_package_id,
42             "packageInfo": {}
43         }
44         r1_query_nspackage_from_catalog = [0, json.JSONEncoder().encode(nspackage_info), '201']
45         r2_create_ns_to_aai = [0, json.JSONEncoder().encode({}), '201']
46         mock_call_req.side_effect = [r1_query_nspackage_from_catalog, r2_create_ns_to_aai]
47         data = {
48             "context": {
49                 "global-customer-id": "global-customer-id-test1",
50                 "service-type": "service-type-test1"
51             },
52             "csarId": self.nsd_id,
53             "nsName": "ns",
54             "description": "description"
55         }
56         response = self.client1.post("/api/nslcm/v1/ns", data=data, format='json')
57         self.failUnlessEqual(status.HTTP_201_CREATED, response.status_code)
58
59     @mock.patch.object(CreateNSService, "do_biz")
60     def test_create_ns_empty_data(self, mock_do_biz):
61         mock_do_biz.side_effect = Exception("Exception in CreateNS.")
62         data = {}
63         response = self.client.post("/api/nslcm/v1/ns", data=data)
64         self.assertEqual(response.data["error"], "Exception in CreateNS.")
65         self.assertEqual(response.status_code, status.HTTP_500_INTERNAL_SERVER_ERROR)
66         self.assertIn("error", response.data)
67
68     @mock.patch.object(CreateNSService, "do_biz")
69     def test_create_ns_non_existing_nsd(self, mock_do_biz):
70         mock_do_biz.side_effect = NSLCMException("nsd not exists.")
71         new_nsd_id = '1'
72         data = {
73             'nsdid': new_nsd_id,
74             'nsname': 'ns',
75             'description': 'description'
76         }
77         response = self.client.post("/api/nslcm/v1/ns", data=data)
78         self.assertEqual(response.data["error"], "nsd not exists.")
79         self.assertEqual(response.status_code, status.HTTP_500_INTERNAL_SERVER_ERROR)
80         self.assertIn("error", response.data)