예제 #1
0
 def test_sourcefire_connector(self):
     ct = get_alert_method_from_string('sourcefire Connector')
     self.assertEqual(ct, AlertMethod.SOURCEFIRE_CONNECTOR)
예제 #2
0
 def test_verinice_connector(self):
     ct = get_alert_method_from_string('verinice Connector')
     self.assertEqual(ct, AlertMethod.VERINICE_CONNECTOR)
예제 #3
0
 def test_http_get(self):
     ct = get_alert_method_from_string('HTTP Get')
     self.assertEqual(ct, AlertMethod.HTTP_GET)
예제 #4
0
 def test_start_task(self):
     ct = get_alert_method_from_string('Start Task')
     self.assertEqual(ct, AlertMethod.START_TASK)
예제 #5
0
 def test_snmp(self):
     ct = get_alert_method_from_string('snmp')
     self.assertEqual(ct, AlertMethod.SNMP)
예제 #6
0
 def test_syslog(self):
     ct = get_alert_method_from_string('syslog')
     self.assertEqual(ct, AlertMethod.SYSLOG)
예제 #7
0
 def test_send(self):
     ct = get_alert_method_from_string('send')
     self.assertEqual(ct, AlertMethod.SEND)
예제 #8
0
 def test_smb(self):
     ct = get_alert_method_from_string('smb')
     self.assertEqual(ct, AlertMethod.SMB)
예제 #9
0
 def test_email(self):
     ct = get_alert_method_from_string('email')
     self.assertEqual(ct, AlertMethod.EMAIL)
예제 #10
0
 def test_none_or_empty(self):
     ct = get_alert_method_from_string(None)
     self.assertIsNone(ct)
     ct = get_alert_method_from_string('')
     self.assertIsNone(ct)
예제 #11
0
 def test_invalid(self):
     with self.assertRaises(InvalidArgument):
         get_alert_method_from_string('foo')
예제 #12
0
 def test_alemba_vfire(self):
     ct = get_alert_method_from_string('Alemba vFire')
     self.assertEqual(ct, AlertMethod.ALEMBA_VFIRE)
예제 #13
0
 def test_tippingpoint_sms(self):
     ct = get_alert_method_from_string('Tippingpoint SMS')
     self.assertEqual(ct, AlertMethod.TIPPINGPOINT)