test_NestedNamedQueries.py 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. import unittest
  2. import sqlite3
  3. import pyparsing
  4. import ID2TLib.TestLibrary as Lib
  5. import Core.Controller as Ctrl
  6. controller = Ctrl.Controller(pcap_file_path=Lib.test_pcap, do_extra_tests=False, non_verbose=True)
  7. controller.load_pcap_statistics(flag_write_file=False, flag_recalculate_stats=True, flag_print_statistics=False)
  8. class UnitTestNestedNamedQueries(unittest.TestCase):
  9. def test_nested_query(self):
  10. self.assertEqual(controller.statistics.process_db_query('macaddress(ipaddress in most_used(ipaddress))'),
  11. '08:00:27:a3:83:43')
  12. self.assertEqual(controller.statistics.process_db_query('macaddress(ipaddress in least_used(ipaddress))'),
  13. '52:54:00:12:35:02')
  14. self.assertEqual(controller.statistics.process_db_query('ipaddress(macaddress in least_used(macaddress))'),
  15. '10.0.2.15')
  16. self.assertEqual(controller.statistics.process_db_query('ipaddress(macaddress in 08:00:27:a3:83:43)'),
  17. '10.0.2.15')
  18. self.assertEqual(controller.statistics.process_db_query('ipaddress(macaddress in [08:00:27:a3:83:43])'),
  19. '10.0.2.15')
  20. self.assertEqual(controller.statistics.process_db_query('ipaddress(macaddress in most_used(macaddress))'),
  21. ['104.83.103.45', '13.107.21.200', '131.253.61.100', '172.217.23.142', '172.217.23.174',
  22. '192.168.33.254', '204.79.197.200', '23.51.123.27', '35.161.3.50', '52.11.17.245',
  23. '52.34.37.177', '52.39.210.199', '52.41.250.141', '52.85.173.182', '54.149.74.139',
  24. '54.187.98.195', '54.192.44.108', '54.192.44.177', '72.247.178.113', '72.247.178.67',
  25. '93.184.220.29'])
  26. # semantically incorrect query
  27. with self.assertRaises(sqlite3.OperationalError):
  28. controller.statistics.process_db_query('ipaddress(ipaddress in most_used(macaddress))')
  29. # syntactically incorrect query
  30. with self.assertRaises(pyparsing.ParseException):
  31. controller.statistics.process_db_query('ipaddress(macaddress in '
  32. 'most_used(macaddress(ipaddress in least_used(ipaddress))))')