Merge "fix csit, cleanup dockerfile for osdf"
[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
20 from apps.placement.optimizers.conductor.conductor import conductor_response_processor
21 from osdf.utils.interfaces import json_from_file
22 from osdf.utils.interfaces import RestClient
23
24
25 class TestSoResponseGen(unittest.TestCase):
26     def setUp(self):
27         main_dir = ""
28         conductor_response_file = main_dir + "test/placement-tests/conductor_response.json"
29         self.conductor_res = json_from_file(conductor_response_file)
30         self.rc = RestClient()
31
32     def test_so_response_gen(self):
33         res = conductor_response_processor(self.conductor_res, self.rc, "test")
34         self.assertEqual(len(res['solutions']['placementSolutions'][0]), 2)
35
36
37 if __name__ == "__main__":
38     unittest.main()