Merge "Add deploy 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
24 class WorkflowViewTest(unittest.TestCase):
25     def setUp(self):
26         self.client = Client()
27
28     def tearDown(self):
29         pass
30
31     @mock.patch.object(restcall, 'upload_by_msb')
32     def test_deploy_workflow(self, mock_upload_by_msb):
33         mock_upload_by_msb.return_value = [0, json.JSONEncoder().encode({
34             "status": "1",
35             "message": "2",
36             "deployedId": "3",
37             "processId": "4"
38             }), '202']
39         response = self.client.post("/api/nslcm/v1/workflow", 
40             {"filePath": os.path.abspath(__file__)}, format='json')
41         self.assertEqual(status.HTTP_202_ACCEPTED, response.status_code, response.content)