本文整理汇总了Python中cortexutils.analyzer.Analyzer.get_param方法的典型用法代码示例。如果您正苦于以下问题:Python Analyzer.get_param方法的具体用法?Python Analyzer.get_param怎么用?Python Analyzer.get_param使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cortexutils.analyzer.Analyzer
的用法示例。
在下文中一共展示了Analyzer.get_param方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: TestErrorResponse
# 需要导入模块: from cortexutils.analyzer import Analyzer [as 别名]
# 或者: from cortexutils.analyzer.Analyzer import get_param [as 别名]
class TestErrorResponse(unittest.TestCase):
def setUp(self):
load_test_fixture('fixtures/test-error-response.json')
self.analyzer = Analyzer()
def test_error_response(self):
self.assertEqual(self.analyzer.get_param('config.password'), "secret")
self.assertEqual(self.analyzer.get_param('config.key'), "secret")
self.assertEqual(self.analyzer.get_param('config.apikey'), "secret")
self.assertEqual(self.analyzer.get_param('config.api_key'), "secret")
# Run the error method
with self.assertRaises(SystemExit):
self.analyzer.error('Error', True)
# Get the output
output = self.analyzer.fpoutput.getvalue().strip()
json_output = json.loads(output)
self.assertEqual(json_output['success'], False)
self.assertEqual(json_output['errorMessage'], 'Error')
self.assertEqual(json_output['input']['dataType'], 'ip')
self.assertEqual(json_output['input']['data'], '1.1.1.1')
self.assertEqual(json_output['input']['config']['password'], 'REMOVED')
self.assertEqual(json_output['input']['config']['key'], 'REMOVED')
self.assertEqual(json_output['input']['config']['apikey'], 'REMOVED')
self.assertEqual(json_output['input']['config']['api_key'], 'REMOVED')
示例2: TestMinimalConfig
# 需要导入模块: from cortexutils.analyzer import Analyzer [as 别名]
# 或者: from cortexutils.analyzer.Analyzer import get_param [as 别名]
class TestMinimalConfig(unittest.TestCase):
def setUp(self):
load_test_fixture('fixtures/test-minimal-config.json')
self.analyzer = Analyzer()
def test_default_config(self):
self.assertEqual(self.analyzer.data_type, 'ip')
self.assertEqual(self.analyzer.tlp, 2)
self.assertEqual(self.analyzer.enable_check_tlp, False)
self.assertEqual(self.analyzer.max_tlp, 2)
self.assertEqual(self.analyzer.http_proxy, None)
self.assertEqual(self.analyzer.https_proxy, None)
def test_artifact_data(self):
self.assertEqual(self.analyzer.getData(), "1.1.1.1")
self.assertEqual(self.analyzer.get_data(), "1.1.1.1")
def test_params_data(self):
self.assertEqual(self.analyzer.getParam('data'), "1.1.1.1")
self.assertEqual(self.analyzer.get_param('data'), "1.1.1.1")