本文整理汇总了Python中amqp.basic_message.Message._load_properties方法的典型用法代码示例。如果您正苦于以下问题:Python Message._load_properties方法的具体用法?Python Message._load_properties怎么用?Python Message._load_properties使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类amqp.basic_message.Message
的用法示例。
在下文中一共展示了Message._load_properties方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_load_properties
# 需要导入模块: from amqp.basic_message import Message [as 别名]
# 或者: from amqp.basic_message.Message import _load_properties [as 别名]
def test_load_properties(self):
m = Message()
m.properties = {
'content_type': 'application/json',
'content_encoding': 'utf-8',
'application_headers': {
'foo': 1,
'id': 'id#1',
},
'delivery_mode': 1,
'priority': 255,
'correlation_id': 'df31-142f-34fd-g42d',
'reply_to': 'cosmo',
'expiration': '2015-12-23',
'message_id': '3312',
'timestamp': 3912491234,
'type': 'generic',
'user_id': 'george',
'app_id': 'vandelay',
'cluster_id': 'NYC',
}
s = m._serialize_properties()
m2 = Message()
m2._load_properties(m2.CLASS_ID, s)
assert m2.properties == m.properties
示例2: check_proplist
# 需要导入模块: from amqp.basic_message import Message [as 别名]
# 或者: from amqp.basic_message.Message import _load_properties [as 别名]
def check_proplist(self, msg):
"""
Check roundtrip processing of a single object
"""
raw_properties = msg._serialize_properties()
new_msg = Message()
new_msg._load_properties(raw_properties)
new_msg.body = msg.body
self.assertEqual(msg, new_msg)
示例3: test_load_properties__some_missing
# 需要导入模块: from amqp.basic_message import Message [as 别名]
# 或者: from amqp.basic_message.Message import _load_properties [as 别名]
def test_load_properties__some_missing(self):
m = Message()
m.properties = {
'content_type': 'application/json',
'content_encoding': 'utf-8',
'delivery_mode': 1,
'correlation_id': 'df31-142f-34fd-g42d',
'reply_to': 'cosmo',
'expiration': '2015-12-23',
'message_id': '3312',
'type': None,
'app_id': None,
'cluster_id': None,
}
s = m._serialize_properties()
m2 = Message()
m2._load_properties(m2.CLASS_ID, s)
示例4: test_load_properties
# 需要导入模块: from amqp.basic_message import Message [as 别名]
# 或者: from amqp.basic_message.Message import _load_properties [as 别名]
def test_load_properties(self):
m = Message()
m.properties = {
"content_type": "application/json",
"content_encoding": "utf-8",
"application_headers": {"foo": 1, "id": "id#1"},
"delivery_mode": 1,
"priority": 255,
"correlation_id": "df31-142f-34fd-g42d",
"reply_to": "cosmo",
"expiration": "2015-12-23",
"message_id": "3312",
"timestamp": 3912491234,
"type": "generic",
"user_id": "george",
"app_id": "vandelay",
"cluster_id": "NYC",
}
s = m._serialize_properties()
m2 = Message()
m2._load_properties(m2.CLASS_ID, s)
self.assertDictEqual(m2.properties, m.properties)