diff options
author | Shankaranarayanan Puzhavakath Narayanan <snarayanan@research.att.com> | 2019-04-20 17:03:04 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-04-20 17:03:04 +0000 |
commit | 9eadcba0fa858a031f6269fc127c9dc738bb7d8b (patch) | |
tree | 88b0226afa174c77c59cbfda35ca092774518f6e /test/test_process_placement_opt.py | |
parent | e1f6d80752920a7ef990134f02abb3db9b5a6232 (diff) | |
parent | fc3ead31e631f69fabf0baaa20c10bf955ce374b (diff) |
Merge "Traffic Distributtion support added"
Diffstat (limited to 'test/test_process_placement_opt.py')
-rw-r--r-- | test/test_process_placement_opt.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/test_process_placement_opt.py b/test/test_process_placement_opt.py index 3219675..62a1ce6 100644 --- a/test/test_process_placement_opt.py +++ b/test/test_process_placement_opt.py @@ -76,6 +76,20 @@ class TestProcessPlacementOpt(unittest.TestCase): local_config = yaml_from_file(local_config_file) templ_string = process_placement_opt(request_json, policies, local_config) + def test_process_placement_opt_placementDemand_vfmodule(self): + main_dir = "" + parameter_data_file = main_dir + "test/placement-tests/request_vfmod.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() |