Add undeploy workflow logic
[vfc/nfvo/lcm.git] / lcm / workflows / tests.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
15 import unittest
16 import json
17 import mock
18 import os
19 from django.test import Client
20 from rest_framework import status
21
22 from lcm.pub.utils import restcall
23 from lcm.pub.database.models import WFPlanModel
24
25 class WorkflowViewTest(unittest.TestCase):
26     def setUp(self):
27         self.client = Client()
28         WFPlanModel.objects.filter().delete()
29
30     def tearDown(self):
31         pass
32
33     @mock.patch.object(restcall, 'upload_by_msb')
34     def test_deploy_workflow(self, mock_upload_by_msb):
35         mock_upload_by_msb.return_value = [0, json.JSONEncoder().encode({
36             "status": "1",
37             "message": "2",
38             "deployedId": "3",
39             "processId": "4"
40             }), '202']
41         response = self.client.post("/api/nslcm/v1/workflow", 
42             {"filePath": os.path.abspath(__file__)}, format='json')
43         self.assertEqual(status.HTTP_202_ACCEPTED, response.status_code, response.content)
44         self.assertEqual(1, len(WFPlanModel.objects.filter(deployed_id="3")))
45
46     @mock.patch.object(restcall, 'upload_by_msb')
47     @mock.patch.object(restcall, 'call_req')
48     def test_force_deploy_workflow(self, mock_call_req, mock_upload_by_msb):
49         mock_call_req.return_value = [0, json.JSONEncoder().encode({
50             "status": "1",
51             "message": "2"
52             }), '202']
53         mock_upload_by_msb.return_value = [0, json.JSONEncoder().encode({
54             "status": "2",
55             "message": "3",
56             "deployedId": "4",
57             "processId": "5"
58             }), '202']
59         WFPlanModel(deployed_id="1", process_id="2", status="3", message="4").save()
60         response = self.client.post("/api/nslcm/v1/workflow", 
61             {"filePath": os.path.abspath(__file__), "forceDeploy": "True"}, format='json')
62         self.assertEqual(status.HTTP_202_ACCEPTED, response.status_code, response.content)
63         self.assertEqual(0, len(WFPlanModel.objects.filter(deployed_id="1")))
64         self.assertEqual(1, len(WFPlanModel.objects.filter(deployed_id="4")))
65
66     def test_deploy_workflow_when_already_deployed(self):
67         WFPlanModel(deployed_id="1", process_id="2", status="3", message="4").save()
68         response = self.client.post("/api/nslcm/v1/workflow", 
69             {"filePath": os.path.abspath(__file__)}, format='json')
70         self.assertEqual(status.HTTP_202_ACCEPTED, response.status_code, response.content)
71         self.assertEqual({'msg': 'Already deployed.'}, json.loads(response.content))
72
73