27711f517a7c94e8decc8192905f52db9ee24b56
[optf/osdf.git] / test / conductor / test_conductor_translation.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 import translation as tr
25 from osdf.utils.interfaces import json_from_file, yaml_from_file
26
27
28 class TestConductorTranslation(unittest.TestCase):
29
30     def setUp(self):
31         self.main_dir = ""
32         self.conductor_api_template = self.main_dir + "osdf/templates/conductor_interface.json"
33         self.local_config_file = self.main_dir + "config/common_config.yaml"
34         policy_data_path = self.main_dir + "test/policy-local-files"
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         parameter_data_file = self.main_dir + "test/placement-tests/request.json"
40         self.request_json = json_from_file(parameter_data_file)
41         parameter_data_file = self.main_dir + "test/placement-tests/request_vfmod.json"
42         self.request_vfmod_json = json_from_file(parameter_data_file)
43         self.policies = [json_from_file(policy_data_path + '/' + name) for name in valid_policies_files]
44
45     def tearDown(self):
46         pass
47
48     def test_gen_demands(self):
49         # need to run this only on vnf policies
50         vnf_policies = [x for x in self.policies if x["content"]["policyType"] == "vnfPolicy"]
51         res = tr.gen_demands(self.request_json, vnf_policies)
52         assert res is not None
53
54     def test_gen_vfmod_demands(self):
55         # need to run this only on vnf policies
56         vnf_policies = [x for x in self.policies if x["content"]["policyType"] == "vnfPolicy"]
57         res = tr.gen_demands(self.request_vfmod_json, vnf_policies)
58         assert res is not None
59
60
61 if __name__ == "__main__":
62     unittest.main()
63