示例#1
0
 def __init__(self, url):
     """
     :param url: The connector url.
     :type url: str
     """
     BaseConnection.__init__(self, url)
     self._impl = None
示例#2
0
 def __init__(self, url):
     """
     :param url: The broker url.
     :type url: str
     """
     BaseConnection.__init__(self, url)
     self._impl = None
示例#3
0
 def test_exit(self, _close):
     connection = BaseConnection(TEST_URL)
     connection.__exit__()
     _close.assert_called_with()
示例#4
0
 def test_enter(self, _open):
     connection = BaseConnection(TEST_URL)
     retval = connection.__enter__()
     _open.assert_called_once_with()
     self.assertEqual(connection, retval)
示例#5
0
 def test_str(self):
     connection = BaseConnection(TEST_URL)
     self.assertEqual(str(connection), TEST_URL)
示例#6
0
 def test_abstract(self):
     connection = BaseConnection(TEST_URL)
     self.assertRaises(NotImplementedError, connection.is_open)
     self.assertRaises(NotImplementedError, connection.open)
     self.assertRaises(NotImplementedError, connection.close)
示例#7
0
 def test_init(self):
     connection = BaseConnection(TEST_URL)
     self.assertEqual(connection.url, TEST_URL)
     self.assertTrue(connection.retry)
示例#8
0
 def test_exit(self, _close):
     connection = BaseConnection(TEST_URL)
     connection.__exit__()
     _close.assert_called_with()
示例#9
0
 def test_enter(self, _open):
     connection = BaseConnection(TEST_URL)
     retval = connection.__enter__()
     _open.assert_called_once_with()
     self.assertEqual(connection, retval)
示例#10
0
 def test_unicode(self):
     connection = BaseConnection(TEST_URL)
     self.assertEqual(unicode(connection), TEST_URL)