865dfafdfdd6251a6dbb438687ab14217f017a5a
[vfc/gvnfm/vnflcm.git] / lcm / lcm / nf / tests / test_update_vnf.py
1 # Copyright 2019 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 django.test import TestCase
16 from rest_framework.test import APIClient
17 from rest_framework import status
18
19
20 class TestNFUpdate(TestCase):
21     def setUp(self):
22         self.client = APIClient()
23         self.upd_data = {
24             "vnfInstanceName": "vnf new name",
25             "vnfInstanceDescription": "new description"
26         }
27
28     def tearDown(self):
29         pass
30
31     def test_update_vnf_not_exist(self):
32         response = self.client.patch("/api/vnflcm/v1/vnf_instances/1111",
33                                      data=self.upd_data,
34                                      format='json')
35         self.failUnlessEqual(status.HTTP_404_NOT_FOUND, response.status_code)