Bump oparent-python version
[optf/osdf.git] / test / adapters / test_message_router.py
index 2a02dc8..a9c4636 100644 (file)
@@ -1,3 +1,20 @@
+# -------------------------------------------------------------------------
+#   Copyright (c) 2017-2018 AT&T Intellectual Property
+#
+#   Licensed under the Apache License, Version 2.0 (the "License");
+#   you may not use this file except in compliance with the License.
+#   You may obtain a copy of the License at
+#
+#       http://www.apache.org/licenses/LICENSE-2.0
+#
+#   Unless required by applicable law or agreed to in writing, software
+#   distributed under the License is distributed on an "AS IS" BASIS,
+#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#   See the License for the specific language governing permissions and
+#   limitations under the License.
+#
+# -------------------------------------------------------------------------
+#
 import osdf.adapters.dcae.message_router as MR
 import unittest
 
@@ -11,14 +28,13 @@ class TestMessageRouter(unittest.TestCase):
         mr = MR.MessageRouterClient(dmaap_url="https://MYHOST:3905")
 
     def test_valid_MR_with_base_urls(self):
-        base_urls = ["https://MYHOST1:3905/","https://MYHOST2:3905/"]
-        mr = MR.MessageRouterClient(mr_host_base_urls=base_urls, topic="MY-TOPIC")
+        base_urls = ["https://MYHOST1:3905/events/MY-TOPIC","https://MYHOST2:3905/events/MY-TOPIC"]
+        mr = MR.MessageRouterClient(dmaap_url=base_urls)
 
     def test_invalid_valid_MR_with_base_urls(self):
-        """Topic missing"""
-        base_urls = ["https://MYHOST1:3905/","https://MYHOST2:3905/"]
+        """No dmaap_url"""
         try:
-            mr = MR.MessageRouterClient(mr_host_base_urls=base_urls)
+            mr = MR.MessageRouterClient()
         except MessageBusConfigurationException:
             return