本文整理汇总了Python中gofer.messaging.consumer.ConsumerThread._close方法的典型用法代码示例。如果您正苦于以下问题:Python ConsumerThread._close方法的具体用法?Python ConsumerThread._close怎么用?Python ConsumerThread._close使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类gofer.messaging.consumer.ConsumerThread
的用法示例。
在下文中一共展示了ConsumerThread._close方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_close
# 需要导入模块: from gofer.messaging.consumer import ConsumerThread [as 别名]
# 或者: from gofer.messaging.consumer.ConsumerThread import _close [as 别名]
def test_close(self):
url = 'test-url'
node = Node('test-queue')
consumer = ConsumerThread(node, url)
consumer._reader = Mock()
# test
consumer._close()
# validation
consumer._reader.close.assert_called_once_with()
示例2: test_close_exception
# 需要导入模块: from gofer.messaging.consumer import ConsumerThread [as 别名]
# 或者: from gofer.messaging.consumer.ConsumerThread import _close [as 别名]
def test_close_exception(self):
url = 'test-url'
node = Node('test-queue')
consumer = ConsumerThread(node, url)
consumer._reader = Mock()
consumer._reader.close.side_effect = ValueError
# test
consumer._close()
# validation
consumer._reader.close.assert_called_once_with()
示例3: test_read_exception
# 需要导入模块: from gofer.messaging.consumer import ConsumerThread [as 别名]
# 或者: from gofer.messaging.consumer.ConsumerThread import _close [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)
示例4: test_run
# 需要导入模块: from gofer.messaging.consumer import ConsumerThread [as 别名]
# 或者: from gofer.messaging.consumer.ConsumerThread import _close [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()