forked from ASSERT-KTH/repairllama
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanual_patch_analysis_merge.py
65 lines (55 loc) · 2.26 KB
/
manual_patch_analysis_merge.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import json
import tqdm
import fire
import copy
def merge_analysis(andre_file: str, sen_file: str, output_file: str):
# Read all bugs from André's file
andre_bugs = []
with open(andre_file) as f:
for line in f.readlines():
bug = json.loads(line)
andre_bugs.append(bug)
# Read all bugs from Sen's file
sen_bugs = []
with open(sen_file) as f:
for line in f.readlines():
loaded_bug = json.loads(line)
sen_bugs.append(loaded_bug)
# Assert that both files have the same number of bugs
assert len(andre_bugs) == len(
sen_bugs
), f"The number of bugs in both files is different: {len(andre_bugs)} vs {len(sen_bugs)}"
# Assert that the bugs are in the same order
for i in range(len(andre_bugs)):
assert (
andre_bugs[i]["identifier"] == sen_bugs[i]["identifier"]
), f"The bugs are not in the same order at index {i}: {andre_bugs[i]['identifier']} vs {sen_bugs[i]['identifier']}"
# Merge both files
bugs = []
for andre_bug, sen_bug in tqdm.tqdm(zip(andre_bugs, sen_bugs)):
bug = copy.deepcopy(andre_bug)
# Skip if the bug has any AST or exact matched patch
if bug["evaluation"] is None or any(
x["exact_match"] or x["ast_match"] for x in bug["evaluation"]
):
bugs.append(bug)
continue
# Merge results
for i, evaluation in enumerate(bug["evaluation"]):
# Check that test results are the same
if "semantical_match" in evaluation:
if (
andre_bug["evaluation"][i]["semantical_match"]
!= sen_bug["evaluation"][i]["semantical_match"]
):
print(
f"Test results are different for bug {andre_bug['identifier']} patch {i}: {andre_bug['evaluation'][i]['semantical_match']} vs {sen_bug['evaluation'][i]['semantical_match']}"
)
bug["evaluation"][i]["semantical_match"] = "Disagree"
bugs.append(bug)
# Write the bugs to the output file
for bug in bugs:
with open(output_file, "a+") as f:
f.write(json.dumps(bug) + "\n")
if __name__ == "__main__":
fire.Fire(merge_analysis)