update link to upper-constraints.txt
[optf/osdf.git] / test / test_so_response_gen.py
1 # -------------------------------------------------------------------------
2 #   Copyright (c) 2017-2018 AT&T Intellectual Property
3 #   Copyright (C) 2020 Wipro Limited.
4 #
5 #   Licensed under the Apache License, Version 2.0 (the "License");
6 #   you may not use this file except in compliance with the License.
7 #   You may obtain a copy of the License at
8 #
9 #       http://www.apache.org/licenses/LICENSE-2.0
10 #
11 #   Unless required by applicable law or agreed to in writing, software
12 #   distributed under the License is distributed on an "AS IS" BASIS,
13 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 #   See the License for the specific language governing permissions and
15 #   limitations under the License.
16 #
17 # -------------------------------------------------------------------------
18 #
19 import unittest
20
21 from apps.placement.optimizers.conductor.remote_opt_processor import conductor_response_processor
22 from osdf.utils.interfaces import json_from_file
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()