Exemplo n.º 1
0
 def test_allinfo(self):
     ct = get_info_type_from_string('allinfo')
     self.assertEqual(ct, InfoType.ALLINFO)
Exemplo n.º 2
0
 def test_nvt(self):
     ct = get_info_type_from_string('nvt')
     self.assertEqual(ct, InfoType.NVT)
Exemplo n.º 3
0
 def test_ovaldef(self):
     ct = get_info_type_from_string('ovaldef')
     self.assertEqual(ct, InfoType.OVALDEF)
Exemplo n.º 4
0
 def test_dfn_cert_adv(self):
     ct = get_info_type_from_string('dfn_cert_adv')
     self.assertEqual(ct, InfoType.DFN_CERT_ADV)
Exemplo n.º 5
0
 def test_cve(self):
     ct = get_info_type_from_string('cve')
     self.assertEqual(ct, InfoType.CVE)
Exemplo n.º 6
0
 def test_cert_bund_adv(self):
     ct = get_info_type_from_string('cert_bund_adv')
     self.assertEqual(ct, InfoType.CERT_BUND_ADV)
Exemplo n.º 7
0
 def test_none_or_empty(self):
     ct = get_info_type_from_string(None)
     self.assertIsNone(ct)
     ct = get_info_type_from_string('')
     self.assertIsNone(ct)
Exemplo n.º 8
0
 def test_invalid(self):
     with self.assertRaises(InvalidArgument):
         get_info_type_from_string('foo')