本文整理汇总了Python中gofer.messaging.consumer.ConsumerThread._rejected方法的典型用法代码示例。如果您正苦于以下问题:Python ConsumerThread._rejected方法的具体用法?Python ConsumerThread._rejected怎么用?Python ConsumerThread._rejected使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类gofer.messaging.consumer.ConsumerThread
的用法示例。
在下文中一共展示了ConsumerThread._rejected方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_read_validation_failed
# 需要导入模块: from gofer.messaging.consumer import ConsumerThread [as 别名]
# 或者: from gofer.messaging.consumer.ConsumerThread import _rejected [as 别名]
def test_read_validation_failed(self):
url = 'test-url'
node = Node('test-queue')
failed = ValidationFailed(details='test')
consumer = ConsumerThread(node, url)
consumer._reader = Mock()
consumer._reader.next.side_effect = failed
consumer._rejected = Mock()
# test
consumer._read()
# validate
consumer._rejected.assert_called_once_with(
failed.code, failed.description, failed.document, failed.details)
示例2: test_read_invalid_document
# 需要导入模块: from gofer.messaging.consumer import ConsumerThread [as 别名]
# 或者: from gofer.messaging.consumer.ConsumerThread import _rejected [as 别名]
def test_read_invalid_document(self):
url = 'test-url'
node = Node('test-queue')
code = 12
description = 'just up and failed'
document = Mock()
details = 'crashed'
ir = InvalidDocument(code, description, document, details)
consumer = ConsumerThread(node, url)
consumer._reader = Mock()
consumer._reader.next.side_effect = ir
consumer._rejected = Mock()
# test
consumer._read()
# validate
consumer._rejected.assert_called_once_with(
ir.code, ir.description, ir.document, ir.details)
示例3: test_rejected
# 需要导入模块: from gofer.messaging.consumer import ConsumerThread [as 别名]
# 或者: from gofer.messaging.consumer.ConsumerThread import _rejected [as 别名]
def test_rejected(self):
url = 'test-url'
node = Node('test-queue')
consumer = ConsumerThread(node, url)
consumer._rejected('1', '2', '3', '4')