312 def run(self, test: WorkflowTest) -> bool:
313 self.logger.info("---------------------------------------------------------------------------------------")
314 self.logger.info(f"Running {test.ID} AOD content check")
315
316 file_name = "myAOD.pool.root"
317 output_name = f"{test.ID}_AOD_content.txt"
318
319 validation_file = test.validation_path / file_name
320 validation_output = test.validation_path / output_name
321 validation_command = f"acmd.py chk-file {validation_file} | awk '/---/{{flag=1;next}}/===/{{flag=0}}flag' | awk '{{print $10}}' | LC_ALL=C sort | uniq > {validation_output}"
322
323 output_val, error_val = subprocess.Popen(["/bin/bash", "-c", validation_command], stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
324 output_val, error_val = output_val.decode("utf-8"), error_val.decode("utf-8")
325 if error_val:
326 self.logger.
error(f
"Something went wrong with retrieving the content for test {test.ID}:")
327 self.logger.
error(error_val)
328
329
330 if self.setup.validation_only:
331
332 reference_path = test.validation_path
333 reference_output_name = f"{test.ID}_AOD_content.ref"
334 reference_output = reference_path / reference_output_name
335 subprocess.Popen(["/bin/bash", "-c", f"cd {reference_path}; get_files -remove -data {reference_output_name}"], stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
336 if not reference_output.exists():
337 self.logger.info(f"No reference file '{reference_output_name}' to compare the content with.")
338 return True
339 else:
340 reference_path = test.reference_path
341 reference_output = reference_path / output_name
342 reference_file = reference_path / file_name
343
344 reference_command = f"acmd.py chk-file {reference_file} | awk '/---/{{flag=1;next}}/===/{{flag=0}}flag' | awk '{{print $10}}' | LC_ALL=C sort | uniq > {reference_output}"
345 subprocess.Popen(["/bin/bash", "-c", reference_command], stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
346
347
348 extra_diff_args = ""
349 if test.type == WorkflowType.MCReco or test.type == WorkflowType.MCPileUpReco:
350 extra_diff_args = "-I '^HLT' -I '^LVL1' -I '^L1'"
351
352
353 diff_output, diff_error = subprocess.Popen(["/bin/bash", "-c", f"diff {extra_diff_args} {reference_output} {validation_output}"], stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
354 diff_output, diff_error = diff_output.decode("utf-8"), diff_error.decode("utf-8")
355
356 result = False
357 if not diff_output and not diff_error:
358 self.logger.info("Passed!\n")
359 result = True
360 else:
361
362 if self.setup.disable_release_setup:
363 self.logger.
print(f
"ATLAS-CI-ADD-LABEL: {test.run.value}-{test.type.value}-output-changed")
364 self.logger.
print(
"")
365
366 self.logger.
error(f
"Your change modifies the output in test {test.ID}.")
367 self.logger.
error(
"Please make sure this has been discussed in the correct meeting (RIG or Simulation) meeting and approved by the relevant experts.")
368 if self.setup.validation_only:
369 self.logger.
error(f
"The output '{output_name}' (>) differs from the reference '{reference_output_name}' (<):")
370 else:
371 self.logger.
error(f
"The output '{validation_output}' (>) differs from the reference '{reference_output}' (<):")
372 if diff_output:
373 self.logger.
print(
"")
374 self.logger.
print(diff_output)
375 if diff_error:
376 self.logger.
print(diff_error)
377 self.logger.info("-----------------------------------------------------\n")
378
379 return result
380
381
void print(char *figname, TCanvas *c1)
int run(int argc, char *argv[])