aboutsummaryrefslogtreecommitdiffstats
path: root/lcm/ns/tests/test_sol_ns_heal_api.py
blob: adb8c1ec27d9e56f78212e269d18e7f85eebd413 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
# Copyright 2019 ZTE Corporation.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

import json
import uuid

import mock
from django.test import Client
from django.test import TestCase
from rest_framework import status

from lcm.ns.biz.ns_heal import NSHealService
from lcm.pub.database.models import NSInstModel, NfInstModel
from lcm.pub.exceptions import NSLCMException
from lcm.pub.utils.jobutil import JobUtil, JOB_TYPE


class TestHealNsApi(TestCase):
    def setUp(self):
        self.url = "/api/nslcm/v1/ns_instances/%s/heal"
        self.ns_inst_id = str(uuid.uuid4())
        self.nf_inst_id = '1'
        self.nf_uuid = '1-1-1'

        self.job_id = JobUtil.create_job("NS", JOB_TYPE.HEAL_VNF, self.ns_inst_id)

        self.client = Client()

        model = json.dumps({
            "metadata": {
                "vnfdId": "1",
                "vnfdName": "PGW001",
                "vnfProvider": "zte",
                "vnfdVersion": "V00001",
                "vnfVersion": "V5.10.20",
                "productType": "CN",
                "vnfType": "PGW",
                "description": "PGW VNFD description",
                "isShared": True,
                "vnfExtendType": "driver"
            }
        })
        NSInstModel.objects.filter().delete()
        NfInstModel.objects.filter().delete()
        NSInstModel(id=self.ns_inst_id, name="ns_name", status='null').save()
        NfInstModel.objects.create(nfinstid=self.nf_inst_id,
                                   nf_name='name_1',
                                   vnf_id='1',
                                   vnfm_inst_id='1',
                                   ns_inst_id=self.ns_inst_id,
                                   max_cpu='14',
                                   max_ram='12296',
                                   max_hd='101',
                                   max_shd="20",
                                   max_net=10,
                                   status='null',
                                   mnfinstid=self.nf_uuid,
                                   package_id='pkg1',
                                   vnfd_model=model)

    def tearDown(self):
        pass

    @mock.patch.object(NSHealService, 'run')
    def test_heal_vnf_url(self, mock_run):

        data = {
            "healVnfData": [{
                "vnfInstanceId": self.nf_inst_id,
                "cause": "vm is down",
                "additionalParams": {
                    "action": "restartvm",
                    "actionvminfo": {
                        "vmid": "33",
                        "vduid": "",
                        "vmname": "xgw-smp11"
                    }
                }
            }]
        }

        response = self.client.post(self.url % self.ns_inst_id, data=data)
        self.assertEqual(status.HTTP_202_ACCEPTED, response.status_code, response.data)
        self.assertIsNotNone(response.data)
        self.assertIsNotNone(response['Location'])
        response = self.client.get(response['Location'], format='json')
        self.assertEqual(response.status_code, status.HTTP_200_OK)

    # add healNsData

    @mock.patch.object(NSHealService, 'run')
    def test_heal_ns_url(self, mock_run):

        data = {
            "healNsData": {
                "vnfInstanceId": self.nf_inst_id,
                "cause": "",
                "additionalParams": {
                    "action": "vmreset",
                    "actionvminfo": {
                        "vmid": "33",
                        "vduid": "",
                        "vmname": "xgw-smp11"
                    }
                }
            }
        }

        response = self.client.post(self.url % self.ns_inst_id, data=data)
        self.assertEqual(status.HTTP_202_ACCEPTED, response.status_code, response.data)
        self.assertIsNotNone(response['Location'])
        response = self.client.get(response['Location'], format='json')
        self.assertEqual(response.status_code, status.HTTP_200_OK)

    @mock.patch.object(NSHealService, "start")
    def test_heal_vnf_non_existing_ns(self, mock_start):
        mock_start.side_effect = NSLCMException("NS Not Found")

        ns_inst_id = "2"

        data = {
            "healVnfData": [{
                "vnfInstanceId": self.nf_inst_id,
                "cause": "vm is down",
                "additionalParams": {
                    "action": "restartvm",
                    "actionvminfo": {
                        "vmid": "33",
                        "vmname": "xgw-smp11"
                    }
                }
            }]
        }

        response = self.client.post(self.url % ns_inst_id, data=data)
        self.assertEqual(response.status_code, status.HTTP_500_INTERNAL_SERVER_ERROR)

    # add healNsData
    @mock.patch.object(NSHealService, "start")
    def test_heal_ns_heal_non_existing_ns(self, mock_start):
        mock_start.side_effect = NSLCMException("NS Not Found")

        ns_inst_id = "2"

        data = {
            "healNsData": {
                "vnfInstanceId": self.nf_inst_id,
                "cause": "",
                "additionalParams": {
                    "action": "vmreset",
                    "actionvminfo": {
                        "vmid": "33",
                        "vduid": "",
                        "vmname": "xgw-smp11"
                    }
                }
            }
        }

        response = self.client.post(self.url % ns_inst_id, data=data)
        self.assertEqual(response.status_code, status.HTTP_500_INTERNAL_SERVER_ERROR)

    @mock.patch.object(NSHealService, "start")
    def test_heal_vnf_empty_post(self, mock_start):
        mock_start.side_effect = NSLCMException("healVnfData parameter does not exist or value is incorrect.")
        response = self.client.post(self.url % self.ns_inst_id, data={})
        self.assertEqual(response.status_code, status.HTTP_500_INTERNAL_SERVER_ERROR)