Fix OSDF input to HAS to use num_solution
[optf/osdf.git] / test / test_so_response_gen.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 from osdf.utils.interfaces import json_from_file
22 from osdf.optimizers.placementopt.conductor.conductor import conductor_response_processor
23 from osdf.utils.interfaces import RestClient
24
25
26 class TestSoResponseGen(unittest.TestCase):
27     def setUp(self):
28         main_dir = ""
29         conductor_response_file = main_dir + "test/placement-tests/conductor_response.json"
30         self.conductor_res = json_from_file(conductor_response_file)
31         self.rc = RestClient()
32
33     def test_so_response_gen(self):
34         res = conductor_response_processor(self.conductor_res, self.rc, "test")
35         self.assertEqual(len(res['solutions']['placementSolutions'][0]), 2)
36
37
38 if __name__ == "__main__":
39     unittest.main()