Repository: qpid-dispatch
Updated Branches:
  refs/heads/master 69bbe489c -> 24ff1f6f5


NO-JIRA - Removed code that was expecting a timeout exception


Project: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/commit/24ff1f6f
Tree: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/tree/24ff1f6f
Diff: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/diff/24ff1f6f

Branch: refs/heads/master
Commit: 24ff1f6f5436991bbb2b5341e2c4ed22468da98a
Parents: 69bbe48
Author: Ganesh Murthy <[email protected]>
Authored: Mon Apr 18 15:04:54 2016 -0400
Committer: Ganesh Murthy <[email protected]>
Committed: Mon Apr 18 15:04:54 2016 -0400

----------------------------------------------------------------------
 tests/system_tests_link_routes.py | 21 ---------------------
 1 file changed, 21 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/24ff1f6f/tests/system_tests_link_routes.py
----------------------------------------------------------------------
diff --git a/tests/system_tests_link_routes.py 
b/tests/system_tests_link_routes.py
index e0f9e1c..9475460 100644
--- a/tests/system_tests_link_routes.py
+++ b/tests/system_tests_link_routes.py
@@ -393,17 +393,6 @@ class LinkRoutePatternTest(TestCase):
         # Connects to listener #2 on QDR.C
         addr = self.routers[2].addresses[1]
 
-        timeout_exception = False
-        blocking_connection = BlockingConnection(addr, timeout=3)
-
-        try:
-            blocking_connection.create_receiver(address="org.apache.dev")
-        except Exception as e:
-            self.assertTrue("timed out: Opening link" in e.message)
-            timeout_exception = True
-
-        self.assertTrue(timeout_exception)
-
         # Now delete linkRoutes on QDR.C to eradicate linkRoutes completely
         local_node = Node.connect(addr, timeout=TIMEOUT)
         result_list = 
local_node.query(type='org.apache.qpid.dispatch.router.config.linkRoute').results
@@ -446,16 +435,6 @@ class LinkRoutePatternTest(TestCase):
         received_message = blocking_receiver.receive(timeout=5)
         self.assertEqual(hello_world_1, received_message.body)
 
-        # Connect to the router acting like the broker (QDR.A) and check the 
deliveriesIngress and deliveriesEgress
-        local_node = Node.connect(self.routers[2].addresses[1], 
timeout=TIMEOUT)
-
-        self.assertEqual(u'QDR.C', 
local_node.query(type='org.apache.qpid.dispatch.router',
-                                                    
attribute_names=['routerId']).results[0][0])
-
-        self.assertEqual(1, 
local_node.read(type='org.apache.qpid.dispatch.router.address',
-                                            
name='M0org.apache.dev').deliveriesEgress,
-                         "deliveriesEgress is wrong")
-
     def test_yyy_delivery_tag(self):
         """
         Tests that the router carries over the delivery tag on a link routed 
delivery


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to