本文整理汇总了Python中w3af.core.data.kb.info_set.InfoSet.match方法的典型用法代码示例。如果您正苦于以下问题:Python InfoSet.match方法的具体用法?Python InfoSet.match怎么用?Python InfoSet.match使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类w3af.core.data.kb.info_set.InfoSet
的用法示例。
在下文中一共展示了InfoSet.match方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_match_same_itag
# 需要导入模块: from w3af.core.data.kb.info_set import InfoSet [as 别名]
# 或者: from w3af.core.data.kb.info_set.InfoSet import match [as 别名]
def test_match_same_itag(self):
"""
https://github.com/andresriancho/w3af/issues/10286
"""
itag_1 = 'hello'
i1 = MockInfo(ids=1)
i1[itag_1] = 1
iset_1 = InfoSet([i1])
iset_1.ITAG = itag_1
i2 = MockInfo(ids=2)
i2[itag_1] = 1
self.assertTrue(iset_1.match(i2))
示例2: test_match_different_itag
# 需要导入模块: from w3af.core.data.kb.info_set import InfoSet [as 别名]
# 或者: from w3af.core.data.kb.info_set.InfoSet import match [as 别名]
def test_match_different_itag(self):
"""
https://github.com/andresriancho/w3af/issues/10286
"""
itag_1 = 'hello'
i1 = MockInfo(ids=1)
i1[itag_1] = 1
iset_1 = InfoSet([i1])
iset_1.ITAG = itag_1
itag_2 = 'world'
i2 = MockInfo(ids=2)
i2[itag_2] = 2
self.assertFalse(iset_1.match(i2))