Fixed tosca models and updated policies
[optf/osdf.git] / test / test_ConductorApiBuilder.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 unittest
19 import json
20 import yaml
21
22 from osdf.adapters.local_data import local_policies
23 from osdf.optimizers.placementopt.conductor.api_builder import conductor_api_builder
24 from osdf.utils.interfaces import json_from_file
25
26
27 class TestConductorApiBuilder(unittest.TestCase):
28
29     def setUp(self):
30         self.main_dir = ""
31         conductor_api_template = self.main_dir + "osdf/templates/conductor_interface.json"
32         parameter_data_file = self.main_dir + "test/placement-tests/request.json"    # "test/placement-tests/request.json"
33         policy_data_path = self.main_dir + "test/policy-local-files"                 # "test/policy-local-files"
34         local_config_file = self.main_dir + "config/common_config.yaml"
35
36         valid_policies_list_file = policy_data_path + '/' + 'meta-valid-policies.txt'
37         valid_policies_files = local_policies.get_policy_names_from_file(valid_policies_list_file)
38
39         self.request_json = json_from_file(parameter_data_file)
40         self.policies = [json_from_file(policy_data_path + '/' + name) for name in valid_policies_files]
41
42     def test_conductor_api_call_builder(self):
43         main_dir = self.main_dir
44         conductor_api_template = main_dir + "osdf/templates/conductor_interface.json" # "osdf/templates/conductor_interface.json"
45         local_config_file = main_dir + "config/common_config.yaml"
46         request_json = self.request_json
47         policies = self.policies
48         local_config = yaml.load(open(local_config_file))
49         templ_string = conductor_api_builder(request_json, policies, local_config, conductor_api_template)
50         templ_json = json.loads(templ_string)
51         self.assertEqual(templ_json["name"], "yyy-yyy-yyyy")
52
53
54 if __name__ == "__main__":
55     unittest.main()
56