zzz / tests /unit /resolver /test_patch_apply.py
ar08's picture
Upload 1040 files
246d201 verified
from openhands.resolver.patching.apply import apply_diff
from openhands.resolver.patching.patch import diffobj, parse_diff
def test_patch_apply_with_empty_lines():
# The original file has no indentation and uses \n line endings
original_content = '# PR Viewer\n\nThis React application allows you to view open pull requests from GitHub repositories in a GitHub organization. By default, it uses the All-Hands-AI organization.\n\n## Setup'
# The patch has spaces at the start of each line and uses \n line endings
patch = """diff --git a/README.md b/README.md
index b760a53..5071727 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,3 @@
# PR Viewer
-This React application allows you to view open pull requests from GitHub repositories in a GitHub organization. By default, it uses the All-Hands-AI organization.
+This React application was created by Graham Neubig and OpenHands. It allows you to view open pull requests from GitHub repositories in a GitHub organization. By default, it uses the All-Hands-AI organization."""
print('Original content lines:')
for i, line in enumerate(original_content.splitlines(), 1):
print(f'{i}: {repr(line)}')
print('\nPatch lines:')
for i, line in enumerate(patch.splitlines(), 1):
print(f'{i}: {repr(line)}')
changes = parse_diff(patch)
print('\nParsed changes:')
for change in changes:
print(
f'Change(old={change.old}, new={change.new}, line={repr(change.line)}, hunk={change.hunk})'
)
diff = diffobj(header=None, changes=changes, text=patch)
# Apply the patch
result = apply_diff(diff, original_content)
# The patch should be applied successfully
expected_result = [
'# PR Viewer',
'',
'This React application was created by Graham Neubig and OpenHands. It allows you to view open pull requests from GitHub repositories in a GitHub organization. By default, it uses the All-Hands-AI organization.',
'',
'## Setup',
]
assert result == expected_result