本文整理汇总了Python中sentry.models.Event.get_hashes方法的典型用法代码示例。如果您正苦于以下问题:Python Event.get_hashes方法的具体用法?Python Event.get_hashes怎么用?Python Event.get_hashes使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类sentry.models.Event
的用法示例。
在下文中一共展示了Event.get_hashes方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_stacktrace_wins_over_http
# 需要导入模块: from sentry.models import Event [as 别名]
# 或者: from sentry.models.Event import get_hashes [as 别名]
def test_stacktrace_wins_over_http(http_comp_hash, stack_comp_hash):
# this was a regression, and a very important one
http_comp_hash.return_value = [['baz']]
stack_comp_hash.return_value = [['foo', 'bar']]
event = Event(
data={
'stacktrace': {
'frames': [{
'lineno': 1,
'filename': 'foo.py',
}],
},
'request': {
'url': 'http://example.com'
},
},
platform='python',
message='Foo bar',
)
hashes = event.get_hashes()
assert len(hashes) == 1
hash_one = hashes[0]
stack_comp_hash.assert_called_once_with('python')
assert not http_comp_hash.called
assert hash_one == md5_from_hash(['foo', 'bar'])