aboutsummaryrefslogtreecommitdiffstats
path: root/test/conductor/test_conductor_calls.py
diff options
context:
space:
mode:
authorShankaranarayanan Puzhavakath Narayanan <snarayanan@research.att.com>2019-04-20 17:03:04 +0000
committerGerrit Code Review <gerrit@onap.org>2019-04-20 17:03:04 +0000
commit9eadcba0fa858a031f6269fc127c9dc738bb7d8b (patch)
tree88b0226afa174c77c59cbfda35ca092774518f6e /test/conductor/test_conductor_calls.py
parente1f6d80752920a7ef990134f02abb3db9b5a6232 (diff)
parentfc3ead31e631f69fabf0baaa20c10bf955ce374b (diff)
Merge "Traffic Distributtion support added"
Diffstat (limited to 'test/conductor/test_conductor_calls.py')
-rw-r--r--test/conductor/test_conductor_calls.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/conductor/test_conductor_calls.py b/test/conductor/test_conductor_calls.py
index 1a96da7..77d9a72 100644
--- a/test/conductor/test_conductor_calls.py
+++ b/test/conductor/test_conductor_calls.py
@@ -43,6 +43,11 @@ class TestConductorCalls(unittest.TestCase):
policies = pol.get_local_policies("test/policy-local-files/", self.lp)
conductor.request(req_json, self.osdf_config, policies)
+ def test_request_vfmod(self):
+ req_json = json_from_file("./test/placement-tests/request_vfmod.json")
+ policies = pol.get_local_policies("test/policy-local-files/", self.lp)
+ conductor.request(req_json, self.osdf_config, policies)
+
if __name__ == "__main__":
unittest.main()