ce1cd6f06e2ce452c64ee895641b463f19d935d6
[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 import mock
16 from django.test import TestCase
17 from rest_framework.test import APIClient
18 from rest_framework.test import RequestsClient
19 from rest_framework import status
20
21 from lcm.pub.utils import restcall
22 from lcm.pub.database.models import NfInstModel
23 from lcm.pub.utils.jobutil import JobUtil
24 from lcm.nf.biz.update_vnf import UpdateVnf
25
26
27 class TestNFUpdate(TestCase):
28     def setUp(self):
29         self.client = APIClient()
30         self.upd_data = {
31             "vnfInstanceName": "vnf new name",
32             "vnfInstanceDescription": "new description"
33         }
34
35     def tearDown(self):
36         pass
37
38     def test_update_vnf_not_exist(self):
39         response = self.client.patch("/api/vnflcm/v1/vnf_instances/1111",
40                                      data=self.upd_data,
41                                      format='json')
42         self.failUnlessEqual(status.HTTP_404_NOT_FOUND, response.status_code)
43
44     def test_update_vnf_etag_not_match(self):
45         instanceid = "19"
46         NfInstModel(nfinstid=instanceid,
47                     nf_name='VNF1',
48                     nf_desc="VNF DESC",
49                     vnfdid="1",
50                     netype="XGW",
51                     vendor="ZTE",
52                     vnfSoftwareVersion="V1",
53                     version="V1",
54                     package_id="2",
55                     status='INSTANTIATED').save()
56         rc = RequestsClient()
57         response = rc.patch("http://localhost:8801/api/vnflcm/v1/vnf_instances/19",
58                             json=self.upd_data,
59                             headers={
60                                 "Accept": "application/json",
61                                 "Content-Type": "application/json",
62                                 "If-Match": "test_etag"
63                             })
64         NfInstModel.objects.filter(nfinstid=instanceid).delete()
65         self.failUnlessEqual(status.HTTP_412_PRECONDITION_FAILED, response.status_code)
66
67     @mock.patch.object(restcall, 'call_req')
68     def test_update_vnf_success(self, mock_call_req):
69         instanceid = "12"
70         NfInstModel(nfinstid=instanceid,
71                     nf_name='VNF1',
72                     nf_desc="VNF DESC",
73                     vnfdid="1",
74                     netype="XGW",
75                     vendor="ZTE",
76                     vnfSoftwareVersion="V1",
77                     version="V1",
78                     package_id="2",
79                     status='INSTANTIATED').save()
80         mock_call_req.return_value = [0, {}, status.HTTP_202_ACCEPTED]
81         job_id = JobUtil.create_job('NF', 'UPDATETEST', instanceid)
82         UpdateVnf(self.upd_data, instanceid, job_id).run()
83         name = NfInstModel.objects.filter(nfinstid=instanceid).get().nf_name
84         NfInstModel.objects.filter(nfinstid=instanceid).delete()
85         self.failUnlessEqual("vnf new name", name)