本文整理汇总了Python中djcelery.backends.cache.CacheBackend.get_result方法的典型用法代码示例。如果您正苦于以下问题:Python CacheBackend.get_result方法的具体用法?Python CacheBackend.get_result怎么用?Python CacheBackend.get_result使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类djcelery.backends.cache.CacheBackend
的用法示例。
在下文中一共展示了CacheBackend.get_result方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_forget
# 需要导入模块: from djcelery.backends.cache import CacheBackend [as 别名]
# 或者: from djcelery.backends.cache.CacheBackend import get_result [as 别名]
def test_forget(self):
b = CacheBackend()
tid = gen_unique_id()
b.mark_as_done(tid, {"foo": "bar"})
self.assertEqual(b.get_result(tid).get("foo"), "bar")
b.forget(tid)
self.assertNotIn(tid, b._cache)
self.assertIsNone(b.get_result(tid))
示例2: test_mark_as_done
# 需要导入模块: from djcelery.backends.cache import CacheBackend [as 别名]
# 或者: from djcelery.backends.cache.CacheBackend import get_result [as 别名]
def test_mark_as_done(self):
cb = CacheBackend()
tid = gen_unique_id()
self.assertEqual(cb.get_status(tid), states.PENDING)
self.assertIsNone(cb.get_result(tid))
cb.mark_as_done(tid, 42)
self.assertEqual(cb.get_status(tid), states.SUCCESS)
self.assertEqual(cb.get_result(tid), 42)
self.assertTrue(cb.get_result(tid), 42)
示例3: test_is_pickled
# 需要导入模块: from djcelery.backends.cache import CacheBackend [as 别名]
# 或者: from djcelery.backends.cache.CacheBackend import get_result [as 别名]
def test_is_pickled(self):
cb = CacheBackend()
tid2 = gen_unique_id()
result = {"foo": "baz", "bar": SomeClass(12345)}
cb.mark_as_done(tid2, result)
# is serialized properly.
rindb = cb.get_result(tid2)
self.assertEqual(rindb.get("foo"), "baz")
self.assertEqual(rindb.get("bar").data, 12345)
示例4: test_mark_as_failure
# 需要导入模块: from djcelery.backends.cache import CacheBackend [as 别名]
# 或者: from djcelery.backends.cache.CacheBackend import get_result [as 别名]
def test_mark_as_failure(self):
cb = CacheBackend(app=app)
einfo = None
tid3 = gen_unique_id()
try:
raise KeyError('foo')
except KeyError as exception:
einfo = ExceptionInfo(sys.exc_info())
cb.mark_as_failure(tid3, exception, traceback=einfo.traceback)
self.assertEqual(cb.get_status(tid3), states.FAILURE)
self.assertIsInstance(cb.get_result(tid3), KeyError)
self.assertEqual(cb.get_traceback(tid3), einfo.traceback)