From 3a7fa64c8995642dbd2a5696eb8511adc65f2f5d Mon Sep 17 00:00:00 2001 From: "Chayal, Avteet (ac229e) ac229e@att.com" Date: Wed, 4 Apr 2018 22:24:18 -0400 Subject: Fix for placement call check and sync response Fixed the condition to make placement call & sync response to client Issue-ID: OPTFRA-215 and OPTFRA-216 Change-Id: I0f996160e8cd339c663611ba53bd590271ea3b3a Signed-off-by: Chayal, Avteet (ac229e) ac229e@att.com --- test/test_process_placement_opt.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'test/test_process_placement_opt.py') diff --git a/test/test_process_placement_opt.py b/test/test_process_placement_opt.py index e5dc65e..3219675 100644 --- a/test/test_process_placement_opt.py +++ b/test/test_process_placement_opt.py @@ -62,6 +62,21 @@ class TestProcessPlacementOpt(unittest.TestCase): templ_string = process_placement_opt(request_json, policies, local_config) + def test_process_placement_opt_placementDemand(self): + main_dir = "" + parameter_data_file = main_dir + "test/placement-tests/request_placement.json" + policy_data_path = main_dir + "test/policy-local-files/" + local_config_file = main_dir + "config/common_config.yaml" + + valid_policies_list_file = policy_data_path + '/' + 'meta-valid-policies.txt' + valid_policies_files = local_policies.get_policy_names_from_file(valid_policies_list_file) + + request_json = json_from_file(parameter_data_file) + policies = [json_from_file(policy_data_path + '/' + name) for name in valid_policies_files] + local_config = yaml_from_file(local_config_file) + templ_string = process_placement_opt(request_json, policies, local_config) + + if __name__ == "__main__": unittest.main() -- cgit 1.2.3-korg