Beispiel #1
0
 def __init__(self, url):
     """
     :param url: The connector url.
     :type url: str
     """
     BaseConnection.__init__(self, url)
     self._impl = None
Beispiel #2
0
 def __init__(self, url):
     """
     :param url: The broker url.
     :type url: str
     """
     BaseConnection.__init__(self, url)
     self._impl = None
Beispiel #3
0
 def test_exit(self, _close):
     connection = BaseConnection(TEST_URL)
     connection.__exit__()
     _close.assert_called_with()
Beispiel #4
0
 def test_enter(self, _open):
     connection = BaseConnection(TEST_URL)
     retval = connection.__enter__()
     _open.assert_called_once_with()
     self.assertEqual(connection, retval)
Beispiel #5
0
 def test_str(self):
     connection = BaseConnection(TEST_URL)
     self.assertEqual(str(connection), TEST_URL)
Beispiel #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)
Beispiel #7
0
 def test_init(self):
     connection = BaseConnection(TEST_URL)
     self.assertEqual(connection.url, TEST_URL)
     self.assertTrue(connection.retry)
Beispiel #8
0
 def test_exit(self, _close):
     connection = BaseConnection(TEST_URL)
     connection.__exit__()
     _close.assert_called_with()
Beispiel #9
0
 def test_enter(self, _open):
     connection = BaseConnection(TEST_URL)
     retval = connection.__enter__()
     _open.assert_called_once_with()
     self.assertEqual(connection, retval)
Beispiel #10
0
 def test_unicode(self):
     connection = BaseConnection(TEST_URL)
     self.assertEqual(unicode(connection), TEST_URL)