test_pcap_comparator.py 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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(1, 6),
  17. "hidden_mark": _random_bool,
  18. "interval.selection.end": lambda: random.randint(100, 1501), # values are taken from default trace
  19. "interval.selection.start": lambda: random.randint(0, 1401),
  20. "interval.selection.strategy": lambda: random.choice(["optimal", "custom", "random"]),
  21. "ip.reuse.external": lambda: random.uniform(0, 1),
  22. "ip.reuse.local": lambda: random.uniform(0, 1),
  23. "ip.reuse.total": lambda: random.uniform(0, 1),
  24. "multiport": _random_bool,
  25. "nat.present": _random_bool,
  26. "packet.padding": lambda: random.randint(0, 100),
  27. "packets.limit": lambda: random.randint(50, 250),
  28. "ttl.from.caida": _random_bool,
  29. }
  30. class PcapComparison(unittest.TestCase):
  31. ID2T_PATH = ".."
  32. ID2T_LOCATION = ID2T_PATH + "/" + "id2t"
  33. NUM_ITERATIONS_PER_PARAMS = 3
  34. NUM_ITERATIONS = 4
  35. PCAP_ENVIRONMENT_VALUE = "ID2T_SRC_PCAP"
  36. SEED_ENVIRONMENT_VALUE = "ID2T_SEED"
  37. DEFAULT_PCAP = "resources/test/Botnet/telnet-raw.pcap"
  38. DEFAULT_SEED = "42"
  39. def __init__(self, *args, **kwargs):
  40. unittest.TestCase.__init__(self, *args, **kwargs)
  41. # params to call id2t with, as a list[list[str]]
  42. # do a round of testing for each list[str] we get
  43. # if none generate some params itself
  44. self.id2t_params = None
  45. def set_id2t_params(self, params: "list[list[str]]"):
  46. self.id2t_params = params
  47. def setUp(self):
  48. self.executions = []
  49. def test_determinism(self):
  50. input_pcap = os.environ.get(self.PCAP_ENVIRONMENT_VALUE, self.DEFAULT_PCAP)
  51. seed = os.environ.get(self.SEED_ENVIRONMENT_VALUE, self.DEFAULT_SEED)
  52. if self.id2t_params is None:
  53. self.id2t_params = self.random_id2t_params()
  54. for params in self.id2t_params:
  55. self.do_test_round(input_pcap, seed, params)
  56. def do_test_round(self, input_pcap, seed, additional_params):
  57. generated_pcap = None
  58. for i in range(self.NUM_ITERATIONS_PER_PARAMS):
  59. execution = ID2TExecution(input_pcap, seed=seed)
  60. self.print_warning("The command that gets executed is:", execution.get_run_command(additional_params))
  61. self.executions.append(execution)
  62. try:
  63. execution.run(additional_params)
  64. except AssertionError as e:
  65. self.print_warning(execution.get_output())
  66. self.assertEqual(execution.get_return_code(), 0, "For some reason id2t completed with an error")
  67. raise e
  68. self.print_warning(execution.get_output())
  69. pcap = execution.get_pcap_filename()
  70. if generated_pcap is not None:
  71. if "No packets were injected." in pcap or "No packets were injected." in generated_pcap:
  72. self.assertEqual(pcap, generated_pcap)
  73. else:
  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)