當前位置: 首頁>>代碼示例>>Python>>正文


Python InfoSet.get_uniq_id方法代碼示例

本文整理匯總了Python中w3af.core.data.kb.info_set.InfoSet.get_uniq_id方法的典型用法代碼示例。如果您正苦於以下問題:Python InfoSet.get_uniq_id方法的具體用法?Python InfoSet.get_uniq_id怎麽用?Python InfoSet.get_uniq_id使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在w3af.core.data.kb.info_set.InfoSet的用法示例。


在下文中一共展示了InfoSet.get_uniq_id方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_deepcopy

# 需要導入模塊: from w3af.core.data.kb.info_set import InfoSet [as 別名]
# 或者: from w3af.core.data.kb.info_set.InfoSet import get_uniq_id [as 別名]
    def test_deepcopy(self):
        i = MockInfo()
        iset1 = InfoSet([i])

        iset1_copy = copy.deepcopy(iset1)

        self.assertEqual(iset1.get_uniq_id(), iset1_copy.get_uniq_id())
開發者ID:andresriancho,項目名稱:w3af,代碼行數:9,代碼來源:test_info_set.py

示例2: test_pickle

# 需要導入模塊: from w3af.core.data.kb.info_set import InfoSet [as 別名]
# 或者: from w3af.core.data.kb.info_set.InfoSet import get_uniq_id [as 別名]
    def test_pickle(self):
        i = MockInfo()
        iset1 = InfoSet([i])

        pickled_iset1 = cpickle_dumps(iset1)
        iset1_clone = loads(pickled_iset1)

        self.assertEqual(iset1.get_uniq_id(), iset1_clone.get_uniq_id())
開發者ID:BioSoundSystems,項目名稱:w3af,代碼行數:10,代碼來源:test_info_set.py

示例3: test_get_uniq_id

# 需要導入模塊: from w3af.core.data.kb.info_set import InfoSet [as 別名]
# 或者: from w3af.core.data.kb.info_set.InfoSet import get_uniq_id [as 別名]
 def test_get_uniq_id(self):
     i = MockInfo()
     iset = InfoSet([i])
     self.assertIsNotNone(iset.get_uniq_id())
開發者ID:BioSoundSystems,項目名稱:w3af,代碼行數:6,代碼來源:test_info_set.py

示例4: test_all_of_info_exclude_ids

# 需要導入模塊: from w3af.core.data.kb.info_set import InfoSet [as 別名]
# 或者: from w3af.core.data.kb.info_set.InfoSet import get_uniq_id [as 別名]
    def test_all_of_info_exclude_ids(self):
        i1 = MockInfo()
        i2 = MockInfo()

        v1 = MockVuln()
        v2 = MockVuln()

        iset = InfoSet([i2])
        vset = InfoSet([v2])

        kb.append('a', 'b', i1)
        kb.append('w', 'z', iset)
        kb.append('x', 'y', v1)
        kb.append('4', '2', vset)

        all_findings = kb.get_all_findings()
        all_findings_except_v1 = kb.get_all_findings(exclude_ids=(v1.get_uniq_id(),))
        all_findings_except_v1_v2 = kb.get_all_findings(exclude_ids=(v1.get_uniq_id(), vset.get_uniq_id()))

        self.assertEqual(all_findings, [i1, iset, v1, vset])
        self.assertEqual(all_findings_except_v1, [i1, iset, vset])
        self.assertEqual(all_findings_except_v1_v2, [i1, iset])
開發者ID:andresriancho,項目名稱:w3af,代碼行數:24,代碼來源:test_knowledge_base.py


注:本文中的w3af.core.data.kb.info_set.InfoSet.get_uniq_id方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。