本文整理汇总了Python中ossimsetupconfig.AVOssimSetupConfigHandler类的典型用法代码示例。如果您正苦于以下问题:Python AVOssimSetupConfigHandler类的具体用法?Python AVOssimSetupConfigHandler怎么用?Python AVOssimSetupConfigHandler使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了AVOssimSetupConfigHandler类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_check_server_ip
def test_check_server_ip(self):
config = AVOssimSetupConfigHandler(TEST_FILES_PATH+"ossim_setup1.conf")
self.assertEqual(config.check_server_ip("192.168.2.2"),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_server_ip("value"),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_server_ip(""),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_server_ip(None),AVConfigParserErrors.ALL_OK)
del config
示例2: test_check_general_mailserver_relay_passwd
def test_check_general_mailserver_relay_passwd(self):
config = AVOssimSetupConfigHandler(TEST_FILES_PATH+"ossim_setup1.conf")
self.assertNotEqual(config.check_general_mailserver_relay_passwd(""),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_general_mailserver_relay_passwd(None),AVConfigParserErrors.ALL_OK)
self.assertEqual(config.check_general_mailserver_relay_passwd("mydomain.com"),AVConfigParserErrors.ALL_OK)
self.assertEqual(config.check_general_mailserver_relay_passwd("192.168.2.2"),AVConfigParserErrors.ALL_OK)
del config
示例3: test_check_sensor_networks
def test_check_sensor_networks(self):
config = AVOssimSetupConfigHandler(TEST_FILES_PATH+"ossim_setup1.conf")
self.assertEqual(config.check_sensor_networks(""),AVConfigParserErrors.ALL_OK)
self.assertEqual(config.check_sensor_networks(None),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_sensor_networks("nnn"),AVConfigParserErrors.ALL_OK)
valid = "192.168.2.0/16,10.0.0.0/24"
self.assertEqual(config.check_sensor_networks(valid),AVConfigParserErrors.ALL_OK)
del config
示例4: test_check_update_update_proxy_pass
def test_check_update_update_proxy_pass(self):
config = AVOssimSetupConfigHandler(TEST_FILES_PATH+"ossim_setup1.conf")
self.assertNotEqual(config.check_update_update_proxy_pass(""),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_update_update_proxy_pass(None),AVConfigParserErrors.ALL_OK)
#7833
#self.assertNotEqual(config.check_update_update_proxy_pass("no"),AVConfigParserErrors.ALL_OK)
self.assertEqual(config.check_update_update_proxy_pass("mydomain.com"),AVConfigParserErrors.ALL_OK)
self.assertEqual(config.check_update_update_proxy_pass("192.168.2.2"),AVConfigParserErrors.ALL_OK)
del config
示例5: test_check_general_admin_ip
def test_check_general_admin_ip(self):
"""admin ip has to be a valid IP v4 address.
"""
config = AVOssimSetupConfigHandler(TEST_FILES_PATH+"ossim_setup1.conf")
self.assertEqual(config.check_general_admin_ip("192.168.2.2"),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_general_admin_ip("value"),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_general_admin_ip(""),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_general_admin_ip(None),AVConfigParserErrors.ALL_OK)
del config
示例6: test_make_backup
def test_make_backup(self):
if os.path.isdir(BACKUP_FOLDER):
config = AVOssimSetupConfigHandler(TEST_FILES_PATH+"ossim_setup1.conf")
config.make_backup()
#check that there is almost on backup file
backup_filter = "%s%s*"% (BACKUP_FOLDER,"ossim_setup1.conf")
backup_files = glob.glob(backup_filter)
nbackupfiles = len(backup_files)
self.assertTrue(nbackupfiles>0)#Almost one file
self.assertTrue(nbackupfiles<6)#no more than 5 files
else:
print "make backup tests couldn't be executed. %s not exists!" % BACKUP_FOLDER
示例7: test_check_general_hostname
def test_check_general_hostname(self):
config = AVOssimSetupConfigHandler(TEST_FILES_PATH+"ossim_setup1.conf")
invalidhostname = "ab"*100
self.assertNotEqual(config.check_general_hostname(invalidhostname),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_general_hostname("192.168.2.2"),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_general_hostname("255.255.255.0"),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_general_hostname(None),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_general_hostname("[email protected]"),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_general_hostname("[email protected]"),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_general_hostname(""),AVConfigParserErrors.ALL_OK)
self.assertEqual(config.check_general_hostname("machinename-com"),AVConfigParserErrors.ALL_OK)
del config
示例8: test_check_update_update_proxy
def test_check_update_update_proxy(self):
config = AVOssimSetupConfigHandler(TEST_FILES_PATH+"ossim_setup1.conf")
self.assertNotEqual(config.check_update_update_proxy("value"),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_update_update_proxy(""),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_update_update_proxy(None),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_update_update_proxy("[email protected]"),AVConfigParserErrors.ALL_OK)
self.assertEqual(config.check_update_update_proxy("disabled"),AVConfigParserErrors.ALL_OK)
self.assertEqual(config.check_update_update_proxy("manual"),AVConfigParserErrors.ALL_OK)
self.assertEqual(config.check_update_update_proxy("alienvault-proxy"),AVConfigParserErrors.ALL_OK)
del config
示例9: test_check_general_email_notify
def test_check_general_email_notify(self):
config = AVOssimSetupConfigHandler(TEST_FILES_PATH+"ossim_setup1.conf")
self.assertNotEqual(config.check_general_email_notify("192.168.2.2"),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_general_email_notify("255.255.255.0"),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_general_email_notify(None),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_general_email_notify("Ç"),AVConfigParserErrors.ALL_OK)
self.assertEqual(config.check_general_email_notify("[email protected]"),AVConfigParserErrors.ALL_OK)
self.assertEqual(config.check_general_email_notify("[email protected]"),AVConfigParserErrors.ALL_OK)
self.assertEqual(config.check_general_email_notify(""),AVConfigParserErrors.ALL_OK)
del config
示例10: test_check_firewall_active
def test_check_firewall_active(self):
invalidvalue = "AAAA" * 100
config = AVOssimSetupConfigHandler(TEST_FILES_PATH+"ossim_setup1.conf")
self.assertNotEqual(config.check_firewall_active(""),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_firewall_active(None),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_firewall_active(invalidvalue),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_firewall_active(0),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_firewall_active("TRUE"),AVConfigParserErrors.ALL_OK)
self.assertEqual(config.check_firewall_active("YeS"),AVConfigParserErrors.ALL_OK)
self.assertEqual(config.check_firewall_active("no"),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_firewall_active("1"),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_firewall_active("0"),AVConfigParserErrors.ALL_OK)
del config
示例11: test_check_sensor_ids_rules_flow_control
def test_check_sensor_ids_rules_flow_control(self):
invalidvalue = "AAAA" * 100
config = AVOssimSetupConfigHandler(TEST_FILES_PATH+"ossim_setup1.conf")
self.assertNotEqual(config.check_sensor_ids_rules_flow_control(""),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_sensor_ids_rules_flow_control(None),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_sensor_ids_rules_flow_control(invalidvalue),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_sensor_ids_rules_flow_control(0),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_sensor_ids_rules_flow_control("TRUE"),AVConfigParserErrors.ALL_OK)
self.assertEqual(config.check_sensor_ids_rules_flow_control("yes"),AVConfigParserErrors.ALL_OK)
self.assertEqual(config.check_sensor_ids_rules_flow_control("no"),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_sensor_ids_rules_flow_control("1"),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_sensor_ids_rules_flow_control("0"),AVConfigParserErrors.ALL_OK)
del config
示例12: fetch_server_ip
def fetch_server_ip(raw_ip):
if raw_ip == '0.0.0.0/0':
# Fetch ip address of the server from ossim_setup.conf
# when client uses DHCP
config_parser = AVOssimSetupConfigHandler()
server_ip = config_parser.get_general_admin_ip()
if args.debug:
print "Client uses DHCP: {}".format(raw_ip)
print "Fetched ip from ossim_conf: {}".format(server_ip)
return server_ip
command = "ip route get {} | head -1 | tr -s ' '".format(raw_ip)
server_ip = subprocess.check_output(
command, shell=True, stderr=subprocess.STDOUT
)
if args.debug:
print "command: ", command
print "command output: ", server_ip.strip()
return server_ip.strip().split()[-1]
示例13: test_check_general_ntp_server
def test_check_general_ntp_server(self):
invaliduser = "AAAA" * 100
config = AVOssimSetupConfigHandler(TEST_FILES_PATH+"ossim_setup1.conf")
self.assertNotEqual(config.check_general_ntp_server(""),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_general_ntp_server(None),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_general_ntp_server(invaliduser),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_general_ntp_server("invaliduser otro"),AVConfigParserErrors.ALL_OK)
self.assertEqual(config.check_general_ntp_server("1132"),AVConfigParserErrors.ALL_OK)
self.assertEqual(config.check_general_ntp_server("un-user"),AVConfigParserErrors.ALL_OK)
self.assertEqual(config.check_general_ntp_server("113.23.22.2"),AVConfigParserErrors.ALL_OK)
del config
示例14: test_check_snmp_snmptrap
def test_check_snmp_snmptrap(self):
config = AVOssimSetupConfigHandler(TEST_FILES_PATH+"ossim_setup1.conf")
self.assertNotEqual(config.check_snmp_snmptrap("value"),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_snmp_snmptrap(""),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_snmp_snmptrap(None),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_snmp_snmptrap("[email protected]"),AVConfigParserErrors.ALL_OK)
self.assertEqual(config.check_snmp_snmptrap("yes"),AVConfigParserErrors.ALL_OK)
self.assertEqual(config.check_snmp_snmptrap("no"),AVConfigParserErrors.ALL_OK)
del config
示例15: test_check_server_alienvault_ip_reputation
def test_check_server_alienvault_ip_reputation(self):
config = AVOssimSetupConfigHandler(TEST_FILES_PATH+"ossim_setup1.conf")
self.assertNotEqual(config.check_server_alienvault_ip_reputation(""),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_server_alienvault_ip_reputation(None),AVConfigParserErrors.ALL_OK)
self.assertNotEqual(config.check_server_alienvault_ip_reputation("nnn"),AVConfigParserErrors.ALL_OK)
self.assertEqual(config.check_server_alienvault_ip_reputation("enabled"),AVConfigParserErrors.ALL_OK)
self.assertEqual(config.check_server_alienvault_ip_reputation("disabled"),AVConfigParserErrors.ALL_OK)
del config