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