本文整理汇总了Python中cortexutils.analyzer.Analyzer._Analyzer__check_tlp方法的典型用法代码示例。如果您正苦于以下问题:Python Analyzer._Analyzer__check_tlp方法的具体用法?Python Analyzer._Analyzer__check_tlp怎么用?Python Analyzer._Analyzer__check_tlp使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cortexutils.analyzer.Analyzer
的用法示例。
在下文中一共展示了Analyzer._Analyzer__check_tlp方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: TestTlpConfig
# 需要导入模块: from cortexutils.analyzer import Analyzer [as 别名]
# 或者: from cortexutils.analyzer.Analyzer import _Analyzer__check_tlp [as 别名]
class TestTlpConfig(unittest.TestCase):
def setUp(self):
load_test_fixture('fixtures/test-tlp-config.json')
self.analyzer = Analyzer()
def test_check_tlp_disabled(self):
self.analyzer.enable_check_tlp = False
# Using the _Analyzer__check_tlp notation to access managed method
# __check_tlp
self.assertEqual(self.analyzer._Analyzer__check_tlp(), True)
def test_check_tlp_ko(self):
self.analyzer.enable_check_tlp = True
self.analyzer.max_tlp = 1
self.analyzer.tlp = 3
# Using the _Analyzer__check_tlp notation to access managed method
# __check_tlp
self.assertEqual(self.analyzer._Analyzer__check_tlp(), False)
def test_check_tlp_ok(self):
self.analyzer.enable_check_tlp = True
self.analyzer.max_tlp = 3
self.analyzer.tlp = 3
# Using the _Analyzer__check_tlp notation to access managed method
# __check_tlp
self.assertEqual(self.analyzer._Analyzer__check_tlp(), True)