def test_filter_type_permission(self):
     ft = get_filter_type_from_string('permission')
     self.assertEqual(ft, FilterType.PERMISSION)
 def test_filter_type_port_list(self):
     ft = get_filter_type_from_string('port_list')
     self.assertEqual(ft, FilterType.PORT_LIST)
Example #3
0
 def test_filter_type_user(self):
     ft = get_filter_type_from_string('user')
     self.assertEqual(ft, FilterType.USER)
 def test_filter_type_os(self):
     ft = get_filter_type_from_string('os')
     self.assertEqual(ft, FilterType.OPERATING_SYSTEM)
 def test_filter_type_all_secinfo(self):
     ft = get_filter_type_from_string('all_secinfo')
     self.assertEqual(ft, FilterType.ALL_SECINFO)
Example #6
0
 def test_filter_type_target(self):
     ft = get_filter_type_from_string('target')
     self.assertEqual(ft, FilterType.TARGET)
 def test_filter_type_asset(self):
     ft = get_filter_type_from_string('asset')
     self.assertEqual(ft, FilterType.ASSET)
 def test_filter_type_role(self):
     ft = get_filter_type_from_string('role')
     self.assertEqual(ft, FilterType.ROLE)
 def test_filter_type_agent(self):
     ft = get_filter_type_from_string('agent')
     self.assertEqual(ft, FilterType.AGENT)
 def test_filter_type_alert(self):
     ft = get_filter_type_from_string('alert')
     self.assertEqual(ft, FilterType.ALERT)
    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_invalid_filter_type(self):
     with self.assertRaises(InvalidArgument):
         get_filter_type_from_string('foo')
 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_report_format(self):
     ft = get_filter_type_from_string('report_format')
     self.assertEqual(ft, FilterType.REPORT_FORMAT)
 def test_filter_type_credential(self):
     ft = get_filter_type_from_string('credential')
     self.assertEqual(ft, FilterType.CREDENTIAL)
 def test_filter_type_result(self):
     ft = get_filter_type_from_string('result')
     self.assertEqual(ft, FilterType.RESULT)
 def test_filter_type_group(self):
     ft = get_filter_type_from_string('group')
     self.assertEqual(ft, FilterType.GROUP)
 def test_filter_type_schedule(self):
     ft = get_filter_type_from_string('schedule')
     self.assertEqual(ft, FilterType.SCHEDULE)
 def test_filter_type_host(self):
     ft = get_filter_type_from_string('host')
     self.assertEqual(ft, FilterType.HOST)
Example #20
0
 def test_filter_type_task(self):
     ft = get_filter_type_from_string('task')
     self.assertEqual(ft, FilterType.TASK)
 def test_filter_type_note(self):
     ft = get_filter_type_from_string('note')
     self.assertEqual(ft, FilterType.NOTE)
Example #22
0
 def test_filter_type_ticket(self):
     ft = get_filter_type_from_string('ticket')
     self.assertEqual(ft, FilterType.TICKET)
 def test_filter_type_override(self):
     ft = get_filter_type_from_string('override')
     self.assertEqual(ft, FilterType.OVERRIDE)
Example #24
0
 def test_filter_type_vuln(self):
     ft = get_filter_type_from_string('vuln')
     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)