test_internalQueries.py 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. import unittest
  2. import random
  3. import ID2TLib.TestLibrary as Lib
  4. import Core.Controller as Ctrl
  5. controller = Ctrl.Controller(pcap_file_path=Lib.test_pcap, do_extra_tests=False, non_verbose=True)
  6. controller.load_pcap_statistics(flag_write_file=False, flag_recalculate_stats=True, flag_print_statistics=False,
  7. intervals=[], delete=True)
  8. ipAddresses = ['10.0.2.15', '104.83.103.45', '13.107.21.200', '131.253.61.100', '172.217.23.142', '172.217.23.174',
  9. '192.168.33.254', '204.79.197.200', '23.51.123.27', '35.161.3.50', '52.11.17.245', '52.34.37.177',
  10. '52.39.210.199', '52.41.250.141', '52.85.173.182', '54.149.74.139', '54.187.98.195', '54.192.44.108',
  11. '54.192.44.177', '72.247.178.113', '72.247.178.67', '93.184.220.29']
  12. class UnitTestInternalQueries(unittest.TestCase):
  13. # FILE METAINFORMATION TESTS
  14. def test_get_file_information(self):
  15. self.assertEqual(controller.statistics.get_file_information(),
  16. [('Pcap file path', Lib.test_pcap),
  17. ('Total packet count', 1998, 'packets'),
  18. ("Recognized packets", 1988, "packets"),
  19. ("Unrecognized packets", 10, "PDUs"), ("% Recognized packets", 99.49949949949949, "%"),
  20. ("% Unrecognized packets", 0.5005005005005005, "%"),
  21. ("Last unknown PDU", '1970-01-01 00:07:39.604899'),
  22. ('Capture duration', '384.454345703125', 'seconds'),
  23. ('Capture start', '\t1970-01-01 00:01:45.647675'),
  24. ('Capture end', '\t1970-01-01 00:08:10.102034')])
  25. def test_get_packet_count(self):
  26. self.assertEqual(controller.statistics.get_packet_count(), 1998)
  27. def test_get_capture_duration(self):
  28. self.assertEqual(controller.statistics.get_capture_duration(), '384.454345703125')
  29. def test_get_pcap_timestamp_start(self):
  30. self.assertEqual(controller.statistics.get_pcap_timestamp_start(), '1970-01-01 00:01:45.647675')
  31. def test_get_pcap_timestamp_end(self):
  32. self.assertEqual(controller.statistics.get_pcap_timestamp_end(), '1970-01-01 00:08:10.102034')
  33. # FIXME: This seems to be the only testcase where float values differ slightly between macOS and Linux
  34. def test_get_general_file_statistics(self):
  35. file_stats = controller.statistics.get_general_file_statistics()
  36. self.assertEqual(file_stats[0], ('Avg. packet rate', 5.196976184844971, 'packets/sec'))
  37. self.assertEqual(file_stats[1], ('Avg. packet size', 0.0, 'kbytes'))
  38. self.assertEqual(file_stats[2], ('Avg. packets sent', 90.0, 'packets'))
  39. self.assertEqual(file_stats[3][0], 'Avg. bandwidth in')
  40. self.assertAlmostEqual(file_stats[3][1], 0.6302894353866577, places=5)
  41. self.assertEqual(file_stats[3][2], 'kbit/s')
  42. self.assertEqual(file_stats[4][0], 'Avg. bandwidth out')
  43. self.assertAlmostEqual(file_stats[4][1], 0.6302894353866577, places=5)
  44. # INTERNAL QUERY TESTS
  45. def test_get_ip_address_count(self):
  46. self.assertEqual(controller.statistics.get_ip_address_count(), 22)
  47. def test_get_ip_addresses(self):
  48. self.assertEqual(controller.statistics.get_ip_addresses(), ipAddresses)
  49. def test_get_most_used_ip_address(self):
  50. self.assertEqual(controller.statistics.get_most_used_ip_address(), '10.0.2.15')
  51. def test_get_random_ip_address(self):
  52. random.seed(5)
  53. self.assertEqual(controller.statistics.get_random_ip_address(), '72.247.178.113')
  54. def test_get_random_ip_address_count_2(self):
  55. random.seed(5)
  56. self.assertEqual(controller.statistics.get_random_ip_address(2), ['72.247.178.113', '23.51.123.27'])
  57. def test_get_ip_address_from_mac(self):
  58. self.assertEqual(controller.statistics.get_ip_address_from_mac('08:00:27:a3:83:43'), '10.0.2.15')
  59. def test_get_mac_address_1(self):
  60. self.assertEqual(controller.statistics.get_mac_address(ip_address='72.247.178.67'), '52:54:00:12:35:02')
  61. def test_get_mac_address_2(self):
  62. self.assertEqual(controller.statistics.get_mac_address(ip_address='10.0.2.15'), '08:00:27:a3:83:43')
  63. def test_get_most_used_mss(self):
  64. self.assertEqual(controller.statistics.get_most_used_mss(ip_address='10.0.2.15'), 1460)
  65. def test_get_most_used_ttl(self):
  66. self.assertEqual(controller.statistics.get_most_used_ttl(ip_address='10.0.2.15'), 128)
  67. def test_get_pps_sent_1(self):
  68. self.assertEqual(controller.statistics.get_pps_sent(ip_address='72.247.178.67'), 0)
  69. def test_get_pps_sent_2(self):
  70. self.assertEqual(controller.statistics.get_pps_sent(ip_address='10.0.2.15'), 2)
  71. def test_get_pps_sent_wrong_input(self):
  72. # wrong input parameter
  73. with self.assertRaises(TypeError):
  74. self.assertEqual(controller.statistics.get_pps_sent('08:00:27:a3:83:43'), 32)
  75. def test_get_pps_received_1(self):
  76. self.assertEqual(controller.statistics.get_pps_received(ip_address='72.247.178.67'), 0)
  77. def test_get_pps_received_2(self):
  78. self.assertEqual(controller.statistics.get_pps_received(ip_address='10.0.2.15'), 3)
  79. def test_get_ttl_distribution_1(self):
  80. self.assertEqual(controller.statistics.get_ttl_distribution(ip_address='72.247.178.67'), {64: 5})
  81. def test_get_ttl_distribution_2(self):
  82. self.assertEqual(controller.statistics.get_ttl_distribution(ip_address='10.0.2.15'), {128: 817})
  83. def test_get_mss_distribution_1(self):
  84. self.assertEqual(controller.statistics.get_mss_distribution(ip_address='72.247.178.67'), {1460: 1})
  85. def test_get_mss_distribution_2(self):
  86. self.assertEqual(controller.statistics.get_mss_distribution(ip_address='10.0.2.15'), {1460: 36})
  87. def test_get_win_distribution_1(self):
  88. self.assertEqual(controller.statistics.get_win_distribution(ip_address='72.247.178.67'), {65535: 5})
  89. def test_get_tos_distribution_1(self):
  90. self.assertEqual(controller.statistics.get_tos_distribution(ip_address='72.247.178.67'), {0: 5})
  91. def test_get_tos_distribution_2(self):
  92. self.assertEqual(controller.statistics.get_tos_distribution(ip_address='10.0.2.15'), {0: 817})
  93. # INTERNAL HELPER-FUNCTION TESTS
  94. def test_calculate_standard_deviation(self):
  95. self.assertEqual(controller.statistics.calculate_standard_deviation([1, 1, 2, 3, 5, 8, 13, 21]),
  96. 6.609652033201143)
  97. def test_calculate_entropy(self):
  98. self.assertEqual(controller.statistics.calculate_entropy([1, 1, 2, 3, 5, 8, 13, 21]), 2.371389165297016)
  99. def test_calculate_entropy_normalized(self):
  100. self.assertEqual(controller.statistics.calculate_entropy([1, 1, 2, 3, 5, 8, 13, 21], normalized=True),
  101. (2.371389165297016, 0.7904630550990053))
  102. def test_calculate_complement_packet_rates_1(self):
  103. cpr = controller.statistics.calculate_complement_packet_rates(0)[0:9]
  104. self.assertEqual(cpr, [(186.418564, 0), (186.418824, 0), (186.419346, 0), (186.445361, 0),
  105. (186.46954399999998, 0), (186.476234, 0), (186.477304, 0), (186.48606999999998, 0),
  106. (186.486761, 0)])
  107. def test_calculate_complement_packet_rates_2(self):
  108. cpr = controller.statistics.calculate_complement_packet_rates(42)[0:9]
  109. self.assertEqual(cpr, [(186.418564, 41), (186.418824, 42), (186.419346, 42), (186.445361, 42),
  110. (186.46954399999998, 42), (186.476234, 42), (186.477304, 42),
  111. (186.48606999999998, 42),
  112. (186.486761, 42)])