当前位置: 首页>>代码示例>>Python>>正文


Python ConsumerThread.read方法代码示例

本文整理汇总了Python中gofer.messaging.consumer.ConsumerThread.read方法的典型用法代码示例。如果您正苦于以下问题:Python ConsumerThread.read方法的具体用法?Python ConsumerThread.read怎么用?Python ConsumerThread.read使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在gofer.messaging.consumer.ConsumerThread的用法示例。


在下文中一共展示了ConsumerThread.read方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_read_nothing

# 需要导入模块: from gofer.messaging.consumer import ConsumerThread [as 别名]
# 或者: from gofer.messaging.consumer.ConsumerThread import read [as 别名]
    def test_read_nothing(self):
        url = 'test-url'
        node = Node('test-queue')
        consumer = ConsumerThread(node, url)
        consumer.reader = Mock()
        consumer.reader.next.return_value = (None, None)
        consumer.dispatch = Mock()

        # test
        consumer.read()

        # validate
        self.assertFalse(consumer.dispatch.called)
开发者ID:credativ,项目名称:gofer,代码行数:15,代码来源:test_consumer.py

示例2: test_read_validation_failed

# 需要导入模块: from gofer.messaging.consumer import ConsumerThread [as 别名]
# 或者: from gofer.messaging.consumer.ConsumerThread import read [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)
开发者ID:credativ,项目名称:gofer,代码行数:17,代码来源:test_consumer.py

示例3: test_read_exception

# 需要导入模块: from gofer.messaging.consumer import ConsumerThread [as 别名]
# 或者: from gofer.messaging.consumer.ConsumerThread import read [as 别名]
    def test_read_exception(self, sleep):
        url = 'test-url'
        node = Node('test-queue')
        consumer = ConsumerThread(node, url)
        consumer.reader = Mock()
        consumer.reader.next.side_effect = IndexError
        consumer.open = Mock()
        consumer.close = Mock()

        # test
        consumer.read()

        # validation
        consumer.close.assert_called_once_with()
        consumer.open.assert_called_once_with()
        sleep.assert_called_once_with(60)
开发者ID:credativ,项目名称:gofer,代码行数:18,代码来源:test_consumer.py

示例4: test_read_not_found

# 需要导入模块: from gofer.messaging.consumer import ConsumerThread [as 别名]
# 或者: from gofer.messaging.consumer.ConsumerThread import read [as 别名]
    def test_read_not_found(self, sleep):
        url = 'test-url'
        node = Node('test-queue')
        consumer = ConsumerThread(node, url)
        consumer.reader = Mock()
        consumer.reader.next.side_effect = NotFound
        consumer.open = Mock()
        consumer.close = Mock()

        # test
        consumer.read()

        # validation
        consumer.close.assert_called_once_with()
        consumer.open.assert_called_once_with()
        sleep.assert_called_once_with(10)
开发者ID:jortel,项目名称:gofer,代码行数:18,代码来源:test_consumer.py

示例5: test_read

# 需要导入模块: from gofer.messaging.consumer import ConsumerThread [as 别名]
# 或者: from gofer.messaging.consumer.ConsumerThread import read [as 别名]
    def test_read(self):
        url = 'test-url'
        node = Node('test-queue')
        message = Mock()
        document = Mock()
        consumer = ConsumerThread(node, url)
        consumer.reader = Mock()
        consumer.reader.next.return_value = (message, document)
        consumer.dispatch = Mock()

        # test
        consumer.read()

        # validate
        consumer.reader.next.assert_called_once_with(consumer.wait)
        consumer.dispatch.assert_called_once_with(document)
        message.ack.assert_called_once_with()
开发者ID:credativ,项目名称:gofer,代码行数:19,代码来源:test_consumer.py

示例6: test_read_invalid_document

# 需要导入模块: from gofer.messaging.consumer import ConsumerThread [as 别名]
# 或者: from gofer.messaging.consumer.ConsumerThread import read [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)
开发者ID:credativ,项目名称:gofer,代码行数:21,代码来源:test_consumer.py

示例7: test_run

# 需要导入模块: from gofer.messaging.consumer import ConsumerThread [as 别名]
# 或者: from gofer.messaging.consumer.ConsumerThread import read [as 别名]
    def test_run(self, reader):
        url = 'test-url'
        node = Node('test-queue')
        consumer = ConsumerThread(node, url)
        consumer.open = Mock()
        consumer.close = Mock()
        consumer.read = Mock(side_effect=StopIteration)

        # test
        try:
            consumer.run()
        except StopIteration:
            pass

        # validation
        reader.assert_called_once_with(node, url)
        consumer.open.assert_called_once_with()
        consumer.read.assert_called_once_with()
        consumer.close.assert_called_once_with()
开发者ID:credativ,项目名称:gofer,代码行数:21,代码来源:test_consumer.py


注:本文中的gofer.messaging.consumer.ConsumerThread.read方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。