diff options
author | Chayal, Avteet (ac229e) ac229e@att.com <ac229e@att.com> | 2018-04-04 22:24:18 -0400 |
---|---|---|
committer | Chayal, Avteet (ac229e) ac229e@att.com <ac229e@att.com> | 2018-04-05 22:04:44 -0400 |
commit | 3a7fa64c8995642dbd2a5696eb8511adc65f2f5d (patch) | |
tree | 469a73bdce6a421e69e5ba2e75972decfac170f1 /test/test_process_placement_opt.py | |
parent | 43eb254bf347be1a2fd5bed08b87ec87c8bd0376 (diff) |
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 <ac229e@att.com>
Diffstat (limited to 'test/test_process_placement_opt.py')
-rw-r--r-- | test/test_process_placement_opt.py | 15 |
1 files changed, 15 insertions, 0 deletions
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() |