本文整理匯總了Python中celery.backends.couchbase.CouchBaseBackend._connection方法的典型用法代碼示例。如果您正苦於以下問題:Python CouchBaseBackend._connection方法的具體用法?Python CouchBaseBackend._connection怎麽用?Python CouchBaseBackend._connection使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類celery.backends.couchbase.CouchBaseBackend
的用法示例。
在下文中一共展示了CouchBaseBackend._connection方法的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_set
# 需要導入模塊: from celery.backends.couchbase import CouchBaseBackend [as 別名]
# 或者: from celery.backends.couchbase.CouchBaseBackend import _connection [as 別名]
def test_set(self):
self.app.conf.couchbase_backend_settings = None
x = CouchBaseBackend(app=self.app)
x._connection = MagicMock()
x._connection.set = MagicMock()
# should return None
self.assertIsNone(x.set(sentinel.key, sentinel.value))
示例2: test_delete
# 需要導入模塊: from celery.backends.couchbase import CouchBaseBackend [as 別名]
# 或者: from celery.backends.couchbase.CouchBaseBackend import _connection [as 別名]
def test_delete(self):
self.app.conf.couchbase_backend_settings = {}
x = CouchBaseBackend(app=self.app)
x._connection = Mock()
mocked_delete = x._connection.delete = Mock()
mocked_delete.return_value = None
# should return None
self.assertIsNone(x.delete('1f3fab'))
x._connection.delete.assert_called_once_with('1f3fab')
示例3: test_get
# 需要導入模塊: from celery.backends.couchbase import CouchBaseBackend [as 別名]
# 或者: from celery.backends.couchbase.CouchBaseBackend import _connection [as 別名]
def test_get(self):
self.app.conf.couchbase_backend_settings = {}
x = CouchBaseBackend(app=self.app)
x._connection = Mock()
mocked_get = x._connection.get = Mock()
mocked_get.return_value.value = sentinel.retval
# should return None
self.assertEqual(x.get('1f3fab'), sentinel.retval)
x._connection.get.assert_called_once_with('1f3fab')
示例4: test_set
# 需要導入模塊: from celery.backends.couchbase import CouchBaseBackend [as 別名]
# 或者: from celery.backends.couchbase.CouchBaseBackend import _connection [as 別名]
def test_set(self):
"""test_set
CouchBaseBackend.set should return None and take two params
db conn to couchbase is mocked.
"""
self.app.conf.CELERY_COUCHBASE_BACKEND_SETTINGS = None
x = CouchBaseBackend(app=self.app)
x._connection = MagicMock()
x._connection.set = MagicMock()
# should return None
self.assertIsNone(x.set(sentinel.key, sentinel.value))
示例5: test_set
# 需要導入模塊: from celery.backends.couchbase import CouchBaseBackend [as 別名]
# 或者: from celery.backends.couchbase.CouchBaseBackend import _connection [as 別名]
def test_set(self):
"""
Test set method.
CouchBaseBackend.set should return None and take two params
db conn to couchbase is mocked.
"""
self.app.conf.couchbase_backend_settings = None
x = CouchBaseBackend(app=self.app)
x._connection = MagicMock()
x._connection.set = MagicMock()
# should return None
self.assertIsNone(x.set(sentinel.key, sentinel.value))
示例6: test_delete
# 需要導入模塊: from celery.backends.couchbase import CouchBaseBackend [as 別名]
# 或者: from celery.backends.couchbase.CouchBaseBackend import _connection [as 別名]
def test_delete(self):
"""test_delete
CouchBaseBackend.delete should return and take two params
db conn to couchbase is mocked.
TODO Should test on key not exists
"""
self.app.conf.CELERY_COUCHBASE_BACKEND_SETTINGS = {}
x = CouchBaseBackend(app=self.app)
x._connection = Mock()
mocked_delete = x._connection.delete = Mock()
mocked_delete.return_value = None
# should return None
self.assertIsNone(x.delete('1f3fab'))
x._connection.delete.assert_called_once_with('1f3fab')
示例7: test_get
# 需要導入模塊: from celery.backends.couchbase import CouchBaseBackend [as 別名]
# 或者: from celery.backends.couchbase.CouchBaseBackend import _connection [as 別名]
def test_get(self):
"""test_get
CouchBaseBackend.get should return and take two params
db conn to couchbase is mocked.
TODO Should test on key not exists
"""
self.app.conf.CELERY_COUCHBASE_BACKEND_SETTINGS = {}
x = CouchBaseBackend(app=self.app)
x._connection = Mock()
mocked_get = x._connection.get = Mock()
mocked_get.return_value.value = sentinel.retval
# should return None
self.assertEqual(x.get('1f3fab'), sentinel.retval)
x._connection.get.assert_called_once_with('1f3fab')
示例8: test_get
# 需要導入模塊: from celery.backends.couchbase import CouchBaseBackend [as 別名]
# 或者: from celery.backends.couchbase.CouchBaseBackend import _connection [as 別名]
def test_get(self):
"""
Test get method.
CouchBaseBackend.get should return and take two params
db conn to couchbase is mocked.
TODO Should test on key not exists
"""
self.app.conf.couchbase_backend_settings = {}
x = CouchBaseBackend(app=self.app)
x._connection = Mock()
mocked_get = x._connection.get = Mock()
mocked_get.return_value.value = sentinel.retval
# should return None
self.assertEqual(x.get('1f3fab'), sentinel.retval)
x._connection.get.assert_called_once_with('1f3fab')
示例9: test_delete
# 需要導入模塊: from celery.backends.couchbase import CouchBaseBackend [as 別名]
# 或者: from celery.backends.couchbase.CouchBaseBackend import _connection [as 別名]
def test_delete(self):
"""
Test delete method.
CouchBaseBackend.delete should return and take two params
db conn to couchbase is mocked.
TODO Should test on key not exists.
"""
self.app.conf.couchbase_backend_settings = {}
x = CouchBaseBackend(app=self.app)
x._connection = Mock()
mocked_delete = x._connection.delete = Mock()
mocked_delete.return_value = None
# should return None
self.assertIsNone(x.delete('1f3fab'))
x._connection.delete.assert_called_once_with('1f3fab')