Exemple #1
0
 def test_filter_type_note(self):
     ft = get_filter_type_from_string('note')
     self.assertEqual(ft, FilterType.NOTE)
Exemple #2
0
 def test_filter_type_override(self):
     ft = get_filter_type_from_string('override')
     self.assertEqual(ft, FilterType.OVERRIDE)
Exemple #3
0
 def test_filter_type_scan_config(self):
     ft = get_filter_type_from_string('scan_config')
     self.assertEqual(ft, FilterType.SCAN_CONFIG)
Exemple #4
0
 def test_filter_type_host(self):
     ft = get_filter_type_from_string('host')
     self.assertEqual(ft, FilterType.HOST)
Exemple #5
0
 def test_filter_type_role(self):
     ft = get_filter_type_from_string('role')
     self.assertEqual(ft, FilterType.ROLE)
Exemple #6
0
 def test_filter_type_all_secinfo(self):
     ft = get_filter_type_from_string('all_secinfo')
     self.assertEqual(ft, FilterType.ALL_SECINFO)
Exemple #7
0
 def test_filter_type_alert(self):
     ft = get_filter_type_from_string('alert')
     self.assertEqual(ft, FilterType.ALERT)
Exemple #8
0
 def test_filter_type_report_format(self):
     ft = get_filter_type_from_string('report_format')
     self.assertEqual(ft, FilterType.REPORT_FORMAT)
Exemple #9
0
    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)
Exemple #10
0
 def test_filter_type_agent(self):
     ft = get_filter_type_from_string('agent')
     self.assertEqual(ft, FilterType.AGENT)
Exemple #11
0
 def test_invalid_filter_type(self):
     with self.assertRaises(InvalidArgument):
         get_filter_type_from_string('foo')
Exemple #12
0
 def test_filter_type_operating_system(self):
     ft = get_filter_type_from_string('operating_system')
     self.assertEqual(ft, FilterType.OPERATING_SYSTEM)
Exemple #13
0
 def test_filter_type_os(self):
     ft = get_filter_type_from_string('os')
     self.assertEqual(ft, FilterType.OPERATING_SYSTEM)
Exemple #14
0
 def test_filter_type_permission(self):
     ft = get_filter_type_from_string('permission')
     self.assertEqual(ft, FilterType.PERMISSION)
Exemple #15
0
 def test_filter_type_asset(self):
     ft = get_filter_type_from_string('asset')
     self.assertEqual(ft, FilterType.ASSET)
Exemple #16
0
 def test_filter_type_port_list(self):
     ft = get_filter_type_from_string('port_list')
     self.assertEqual(ft, FilterType.PORT_LIST)
Exemple #17
0
 def test_filter_type_credential(self):
     ft = get_filter_type_from_string('credential')
     self.assertEqual(ft, FilterType.CREDENTIAL)
Exemple #18
0
 def test_filter_type_result(self):
     ft = get_filter_type_from_string('result')
     self.assertEqual(ft, FilterType.RESULT)
Exemple #19
0
 def test_filter_type_filter(self):
     ft = get_filter_type_from_string('filter')
     self.assertEqual(ft, FilterType.FILTER)
Exemple #20
0
 def test_filter_type_schedule(self):
     ft = get_filter_type_from_string('schedule')
     self.assertEqual(ft, FilterType.SCHEDULE)
Exemple #21
0
 def test_filter_type_group(self):
     ft = get_filter_type_from_string('group')
     self.assertEqual(ft, FilterType.GROUP)
Exemple #22
0
 def test_filter_type_tag(self):
     ft = get_filter_type_from_string('tag')
     self.assertEqual(ft, FilterType.TAG)
Exemple #23
0
 def test_filter_type_target(self):
     ft = get_filter_type_from_string('target')
     self.assertEqual(ft, FilterType.TARGET)