update link to upper-constraints.txt
[optf/osdf.git] / test / test_getPolicy.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 json
19 import unittest
20
21 from osdf.adapters.policy.interface import get_policies
22 from osdf.utils.interfaces import json_from_file
23 from mock import patch
24
25
26 class TestGetPolicy(unittest.TestCase):
27
28     def setUp(self):
29         main_dir = ""
30         parameter_data_file = main_dir + "test/placement-tests/request.json"   # "test/placement-tests/request.json"
31         self.request_json = json_from_file(parameter_data_file)
32
33     def test_get_policy_function(self):
34         with patch('osdf.adapters.policy.interface.remote_api', return_value=[{"x: y"}]):
35             policy_list = get_policies(self.request_json, "placement")
36             policy_exist = True if len(policy_list) > 0 else False
37             self.assertEqual(policy_exist, True)