本文整理汇总了Python中socorro.external.rabbitmq.crashstorage.RabbitMQCrashStorage._save_raw_crash_transaction方法的典型用法代码示例。如果您正苦于以下问题:Python RabbitMQCrashStorage._save_raw_crash_transaction方法的具体用法?Python RabbitMQCrashStorage._save_raw_crash_transaction怎么用?Python RabbitMQCrashStorage._save_raw_crash_transaction使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类socorro.external.rabbitmq.crashstorage.RabbitMQCrashStorage
的用法示例。
在下文中一共展示了RabbitMQCrashStorage._save_raw_crash_transaction方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_save_raw_crash_transaction_normal
# 需要导入模块: from socorro.external.rabbitmq.crashstorage import RabbitMQCrashStorage [as 别名]
# 或者: from socorro.external.rabbitmq.crashstorage.RabbitMQCrashStorage import _save_raw_crash_transaction [as 别名]
def test_save_raw_crash_transaction_normal(self):
connection = Mock()
config = self._setup_config()
crash_store = RabbitMQCrashStorage(config)
crash_store._save_raw_crash_transaction(connection, "some_crash_id")
connection.channel.basic_publish.assert_called_once_with(
exchange="", routing_key="socorro.normal", body="some_crash_id", properties=crash_store._basic_properties
)
示例2: test_save_raw_crash_transaction_priority
# 需要导入模块: from socorro.external.rabbitmq.crashstorage import RabbitMQCrashStorage [as 别名]
# 或者: from socorro.external.rabbitmq.crashstorage.RabbitMQCrashStorage import _save_raw_crash_transaction [as 别名]
def test_save_raw_crash_transaction_priority(self):
connection = Mock()
config = self._setup_config()
config.routing_key = 'socorro.priority'
crash_store = RabbitMQCrashStorage(config)
crash_store._save_raw_crash_transaction(connection, 'some_crash_id')
connection.channel.basic_publish.assert_called_once_with(
exchange='',
routing_key='socorro.priority',
body='some_crash_id',
properties=crash_store._basic_properties)