def test_report_format(self):
     ct = get_entity_type_from_string('report_format')
     self.assertEqual(ct, EntityType.REPORT_FORMAT)
 def test_nvt(self):
     ct = get_entity_type_from_string('nvt')
     self.assertEqual(ct, EntityType.NVT)
 def test_ovaldef(self):
     ct = get_entity_type_from_string('ovaldef')
     self.assertEqual(ct, EntityType.OVALDEF)
 def test_group(self):
     ct = get_entity_type_from_string('group')
     self.assertEqual(ct, EntityType.GROUP)
 def test_info(self):
     ct = get_entity_type_from_string('info')
     self.assertEqual(ct, EntityType.INFO)
 def test_cpe(self):
     ct = get_entity_type_from_string('cpe')
     self.assertEqual(ct, EntityType.CPE)
 def test_dfn_cert_adv(self):
     ct = get_entity_type_from_string('dfn_cert_adv')
     self.assertEqual(ct, EntityType.DFN_CERT_ADV)
 def test_target(self):
     ct = get_entity_type_from_string('target')
     self.assertEqual(ct, EntityType.TARGET)
 def test_task(self):
     ct = get_entity_type_from_string('task')
     self.assertEqual(ct, EntityType.TASK)
示例#10
0
 def test_scanner(self):
     ct = get_entity_type_from_string('scanner')
     self.assertEqual(ct, EntityType.SCANNER)
示例#11
0
 def test_schedule(self):
     ct = get_entity_type_from_string('schedule')
     self.assertEqual(ct, EntityType.SCHEDULE)
示例#12
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)
示例#13
0
 def test_role(self):
     ct = get_entity_type_from_string('role')
     self.assertEqual(ct, EntityType.ROLE)
示例#14
0
 def test_result(self):
     ct = get_entity_type_from_string('result')
     self.assertEqual(ct, EntityType.RESULT)
示例#15
0
 def test_asset(self):
     ct = get_entity_type_from_string('asset')
     self.assertEqual(ct, EntityType.ASSET)
示例#16
0
 def test_user(self):
     ct = get_entity_type_from_string('user')
     self.assertEqual(ct, EntityType.USER)
示例#17
0
 def test_cert_bund_adv(self):
     ct = get_entity_type_from_string('cert_bund_adv')
     self.assertEqual(ct, EntityType.CERT_BUND_ADV)
示例#18
0
 def test_ticket(self):
     ct = get_entity_type_from_string('ticket')
     self.assertEqual(ct, EntityType.TICKET)
示例#19
0
 def test_credential(self):
     ct = get_entity_type_from_string('credential')
     self.assertEqual(ct, EntityType.CREDENTIAL)
示例#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)
示例#21
0
 def test_filter(self):
     ct = get_entity_type_from_string('filter')
     self.assertEqual(ct, EntityType.FILTER)
示例#22
0
 def test_invalid(self):
     with self.assertRaises(InvalidArgument):
         get_entity_type_from_string('foo')
示例#23
0
 def test_host(self):
     ct = get_entity_type_from_string('host')
     self.assertEqual(ct, EntityType.HOST)
示例#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)
示例#25
0
 def test_note(self):
     ct = get_entity_type_from_string('note')
     self.assertEqual(ct, EntityType.NOTE)
示例#26
0
 def test_agent(self):
     ct = get_entity_type_from_string('agent')
     self.assertEqual(ct, EntityType.AGENT)
示例#27
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)
示例#28
0
 def test_alert(self):
     ct = get_entity_type_from_string('alert')
     self.assertEqual(ct, EntityType.ALERT)
示例#29
0
 def test_override(self):
     ct = get_entity_type_from_string('override')
     self.assertEqual(ct, EntityType.OVERRIDE)
示例#30
0
 def test_port_list(self):
     ct = get_entity_type_from_string('port_list')
     self.assertEqual(ct, EntityType.PORT_LIST)