Skip to content

Commit 6fa7974

Browse files
committed
patchtest2/tests: add diff parsing test
There's lots of room to improve here, but this provides a basic means of trying to parse a diff and reporting which commit failed that test. Signed-off-by: Trevor Gamblin <[email protected]>
1 parent b8eab23 commit 6fa7974

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

src/patchtest2/mbox.py

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ def __next__(self):
4848

4949
class Patch:
5050
def __init__(self, data):
51+
self.data = data
5152
self.author = data["From"]
5253
self.to = data["To"]
5354
self.cc = data["Cc"]

src/patchtest2/tests/core.py

+17
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import patchtest2.patterns as patterns
22
import pyparsing
33
import re
4+
import unidiff
45

56

67
class PatchtestResult:
@@ -39,6 +40,10 @@ def __init__(self, target_repo, series):
3940
"has_commit_message",
4041
self._results(test_mbox_has_commit_message),
4142
),
43+
(
44+
"diff_parse",
45+
self._results(test_mbox_unidiff_parse_error),
46+
),
4247
]
4348
)
4449

@@ -123,3 +128,15 @@ def test_mbox_has_commit_message(target):
123128
result = "FAIL"
124129

125130
return PatchtestResult(target.subject, test_name, result, reason)
131+
132+
def test_mbox_unidiff_parse_error(target):
133+
test_name = "test_mbox_unidiff_parse_error"
134+
result = "PASS"
135+
reason = f"Patch \"{target.shortlog}\" contains malformed diff lines."
136+
137+
try:
138+
diff = unidiff.PatchSet.from_string(target.data.as_string())
139+
except unidiff.UnidiffParseError as upe:
140+
result = "FAIL"
141+
142+
return PatchtestResult(target.subject, test_name, result, reason)

0 commit comments

Comments
 (0)