本文整理汇总了Python中amqpstorm.Channel._basic_return方法的典型用法代码示例。如果您正苦于以下问题:Python Channel._basic_return方法的具体用法?Python Channel._basic_return怎么用?Python Channel._basic_return使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类amqpstorm.Channel
的用法示例。
在下文中一共展示了Channel._basic_return方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_basic_return
# 需要导入模块: from amqpstorm import Channel [as 别名]
# 或者: from amqpstorm.Channel import _basic_return [as 别名]
def test_basic_return(self):
channel = Channel(0, None, 360)
basic_return = specification.Basic.Return(reply_code=500,
reply_text=b'Error')
channel._basic_return(basic_return)
self.assertEqual(len(channel.exceptions), 1)
why = channel.exceptions.pop(0)
self.assertEqual(str(why), "Message not delivered: Error (500) "
"to queue '' from exchange ''")
示例2: test_channel_raises_with_return_reply_code_500
# 需要导入模块: from amqpstorm import Channel [as 别名]
# 或者: from amqpstorm.Channel import _basic_return [as 别名]
def test_channel_raises_with_return_reply_code_500(self):
channel = Channel(0, FakeConnection(), 360)
channel.set_state(channel.OPEN)
basic_return = specification.Basic.Return(
reply_code=500,
reply_text='Error'
)
channel._basic_return(basic_return)
self.assertRaisesRegexp(
AMQPMessageError,
"Message not delivered: Error \(500\) to queue "
"'' from exchange ''",
channel.check_for_errors
)