def test_filter_type_host(self):
     ft = get_filter_type_from_string('host')
     self.assertEqual(ft, FilterType.HOST)
 def test_filter_type_target(self):
     ft = get_filter_type_from_string('target')
     self.assertEqual(ft, FilterType.TARGET)
 def test_filter_type_group(self):
     ft = get_filter_type_from_string('group')
     self.assertEqual(ft, FilterType.GROUP)
 def test_filter_type_role(self):
     ft = get_filter_type_from_string('role')
     self.assertEqual(ft, FilterType.ROLE)
 def test_filter_type_all_secinfo(self):
     ft = get_filter_type_from_string('all_secinfo')
     self.assertEqual(ft, FilterType.ALL_SECINFO)
 def test_filter_type_permission(self):
     ft = get_filter_type_from_string('permission')
     self.assertEqual(ft, FilterType.PERMISSION)
 def test_filter_type_report_format(self):
     ft = get_filter_type_from_string('report_format')
     self.assertEqual(ft, FilterType.REPORT_FORMAT)
 def test_filter_type_os(self):
     ft = get_filter_type_from_string('os')
     self.assertEqual(ft, FilterType.OPERATING_SYSTEM)
 def test_invalid_filter_type(self):
     with self.assertRaises(InvalidArgument):
         get_filter_type_from_string('foo')
 def test_filter_type_vulnerability(self):
     ft = get_filter_type_from_string('vulnerability')
     self.assertEqual(ft, FilterType.VULNERABILITY)
 def test_filter_type_scan_config(self):
     ft = get_filter_type_from_string('scan_config')
     self.assertEqual(ft, FilterType.SCAN_CONFIG)
 def test_filter_type_operating_system(self):
     ft = get_filter_type_from_string('operating_system')
     self.assertEqual(ft, FilterType.OPERATING_SYSTEM)
 def test_filter_type_tls_certificate(self):
     ft = get_filter_type_from_string('tls_certificate')
     self.assertEqual(ft, FilterType.TLS_CERTIFICATE)
 def test_filter_type_ticket(self):
     ft = get_filter_type_from_string('ticket')
     self.assertEqual(ft, FilterType.TICKET)
 def test_filter_type_note(self):
     ft = get_filter_type_from_string('note')
     self.assertEqual(ft, FilterType.NOTE)
    def test_non_or_empty_filter_type(self):
        ft = get_filter_type_from_string(None)
        self.assertIsNone(ft)

        ft = get_filter_type_from_string('')
        self.assertIsNone(ft)
 def test_filter_type_override(self):
     ft = get_filter_type_from_string('override')
     self.assertEqual(ft, FilterType.OVERRIDE)
 def test_filter_type_alert(self):
     ft = get_filter_type_from_string('alert')
     self.assertEqual(ft, FilterType.ALERT)
 def test_filter_type_port_list(self):
     ft = get_filter_type_from_string('port_list')
     self.assertEqual(ft, FilterType.PORT_LIST)
 def test_filter_type_asset(self):
     ft = get_filter_type_from_string('asset')
     self.assertEqual(ft, FilterType.ASSET)
 def test_filter_type_result(self):
     ft = get_filter_type_from_string('result')
     self.assertEqual(ft, FilterType.RESULT)
 def test_filter_type_credential(self):
     ft = get_filter_type_from_string('credential')
     self.assertEqual(ft, FilterType.CREDENTIAL)
 def test_filter_type_schedule(self):
     ft = get_filter_type_from_string('schedule')
     self.assertEqual(ft, FilterType.SCHEDULE)
 def test_filter_type_filter(self):
     ft = get_filter_type_from_string('filter')
     self.assertEqual(ft, FilterType.FILTER)
 def test_filter_type_task(self):
     ft = get_filter_type_from_string('task')
     self.assertEqual(ft, FilterType.TASK)
示例#26
0
 def test_filter_type_agent(self):
     with self.assertRaises(InvalidArgument):
         get_filter_type_from_string('agent')