test_pcap_comparator.py 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. #!/usr/bin/python3
  2. import sys, os
  3. import subprocess, shlex
  4. import time
  5. import unittest
  6. import random
  7. from Test.TestUtil import PcapComparator, ID2TExecution
  8. # this dictionary holds the generators (functions) for the parameters
  9. # that will be passed to the MembershipMgmtCommAttack
  10. # items need the parameter-name as key and a function that will be called
  11. # without parameters and returns a valid value for that parameter as value
  12. # WARNING: parameters will be passed via command line, make sure your values
  13. # get converted to string correctly
  14. _random_bool = lambda: random.random() < 0.5
  15. ID2T_PARAMETER_GENERATORS = {
  16. "bots.count": lambda: random.randint(3, 6),
  17. # "file.csv":,
  18. # "file.xml":,
  19. "hidden_mark": _random_bool,
  20. # "interval.selection.end":,
  21. # "interval.selection.start":,
  22. # "interval.selection.strategy":,
  23. # "ip.reuse.external":,
  24. # "ip.reuse.local":,
  25. # "ip.reuse.total":,
  26. "multiport": _random_bool,
  27. "nat.present": _random_bool,
  28. "packet.padding": lambda: random.randint(0, 100),
  29. "packets.limit": lambda: random.randint(50, 150),
  30. "packets.per-second": lambda: random.randint(1000, 2000) / 100,
  31. "ttl.from.caida": _random_bool,
  32. }
  33. class PcapComparison(unittest.TestCase):
  34. ID2T_PATH = ".."
  35. ID2T_LOCATION = ID2T_PATH + "/" + "id2t"
  36. NUM_ITERATIONS_PER_PARAMS = 3
  37. NUM_ITERATIONS = 5
  38. PCAP_ENVIRONMENT_VALUE = "ID2T_SRC_PCAP"
  39. SEED_ENVIRONMENT_VALUE = "ID2T_SEED"
  40. DEFAULT_PCAP = "resources/telnet-raw.pcap"
  41. DEFAULT_SEED = "42"
  42. def __init__(self, *args, **kwargs):
  43. unittest.TestCase.__init__(self, *args, **kwargs)
  44. # params to call id2t with, as a list[list[str]]
  45. # do a round of testing for each list[str] we get
  46. # if none generate some params itself
  47. self.id2t_params = None
  48. def set_id2t_params(self, params: "list[list[str]]"):
  49. self.id2t_params = params
  50. def setUp(self):
  51. self.executions = []
  52. def test_determinism(self):
  53. input_pcap = os.environ.get(self.PCAP_ENVIRONMENT_VALUE, self.DEFAULT_PCAP)
  54. seed = os.environ.get(self.SEED_ENVIRONMENT_VALUE, self.DEFAULT_SEED)
  55. if self.id2t_params is None:
  56. self.id2t_params = self.random_id2t_params()
  57. for params in self.id2t_params:
  58. self.do_test_round(input_pcap, seed, params)
  59. def do_test_round(self, input_pcap, seed, additional_params):
  60. generated_pcap = None
  61. for i in range(self.NUM_ITERATIONS_PER_PARAMS):
  62. execution = ID2TExecution(input_pcap, seed=seed)
  63. self.print_warning("The command that gets executed is:", execution.get_run_command(additional_params))
  64. self.executions.append(execution)
  65. try:
  66. execution.run(additional_params)
  67. except AssertionError as e:
  68. self.print_warning(execution.get_output())
  69. self.assertEqual(execution.get_return_code(), 0, "For some reason id2t completed with an error")
  70. raise e
  71. self.print_warning(execution.get_output())
  72. pcap = execution.get_pcap_filename()
  73. if generated_pcap is not None:
  74. try:
  75. self.compare_pcaps(generated_pcap, pcap)
  76. except AssertionError as e:
  77. execution.keep_file(pcap)
  78. self.executions[-2].keep_file(generated_pcap)
  79. raise e
  80. else:
  81. generated_pcap = pcap
  82. self.print_warning()
  83. time.sleep(1) # let some time pass between calls because files are based on the time
  84. def tearDown(self):
  85. self.print_warning("Cleaning up files generated by the test-calls...")
  86. for id2t_run in self.executions:
  87. for file in id2t_run.get_files_for_deletion():
  88. self.print_warning(file)
  89. id2t_run.cleanup()
  90. self.print_warning("Done")
  91. kept = [file for file in id2t_run.get_kept_files() for id2t_run in self.executions]
  92. self.print_warning("The following files have been kept: " + ", ".join(kept))
  93. def compare_pcaps(self, one: str, other: str):
  94. PcapComparator().compare_files(self.ID2T_PATH + "/" + one, self.ID2T_PATH + "/" + other)
  95. def print_warning(self, *text):
  96. print(*text, file=sys.stderr)
  97. def random_id2t_params(self):
  98. """
  99. :return: A list of parameter-lists for id2t, useful if you want several
  100. iterations
  101. """
  102. param_list = []
  103. for i in range(self.NUM_ITERATIONS):
  104. param_list.append(self.random_id2t_param_set())
  105. return param_list
  106. def random_id2t_param_set(self):
  107. """
  108. Create a list of parameters to call the membersmgmtcommattack with
  109. :return: a list of command-line parameters
  110. """
  111. param = lambda key, val: "%s=%s" % (str(key), str(val))
  112. number_of_keys = min(random.randint(2, 5), len(ID2T_PARAMETER_GENERATORS))
  113. keys = random.sample(list(ID2T_PARAMETER_GENERATORS), number_of_keys)
  114. params = []
  115. for key in keys:
  116. generator = ID2T_PARAMETER_GENERATORS[key]
  117. params.append(param(key, generator()))
  118. return params
  119. if __name__ == "__main__":
  120. import sys
  121. # parameters for this program are interpreted as id2t-parameters
  122. id2t_args = sys.argv[1:]
  123. comparison = PcapComparison("test_determinism")
  124. if id2t_args: comparison.set_id2t_params([id2t_args])
  125. suite = unittest.TestSuite()
  126. suite.addTest(comparison)
  127. unittest.TextTestRunner().run(suite)