Ejemplo n.º 1
0
 def test_result(self):
     ct = get_entity_type_from_string('result')
     self.assertEqual(ct, EntityType.RESULT)
Ejemplo n.º 2
0
 def test_note(self):
     ct = get_entity_type_from_string('note')
     self.assertEqual(ct, EntityType.NOTE)
Ejemplo n.º 3
0
    def test_operating_system(self):
        ct = get_entity_type_from_string('os')
        self.assertEqual(ct, EntityType.OPERATING_SYSTEM)

        ct = get_entity_type_from_string('operating_system')
        self.assertEqual(ct, EntityType.OPERATING_SYSTEM)
Ejemplo n.º 4
0
 def test_filter(self):
     ct = get_entity_type_from_string('filter')
     self.assertEqual(ct, EntityType.FILTER)
Ejemplo n.º 5
0
 def test_host(self):
     ct = get_entity_type_from_string('host')
     self.assertEqual(ct, EntityType.HOST)
Ejemplo n.º 6
0
 def test_cert_bund_adv(self):
     ct = get_entity_type_from_string('cert_bund_adv')
     self.assertEqual(ct, EntityType.CERT_BUND_ADV)
Ejemplo n.º 7
0
 def test_credential(self):
     ct = get_entity_type_from_string('credential')
     self.assertEqual(ct, EntityType.CREDENTIAL)
Ejemplo n.º 8
0
 def test_task(self):
     ct = get_entity_type_from_string('task')
     self.assertEqual(ct, EntityType.TASK)
Ejemplo n.º 9
0
 def test_ticket(self):
     ct = get_entity_type_from_string('ticket')
     self.assertEqual(ct, EntityType.TICKET)
Ejemplo n.º 10
0
 def test_schedule(self):
     ct = get_entity_type_from_string('schedule')
     self.assertEqual(ct, EntityType.SCHEDULE)
Ejemplo n.º 11
0
 def test_target(self):
     ct = get_entity_type_from_string('target')
     self.assertEqual(ct, EntityType.TARGET)
Ejemplo n.º 12
0
 def test_scanner(self):
     ct = get_entity_type_from_string('scanner')
     self.assertEqual(ct, EntityType.SCANNER)
Ejemplo n.º 13
0
    def test_scan_config(self):
        ct = get_entity_type_from_string('config')
        self.assertEqual(ct, EntityType.SCAN_CONFIG)

        ct = get_entity_type_from_string('scan_config')
        self.assertEqual(ct, EntityType.SCAN_CONFIG)
Ejemplo n.º 14
0
 def test_role(self):
     ct = get_entity_type_from_string('role')
     self.assertEqual(ct, EntityType.ROLE)
Ejemplo n.º 15
0
 def test_asset(self):
     ct = get_entity_type_from_string('asset')
     self.assertEqual(ct, EntityType.ASSET)
Ejemplo n.º 16
0
 def test_tls_certificate(self):
     ft = get_entity_type_from_string('tls_certificate')
     self.assertEqual(ft, EntityType.TLS_CERTIFICATE)
Ejemplo n.º 17
0
 def test_audit(self):
     ct = get_entity_type_from_string('audit')
     self.assertEqual(ct, EntityType.AUDIT)
Ejemplo n.º 18
0
 def test_user(self):
     ct = get_entity_type_from_string('user')
     self.assertEqual(ct, EntityType.USER)
Ejemplo n.º 19
0
 def test_cpe(self):
     ct = get_entity_type_from_string('cpe')
     self.assertEqual(ct, EntityType.CPE)
Ejemplo n.º 20
0
    def test_vulnerability(self):
        ct = get_entity_type_from_string('vuln')
        self.assertEqual(ct, EntityType.VULNERABILITY)

        ct = get_entity_type_from_string('vulnerability')
        self.assertEqual(ct, EntityType.VULNERABILITY)
Ejemplo n.º 21
0
 def test_dfn_cert_adv(self):
     ct = get_entity_type_from_string('dfn_cert_adv')
     self.assertEqual(ct, EntityType.DFN_CERT_ADV)
Ejemplo n.º 22
0
 def test_invalid(self):
     with self.assertRaises(InvalidArgument):
         get_entity_type_from_string('foo')
Ejemplo n.º 23
0
 def test_group(self):
     ct = get_entity_type_from_string('group')
     self.assertEqual(ct, EntityType.GROUP)
Ejemplo n.º 24
0
 def test_none_or_empty(self):
     ct = get_entity_type_from_string(None)
     self.assertIsNone(ct)
     ct = get_entity_type_from_string('')
     self.assertIsNone(ct)
Ejemplo n.º 25
0
 def test_info(self):
     ct = get_entity_type_from_string('info')
     self.assertEqual(ct, EntityType.INFO)
Ejemplo n.º 26
0
 def test_agent(self):
     with self.assertRaises(InvalidArgument):
         get_entity_type_from_string('agent')
Ejemplo n.º 27
0
 def test_nvt(self):
     ct = get_entity_type_from_string('nvt')
     self.assertEqual(ct, EntityType.NVT)
Ejemplo n.º 28
0
 def test_alert(self):
     ct = get_entity_type_from_string('alert')
     self.assertEqual(ct, EntityType.ALERT)
Ejemplo n.º 29
0
 def test_ovaldef(self):
     ct = get_entity_type_from_string('ovaldef')
     self.assertEqual(ct, EntityType.OVALDEF)
Ejemplo n.º 30
0
 def test_report_format(self):
     ct = get_entity_type_from_string('report_format')
     self.assertEqual(ct, EntityType.REPORT_FORMAT)