0f2305657e1c8ae8ac2f68425aa2cd03b6a56b42
[vfc/nfvo/lcm.git] / lcm / ns / tests / test_ns_create.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 import uuid
15
16 from django.test import TestCase, Client
17 from rest_framework import status
18
19 from lcm.pub.database.models import NSInstModel, NSDModel
20
21
22 class TestNsInstantiate(TestCase):
23     def setUp(self):
24         self.client = Client()
25         self.nsd_id = str(uuid.uuid4())
26         self.ns_package_id = str(uuid.uuid4())
27         NSDModel(id=self.ns_package_id, nsd_id=self.nsd_id, name='name').save()
28
29     def tearDown(self):
30         NSDModel.objects.all().delete()
31         NSInstModel.objects.all().delete()
32
33     def test_create_ns(self):
34         data = {
35             'nsdid': self.nsd_id,
36             'nsname': 'ns',
37             'description': 'description'}
38         response = self.client.post("/api/nslcm/v1/ns", data=data)
39         self.failUnlessEqual(status.HTTP_201_CREATED, response.status_code)