Changes for PWT testing with HAS and SO
[optf/osdf.git] / test / test_process_placement_opt.py
1 # -------------------------------------------------------------------------
2 #   Copyright (c) 2017-2018 AT&T Intellectual Property
3 #
4 #   Licensed under the Apache License, Version 2.0 (the "License");
5 #   you may not use this file except in compliance with the License.
6 #   You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 #   Unless required by applicable law or agreed to in writing, software
11 #   distributed under the License is distributed on an "AS IS" BASIS,
12 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 #   See the License for the specific language governing permissions and
14 #   limitations under the License.
15 #
16 # -------------------------------------------------------------------------
17 #
18 import mock
19 import unittest
20
21 from flask import Response
22 from mock import patch
23 from osdf.adapters.local_data import local_policies
24 from osdf.optimizers.placementopt.conductor.remote_opt_processor import process_placement_opt
25 from osdf.utils.interfaces import json_from_file, yaml_from_file
26
27
28 class TestProcessPlacementOpt(unittest.TestCase):
29
30     def setUp(self):
31         mock_req_accept_message = Response("Accepted Request", content_type='application/json; charset=utf-8')
32         self.patcher_req = patch('osdf.optimizers.placementopt.conductor.conductor.request',
33                                  return_value={"solutionInfo": {"placementInfo": "dummy"}})
34         self.patcher_req_accept = patch('osdf.operation.responses.osdf_response_for_request_accept',
35                                         return_value=mock_req_accept_message)
36         self.patcher_callback = patch(
37             'osdf.optimizers.placementopt.conductor.remote_opt_processor.process_placement_opt',
38             return_value=mock_req_accept_message)
39         self.patcher_RestClient = patch(
40             'osdf.utils.interfaces.RestClient', return_value=mock.MagicMock())
41         self.Mock_req = self.patcher_req.start()
42         self.Mock_req_accept = self.patcher_req_accept.start()
43         self.Mock_callback = self.patcher_callback.start()
44         self.Mock_RestClient = self.patcher_RestClient.start()
45
46     def tearDown(self):
47         patch.stopall()
48
49     def test_process_placement_opt(self):
50         main_dir = ""
51         conductor_api_template = main_dir + "osdf/templates/conductor_interface.json"
52         parameter_data_file = main_dir + "test/placement-tests/request.json"
53         policy_data_path = main_dir + "test/policy-local-files/"
54         local_config_file = main_dir + "config/common_config.yaml"
55
56         valid_policies_list_file = policy_data_path + '/' + 'meta-valid-policies.txt'
57         valid_policies_files = local_policies.get_policy_names_from_file(valid_policies_list_file)
58
59         request_json = json_from_file(parameter_data_file)
60         policies = [json_from_file(policy_data_path + '/' + name) for name in valid_policies_files]
61         local_config = yaml_from_file(local_config_file)
62         templ_string = process_placement_opt(request_json, policies, local_config)
63
64
65     def test_process_placement_opt_placementDemand(self):
66         main_dir = ""
67         parameter_data_file = main_dir + "test/placement-tests/request_placement.json"
68         policy_data_path = main_dir + "test/policy-local-files/"
69         local_config_file = main_dir + "config/common_config.yaml"
70
71         valid_policies_list_file = policy_data_path + '/' + 'meta-valid-policies.txt'
72         valid_policies_files = local_policies.get_policy_names_from_file(valid_policies_list_file)
73
74         request_json = json_from_file(parameter_data_file)
75         policies = [json_from_file(policy_data_path + '/' + name) for name in valid_policies_files]
76         local_config = yaml_from_file(local_config_file)
77         templ_string = process_placement_opt(request_json, policies, local_config)        
78
79
80 if __name__ == "__main__":
81     unittest.main()
82