TestLibrary.py 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. import hashlib
  2. import os
  3. import random as rnd
  4. import ID2TLib.Utility as Util
  5. test_resource_dir = Util.TEST_DIR
  6. test_pcap = Util.TEST_DIR + "reference_1998.pcap"
  7. test_pcap_ips = ["10.0.2.15", "52.85.173.182"]
  8. test_pcap_empty = []
  9. """
  10. helper functions for ID2TAttackTest
  11. """
  12. def get_sha256(file):
  13. """
  14. Generates a sha256 checksum from file
  15. :param file: absolute path to file
  16. :return: sha256 checksum
  17. """
  18. sha = hashlib.sha256()
  19. with open(file, 'rb') as f:
  20. while True:
  21. data = f.read(0x100000)
  22. if not data:
  23. break
  24. sha.update(data)
  25. f.close()
  26. return sha.hexdigest()
  27. def clean_up(controller):
  28. """
  29. Removes the output files from a given controller
  30. :param controller: controller which created output files
  31. """
  32. os.remove(controller.pcap_dest_path)
  33. os.remove(controller.label_manager.label_file_path)
  34. def rename_test_result_files(controller, caller_function: str, attack_sub_dir=False, test_sub_dir=False):
  35. """
  36. :param controller: controller which created output files
  37. :param caller_function: the name of the function which called the generic test
  38. :param attack_sub_dir: create sub-directory for each attack-class if True
  39. :param test_sub_dir: create sub-directory for each test-function/case if True
  40. """
  41. tmp_path_tuple = controller.pcap_dest_path.rpartition("_")
  42. result_pcap_path = tmp_path_tuple[0] + tmp_path_tuple[1] + caller_function + "_" + tmp_path_tuple[2]
  43. tmp_label_path_tuple = controller.label_manager.label_file_path.rpartition("_")
  44. tmp_path_tuple = tmp_label_path_tuple[0].rpartition("_")
  45. result_labels_path = tmp_path_tuple[0] + tmp_path_tuple[1] + caller_function + "_" + tmp_path_tuple[2]
  46. result_labels_path = result_labels_path + tmp_label_path_tuple[1] + tmp_label_path_tuple[2]
  47. if attack_sub_dir:
  48. caller_attack = caller_function.replace("test_", "").partition("_")[0]
  49. tmp_dir_tuple = result_pcap_path.rpartition("/")
  50. result_dir = tmp_dir_tuple[0] + tmp_dir_tuple[1] + caller_attack + "/"
  51. result_pcap_path = result_dir + tmp_dir_tuple[2]
  52. os.makedirs(result_dir, exist_ok=True)
  53. tmp_dir_tuple = result_labels_path.rpartition("/")
  54. result_labels_path = result_dir + tmp_dir_tuple[2]
  55. if test_sub_dir:
  56. tmp_dir_tuple = result_pcap_path.rpartition("/")
  57. result_dir = tmp_dir_tuple[0] + tmp_dir_tuple[1] + (caller_function.replace("test_", "")) + "/"
  58. result_pcap_path = result_dir + tmp_dir_tuple[2]
  59. os.makedirs(result_dir, exist_ok=True)
  60. tmp_dir_tuple = result_labels_path.rpartition("/")
  61. result_labels_path = result_dir + tmp_dir_tuple[2]
  62. os.rename(controller.pcap_dest_path, result_pcap_path)
  63. controller.pcap_dest_path = result_pcap_path
  64. os.rename(controller.label_manager.label_file_path, result_labels_path)
  65. controller.label_manager.label_file_path = result_labels_path
  66. """
  67. function patches for unittests
  68. FYI: the parameters below, which are not used are needed to mock the mentioned function/method correctly
  69. """
  70. def get_bytes(count, ignore):
  71. """
  72. unittest patch for get_rnd_bytes (ID2TLib.Utility.py)
  73. :param count: count of requested bytes
  74. :param ignore: <not used>
  75. :return: a count of As
  76. """
  77. return b'A' * count
  78. def get_x86_nop(count, side_effect_free, char_filter):
  79. """
  80. unittest patch for get_rnd_x86_nop (ID2TLib.Utility.py)
  81. :param count: count of requested nops
  82. :param side_effect_free: <not used>
  83. :param char_filter: <not used>
  84. :return: a count of \x90
  85. """
  86. return b'\x90' * count
  87. def get_attacker_config(ip_source_list, ipAddress: str):
  88. """
  89. unittest patch for get_attacker_config (ID2TLib.Utility.py)
  90. :param ip_source_list: List of source IPs
  91. :param ipAddress: The IP address of the attacker
  92. :return: A tuple consisting of (port, ttlValue)
  93. """
  94. next_port = rnd.randint(0, 2 ** 16 - 1)
  95. ttl = rnd.randint(1, 255)
  96. return next_port, ttl
  97. def write_attack_pcap(self, packets: list, append_flag: bool = False, destination_path: str = None):
  98. """
  99. temporal efficiency test patch for write_attack_pcap (Attack.BaseAttack.py)
  100. :return: The path to a dummy pcap file.
  101. """
  102. # TODO: find another solution - copying influences efficiency tests
  103. os.system("cp " + test_pcap + " " + test_resource_dir + "dummy.pcap")
  104. return test_resource_dir + 'dummy.pcap'