mirror of
https://github.com/All-Hands-AI/OpenHands.git
synced 2026-01-10 07:18:10 -05:00
* suport reading multimodal files * move file * update dependency * remove useless pip install * add comments * update the comment * Apply suggestions from code review * Add unit test for TXTReader * pre-commit hook corrupted utf16 test txt * Revert unnecessary dependency upgrades * feat: import some readers for agentskill * add dependencies * Integrate some multimodal tools * add shell pip dependency * update dependencies * update dependencies * update print window * remove __main__ * locally import cv2 * add c library for opencv * update lock file * update prompt * remove unuseful file * add some unittest * add unittest & remove excel-related parser * rollback poetry lock * remove markdown * remove requests * optimize parse_video output * Fix integration tests for CodeActAgent * remove test_parse_image unittest * Add a TODO to containers/sandbox/Dockerfile * update dependencies * remove pyproject.toml useless package * change document via openai key * Fix prompts after removing some actions --------- Co-authored-by: Mingchen Zhuge <mczhuge@gmail.com> Co-authored-by: yufansong <yufan@risingwave-labs.com> Co-authored-by: Boxuan Li <liboxuan@connect.hku.hk> Co-authored-by: Mingchen Zhuge <64179323+mczhuge@users.noreply.github.com> Co-authored-by: Xingyao Wang <xingyao6@illinois.edu>
715 lines
22 KiB
Python
715 lines
22 KiB
Python
import contextlib
|
|
import io
|
|
|
|
import docx
|
|
import pytest
|
|
import sys
|
|
|
|
from opendevin.runtime.plugins.agent_skills.agentskills import (
|
|
create_file,
|
|
edit_file,
|
|
find_file,
|
|
goto_line,
|
|
open_file,
|
|
scroll_down,
|
|
scroll_up,
|
|
search_dir,
|
|
search_file,
|
|
parse_docx,
|
|
parse_latex,
|
|
parse_pdf,
|
|
parse_pptx,
|
|
parse_image
|
|
)
|
|
|
|
|
|
def test_open_file_unexist_path():
|
|
with pytest.raises(FileNotFoundError):
|
|
open_file('/unexist/path/a.txt')
|
|
|
|
|
|
def test_open_file(tmp_path):
|
|
temp_file_path = tmp_path / 'a.txt'
|
|
temp_file_path.write_text('Line 1\nLine 2\nLine 3\nLine 4\nLine 5')
|
|
|
|
with io.StringIO() as buf:
|
|
with contextlib.redirect_stdout(buf):
|
|
open_file(str(temp_file_path))
|
|
result = buf.getvalue()
|
|
assert result is not None
|
|
expected = (
|
|
f'[File: {temp_file_path} (5 lines total)]\n'
|
|
'1|Line 1\n'
|
|
'2|Line 2\n'
|
|
'3|Line 3\n'
|
|
'4|Line 4\n'
|
|
'5|Line 5\n'
|
|
)
|
|
assert result.split('\n') == expected.split('\n')
|
|
|
|
|
|
def test_open_file_with_indentation(tmp_path):
|
|
temp_file_path = tmp_path / 'a.txt'
|
|
temp_file_path.write_text('Line 1\n Line 2\nLine 3\nLine 4\nLine 5')
|
|
|
|
with io.StringIO() as buf:
|
|
with contextlib.redirect_stdout(buf):
|
|
open_file(str(temp_file_path))
|
|
result = buf.getvalue()
|
|
assert result is not None
|
|
expected = (
|
|
f'[File: {temp_file_path} (5 lines total)]\n'
|
|
'1|Line 1\n'
|
|
'2| Line 2\n'
|
|
'3|Line 3\n'
|
|
'4|Line 4\n'
|
|
'5|Line 5\n'
|
|
)
|
|
assert result.split('\n') == expected.split('\n')
|
|
|
|
|
|
def test_open_file_long(tmp_path):
|
|
temp_file_path = tmp_path / 'a.txt'
|
|
content = '\n'.join([f'Line {i}' for i in range(1, 1001)])
|
|
temp_file_path.write_text(content)
|
|
|
|
with io.StringIO() as buf:
|
|
with contextlib.redirect_stdout(buf):
|
|
open_file(str(temp_file_path))
|
|
result = buf.getvalue()
|
|
assert result is not None
|
|
expected = f'[File: {temp_file_path} (1000 lines total)]\n'
|
|
for i in range(1, 52):
|
|
expected += f'{i}|Line {i}\n'
|
|
assert result.split('\n') == expected.split('\n')
|
|
|
|
|
|
def test_open_file_long_with_lineno(tmp_path):
|
|
temp_file_path = tmp_path / 'a.txt'
|
|
content = '\n'.join([f'Line {i}' for i in range(1, 1001)])
|
|
temp_file_path.write_text(content)
|
|
|
|
with io.StringIO() as buf:
|
|
with contextlib.redirect_stdout(buf):
|
|
open_file(str(temp_file_path), 100)
|
|
result = buf.getvalue()
|
|
assert result is not None
|
|
expected = f'[File: {temp_file_path} (1000 lines total)]\n'
|
|
for i in range(51, 151):
|
|
expected += f'{i}|Line {i}\n'
|
|
assert result.split('\n') == expected.split('\n')
|
|
|
|
|
|
def test_create_file_unexist_path():
|
|
with pytest.raises(FileNotFoundError):
|
|
create_file('/unexist/path/a.txt')
|
|
|
|
|
|
def test_create_file(tmp_path):
|
|
temp_file_path = tmp_path / 'a.txt'
|
|
with io.StringIO() as buf:
|
|
with contextlib.redirect_stdout(buf):
|
|
create_file(str(temp_file_path))
|
|
result = buf.getvalue()
|
|
|
|
expected = (
|
|
f'[File: {temp_file_path} (1 lines total)]\n'
|
|
'1|\n'
|
|
f'[File {temp_file_path} created.]\n'
|
|
)
|
|
assert result.split('\n') == expected.split('\n')
|
|
|
|
|
|
def test_goto_line(tmp_path):
|
|
temp_file_path = tmp_path / 'a.txt'
|
|
content = '\n'.join([f'Line {i}' for i in range(1, 1001)])
|
|
temp_file_path.write_text(content)
|
|
|
|
with io.StringIO() as buf:
|
|
with contextlib.redirect_stdout(buf):
|
|
open_file(str(temp_file_path))
|
|
result = buf.getvalue()
|
|
assert result is not None
|
|
|
|
expected = f'[File: {temp_file_path} (1000 lines total)]\n'
|
|
for i in range(1, 52):
|
|
expected += f'{i}|Line {i}\n'
|
|
assert result.split('\n') == expected.split('\n')
|
|
|
|
with io.StringIO() as buf:
|
|
with contextlib.redirect_stdout(buf):
|
|
goto_line(100)
|
|
result = buf.getvalue()
|
|
assert result is not None
|
|
|
|
expected = f'[File: {temp_file_path} (1000 lines total)]\n'
|
|
for i in range(51, 151):
|
|
expected += f'{i}|Line {i}\n'
|
|
assert result.split('\n') == expected.split('\n')
|
|
|
|
|
|
def test_goto_line_negative(tmp_path):
|
|
temp_file_path = tmp_path / 'a.txt'
|
|
content = '\n'.join([f'Line {i}' for i in range(1, 5)])
|
|
temp_file_path.write_text(content)
|
|
|
|
with io.StringIO() as buf:
|
|
with contextlib.redirect_stdout(buf):
|
|
open_file(str(temp_file_path))
|
|
with pytest.raises(ValueError):
|
|
goto_line(-1)
|
|
|
|
|
|
def test_goto_line_out_of_bound(tmp_path):
|
|
temp_file_path = tmp_path / 'a.txt'
|
|
content = '\n'.join([f'Line {i}' for i in range(1, 5)])
|
|
temp_file_path.write_text(content)
|
|
|
|
with io.StringIO() as buf:
|
|
with contextlib.redirect_stdout(buf):
|
|
open_file(str(temp_file_path))
|
|
with pytest.raises(ValueError):
|
|
goto_line(100)
|
|
|
|
|
|
def test_scroll_down(tmp_path):
|
|
temp_file_path = tmp_path / 'a.txt'
|
|
content = '\n'.join([f'Line {i}' for i in range(1, 1001)])
|
|
temp_file_path.write_text(content)
|
|
|
|
with io.StringIO() as buf:
|
|
with contextlib.redirect_stdout(buf):
|
|
open_file(str(temp_file_path))
|
|
result = buf.getvalue()
|
|
assert result is not None
|
|
|
|
expected = f'[File: {temp_file_path} (1000 lines total)]\n'
|
|
for i in range(1, 52):
|
|
expected += f'{i}|Line {i}\n'
|
|
assert result.split('\n') == expected.split('\n')
|
|
|
|
with io.StringIO() as buf:
|
|
with contextlib.redirect_stdout(buf):
|
|
scroll_down()
|
|
result = buf.getvalue()
|
|
assert result is not None
|
|
|
|
expected = f'[File: {temp_file_path} (1000 lines total)]\n'
|
|
for i in range(52, 152):
|
|
expected += f'{i}|Line {i}\n'
|
|
assert result.split('\n') == expected.split('\n')
|
|
|
|
|
|
def test_scroll_up(tmp_path):
|
|
temp_file_path = tmp_path / 'a.txt'
|
|
content = '\n'.join([f'Line {i}' for i in range(1, 1001)])
|
|
temp_file_path.write_text(content)
|
|
|
|
with io.StringIO() as buf:
|
|
with contextlib.redirect_stdout(buf):
|
|
open_file(str(temp_file_path), 300)
|
|
result = buf.getvalue()
|
|
assert result is not None
|
|
|
|
expected = f'[File: {temp_file_path} (1000 lines total)]\n'
|
|
for i in range(251, 351):
|
|
expected += f'{i}|Line {i}\n'
|
|
assert result.split('\n') == expected.split('\n')
|
|
|
|
with io.StringIO() as buf:
|
|
with contextlib.redirect_stdout(buf):
|
|
scroll_up()
|
|
result = buf.getvalue()
|
|
assert result is not None
|
|
|
|
expected = f'[File: {temp_file_path} (1000 lines total)]\n'
|
|
for i in range(151, 251):
|
|
expected += f'{i}|Line {i}\n'
|
|
assert result.split('\n') == expected.split('\n')
|
|
|
|
|
|
def test_scroll_down_edge(tmp_path):
|
|
temp_file_path = tmp_path / 'a.txt'
|
|
content = '\n'.join([f'Line {i}' for i in range(1, 10)])
|
|
temp_file_path.write_text(content)
|
|
|
|
with io.StringIO() as buf:
|
|
with contextlib.redirect_stdout(buf):
|
|
open_file(str(temp_file_path))
|
|
result = buf.getvalue()
|
|
assert result is not None
|
|
|
|
expected = f'[File: {temp_file_path} (9 lines total)]\n'
|
|
for i in range(1, 10):
|
|
expected += f'{i}|Line {i}\n'
|
|
|
|
with io.StringIO() as buf:
|
|
with contextlib.redirect_stdout(buf):
|
|
scroll_down()
|
|
result = buf.getvalue()
|
|
assert result is not None
|
|
|
|
# expected should be unchanged
|
|
assert result.split('\n') == expected.split('\n')
|
|
|
|
|
|
def test_edit_file(tmp_path):
|
|
temp_file_path = tmp_path / 'a.txt'
|
|
content = 'Line 1\nLine 2\nLine 3\nLine 4\nLine 5'
|
|
temp_file_path.write_text(content)
|
|
|
|
open_file(str(temp_file_path))
|
|
|
|
with io.StringIO() as buf:
|
|
with contextlib.redirect_stdout(buf):
|
|
edit_file(start=1, end=3, content='REPLACE TEXT')
|
|
result = buf.getvalue()
|
|
expected = (
|
|
f'[File: {temp_file_path} (3 lines total after edit)]\n'
|
|
'1|REPLACE TEXT\n'
|
|
'2|Line 4\n'
|
|
'3|Line 5\n'
|
|
'[File updated. Please review the changes and make sure they are correct (correct indentation, no duplicate lines, etc). Edit the file again if necessary.]\n'
|
|
)
|
|
assert result.split('\n') == expected.split('\n')
|
|
|
|
with open(temp_file_path, 'r') as file:
|
|
lines = file.readlines()
|
|
assert len(lines) == 3
|
|
assert lines[0].rstrip() == 'REPLACE TEXT'
|
|
assert lines[1].rstrip() == 'Line 4'
|
|
assert lines[2].rstrip() == 'Line 5'
|
|
|
|
|
|
def test_edit_file_from_scratch(tmp_path):
|
|
temp_file_path = tmp_path / 'a.txt'
|
|
create_file(str(temp_file_path))
|
|
open_file(str(temp_file_path))
|
|
|
|
with io.StringIO() as buf:
|
|
with contextlib.redirect_stdout(buf):
|
|
edit_file(start=1, end=1, content='REPLACE TEXT')
|
|
result = buf.getvalue()
|
|
expected = (
|
|
f'[File: {temp_file_path} (1 lines total after edit)]\n'
|
|
'1|REPLACE TEXT\n'
|
|
'[File updated. Please review the changes and make sure they are correct (correct indentation, no duplicate lines, etc). Edit the file again if necessary.]\n'
|
|
)
|
|
assert result.split('\n') == expected.split('\n')
|
|
|
|
with open(temp_file_path, 'r') as file:
|
|
lines = file.readlines()
|
|
assert len(lines) == 1
|
|
assert lines[0].rstrip() == 'REPLACE TEXT'
|
|
|
|
|
|
def test_edit_file_from_scratch_multiline(tmp_path):
|
|
temp_file_path = tmp_path / 'a.txt'
|
|
create_file(str(temp_file_path))
|
|
open_file(temp_file_path)
|
|
|
|
with io.StringIO() as buf:
|
|
with contextlib.redirect_stdout(buf):
|
|
edit_file(
|
|
start=1,
|
|
end=1,
|
|
content='REPLACE TEXT1\nREPLACE TEXT2\nREPLACE TEXT3',
|
|
)
|
|
result = buf.getvalue()
|
|
expected = (
|
|
f'[File: {temp_file_path} (3 lines total after edit)]\n'
|
|
'1|REPLACE TEXT1\n'
|
|
'2|REPLACE TEXT2\n'
|
|
'3|REPLACE TEXT3\n'
|
|
'[File updated. Please review the changes and make sure they are correct (correct indentation, no duplicate lines, etc). Edit the file again if necessary.]\n'
|
|
)
|
|
assert result.split('\n') == expected.split('\n')
|
|
|
|
with open(temp_file_path, 'r') as file:
|
|
lines = file.readlines()
|
|
assert len(lines) == 3
|
|
assert lines[0].rstrip() == 'REPLACE TEXT1'
|
|
assert lines[1].rstrip() == 'REPLACE TEXT2'
|
|
assert lines[2].rstrip() == 'REPLACE TEXT3'
|
|
|
|
|
|
def test_edit_file_not_opened():
|
|
with pytest.raises(FileNotFoundError):
|
|
edit_file(start=1, end=3, content='REPLACE TEXT')
|
|
|
|
|
|
def test_search_dir(tmp_path):
|
|
# create files with the search term "bingo"
|
|
for i in range(1, 101):
|
|
temp_file_path = tmp_path / f'a{i}.txt'
|
|
with open(temp_file_path, 'w') as file:
|
|
file.write('Line 1\nLine 2\nLine 3\nLine 4\nLine 5\n')
|
|
if i == 50:
|
|
file.write('bingo')
|
|
|
|
# test
|
|
with io.StringIO() as buf:
|
|
with contextlib.redirect_stdout(buf):
|
|
search_dir('bingo', str(tmp_path))
|
|
result = buf.getvalue()
|
|
assert result is not None
|
|
|
|
expected = (
|
|
f'[Found 1 matches for "bingo" in {tmp_path}]\n'
|
|
f'{tmp_path}/a50.txt (Line 6): bingo\n'
|
|
f'[End of matches for "bingo" in {tmp_path}]\n'
|
|
)
|
|
assert result.split('\n') == expected.split('\n')
|
|
|
|
|
|
def test_search_dir_not_exist_term(tmp_path):
|
|
# create files with the search term "bingo"
|
|
for i in range(1, 101):
|
|
temp_file_path = tmp_path / f'a{i}.txt'
|
|
with open(temp_file_path, 'w') as file:
|
|
file.write('Line 1\nLine 2\nLine 3\nLine 4\nLine 5\n')
|
|
|
|
# test
|
|
with io.StringIO() as buf:
|
|
with contextlib.redirect_stdout(buf):
|
|
search_dir('non-exist', str(tmp_path))
|
|
result = buf.getvalue()
|
|
assert result is not None
|
|
|
|
expected = f'No matches found for "non-exist" in {tmp_path}\n'
|
|
assert result.split('\n') == expected.split('\n')
|
|
|
|
|
|
def test_search_dir_too_much_match(tmp_path):
|
|
# create files with the search term "Line 5"
|
|
for i in range(1, 1000):
|
|
temp_file_path = tmp_path / f'a{i}.txt'
|
|
with open(temp_file_path, 'w') as file:
|
|
file.write('Line 1\nLine 2\nLine 3\nLine 4\nLine 5\n')
|
|
|
|
with io.StringIO() as buf:
|
|
with contextlib.redirect_stdout(buf):
|
|
search_dir('Line 5', str(tmp_path))
|
|
result = buf.getvalue()
|
|
assert result is not None
|
|
|
|
expected = f'More than 999 files matched for "Line 5" in {tmp_path}. Please narrow your search.\n'
|
|
assert result.split('\n') == expected.split('\n')
|
|
|
|
|
|
def test_search_dir_cwd(tmp_path, monkeypatch):
|
|
# Using pytest's monkeypatch to change directory without affecting other tests
|
|
monkeypatch.chdir(tmp_path)
|
|
# create files with the search term "bingo"
|
|
for i in range(1, 101):
|
|
temp_file_path = tmp_path / f'a{i}.txt'
|
|
with open(temp_file_path, 'w') as file:
|
|
file.write('Line 1\nLine 2\nLine 3\nLine 4\nLine 5\n')
|
|
if i == 50:
|
|
file.write('bingo')
|
|
|
|
with io.StringIO() as buf:
|
|
with contextlib.redirect_stdout(buf):
|
|
search_dir('bingo')
|
|
result = buf.getvalue()
|
|
assert result is not None
|
|
|
|
expected = (
|
|
'[Found 1 matches for "bingo" in ./]\n'
|
|
'./a50.txt (Line 6): bingo\n'
|
|
'[End of matches for "bingo" in ./]\n'
|
|
)
|
|
assert result.split('\n') == expected.split('\n')
|
|
|
|
|
|
def test_search_file(tmp_path):
|
|
temp_file_path = tmp_path / 'a.txt'
|
|
temp_file_path.write_text('Line 1\nLine 2\nLine 3\nLine 4\nLine 5')
|
|
|
|
with io.StringIO() as buf:
|
|
with contextlib.redirect_stdout(buf):
|
|
search_file('Line 5', str(temp_file_path))
|
|
result = buf.getvalue()
|
|
assert result is not None
|
|
expected = f'[Found 1 matches for "Line 5" in {temp_file_path}]\n'
|
|
expected += 'Line 5: Line 5\n'
|
|
expected += f'[End of matches for "Line 5" in {temp_file_path}]\n'
|
|
assert result.split('\n') == expected.split('\n')
|
|
|
|
|
|
def test_search_file_not_exist_term(tmp_path):
|
|
temp_file_path = tmp_path / 'a.txt'
|
|
temp_file_path.write_text('Line 1\nLine 2\nLine 3\nLine 4\nLine 5')
|
|
|
|
with io.StringIO() as buf:
|
|
with contextlib.redirect_stdout(buf):
|
|
search_file('Line 6', str(temp_file_path))
|
|
result = buf.getvalue()
|
|
assert result is not None
|
|
|
|
expected = f'[No matches found for "Line 6" in {temp_file_path}]\n'
|
|
assert result.split('\n') == expected.split('\n')
|
|
|
|
|
|
def test_search_file_not_exist_file():
|
|
with pytest.raises(FileNotFoundError):
|
|
search_file('Line 6', '/unexist/path/a.txt')
|
|
|
|
|
|
def test_find_file(tmp_path):
|
|
temp_file_path = tmp_path / 'a.txt'
|
|
temp_file_path.write_text('Line 1\nLine 2\nLine 3\nLine 4\nLine 5')
|
|
|
|
with io.StringIO() as buf:
|
|
with contextlib.redirect_stdout(buf):
|
|
find_file('a.txt', str(tmp_path))
|
|
result = buf.getvalue()
|
|
assert result is not None
|
|
|
|
expected = f'[Found 1 matches for "a.txt" in {tmp_path}]\n'
|
|
expected += f'{tmp_path}/a.txt\n'
|
|
expected += f'[End of matches for "a.txt" in {tmp_path}]\n'
|
|
assert result.split('\n') == expected.split('\n')
|
|
|
|
|
|
def test_find_file_cwd(tmp_path, monkeypatch):
|
|
monkeypatch.chdir(tmp_path)
|
|
temp_file_path = tmp_path / 'a.txt'
|
|
temp_file_path.write_text('Line 1\nLine 2\nLine 3\nLine 4\nLine 5')
|
|
|
|
with io.StringIO() as buf:
|
|
with contextlib.redirect_stdout(buf):
|
|
find_file('a.txt')
|
|
result = buf.getvalue()
|
|
assert result is not None
|
|
|
|
|
|
def test_find_file_not_exist_file():
|
|
with io.StringIO() as buf:
|
|
with contextlib.redirect_stdout(buf):
|
|
find_file('unexist.txt')
|
|
result = buf.getvalue()
|
|
assert result is not None
|
|
|
|
expected = '[No matches found for "unexist.txt" in ./]\n'
|
|
assert result.split('\n') == expected.split('\n')
|
|
|
|
|
|
def test_find_file_not_exist_file_specific_path(tmp_path):
|
|
with io.StringIO() as buf:
|
|
with contextlib.redirect_stdout(buf):
|
|
find_file('unexist.txt', str(tmp_path))
|
|
result = buf.getvalue()
|
|
assert result is not None
|
|
|
|
expected = f'[No matches found for "unexist.txt" in {tmp_path}]\n'
|
|
assert result.split('\n') == expected.split('\n')
|
|
|
|
|
|
def test_edit_lint_file_pass(tmp_path, monkeypatch):
|
|
# Create a Python file with correct syntax
|
|
file_path = tmp_path / 'test_file.py'
|
|
file_path.write_text('\n')
|
|
|
|
# patch ENABLE_AUTO_LINT
|
|
monkeypatch.setattr(
|
|
'opendevin.runtime.plugins.agent_skills.agentskills.ENABLE_AUTO_LINT', True
|
|
)
|
|
|
|
# Test linting functionality
|
|
with io.StringIO() as buf:
|
|
with contextlib.redirect_stdout(buf):
|
|
open_file(str(file_path))
|
|
edit_file(1, 1, "print('hello')\n")
|
|
result = buf.getvalue()
|
|
|
|
assert result is not None
|
|
expected = (
|
|
f'[File: {file_path} (1 lines total)]\n'
|
|
'1|\n'
|
|
f'[File: {file_path} (2 lines total after edit)]\n'
|
|
"1|print('hello')\n"
|
|
'2|\n'
|
|
'[File updated. Please review the changes and make sure they are correct (correct indentation, no duplicate lines, etc). Edit the file again if necessary.]\n'
|
|
)
|
|
assert result.split('\n') == expected.split('\n')
|
|
|
|
|
|
def test_lint_file_fail_undefined_name(tmp_path, monkeypatch, capsys):
|
|
# Create a Python file with a syntax error
|
|
file_path = tmp_path / 'test_file.py'
|
|
file_path.write_text('\n')
|
|
|
|
# Set environment variable to enable linting
|
|
monkeypatch.setattr(
|
|
'opendevin.runtime.plugins.agent_skills.agentskills.ENABLE_AUTO_LINT', True
|
|
)
|
|
|
|
open_file(str(file_path))
|
|
edit_file(1, 1, 'undefined_name()\n')
|
|
|
|
result = capsys.readouterr().out
|
|
print(result)
|
|
|
|
assert result is not None
|
|
expected = (
|
|
f'[File: {file_path} (1 lines total)]\n'
|
|
'1|\n'
|
|
'[Your proposed edit has introduced new syntax error(s). Please understand the errors and retry your edit command.]\n'
|
|
'ERRORS:\n'
|
|
f"{file_path}:1:1: F821 undefined name 'undefined_name'\n"
|
|
'[This is how your edit would have looked if applied]\n'
|
|
'-------------------------------------------------\n'
|
|
'1|undefined_name()\n'
|
|
'2|\n'
|
|
'-------------------------------------------------\n\n'
|
|
'[This is the original code before your edit]\n'
|
|
'-------------------------------------------------\n'
|
|
'1|\n'
|
|
'-------------------------------------------------\n'
|
|
)
|
|
assert result.split('\n') == expected.split('\n')
|
|
|
|
|
|
def test_lint_file_disabled_undefined_name(tmp_path, monkeypatch, capsys):
|
|
# Create a Python file with a syntax error
|
|
file_path = tmp_path / 'test_file.py'
|
|
file_path.write_text('\n')
|
|
|
|
# Set environment variable to enable linting
|
|
monkeypatch.setattr(
|
|
'opendevin.runtime.plugins.agent_skills.agentskills.ENABLE_AUTO_LINT', False
|
|
)
|
|
|
|
open_file(str(file_path))
|
|
edit_file(1, 1, 'undefined_name()\n')
|
|
|
|
result = capsys.readouterr().out
|
|
assert result is not None
|
|
expected = (
|
|
f'[File: {file_path} (1 lines total)]\n'
|
|
'1|\n'
|
|
f'[File: {file_path} (2 lines total after edit)]\n'
|
|
'1|undefined_name()\n'
|
|
'2|\n'
|
|
'[File updated. Please review the changes and make sure they are correct (correct indentation, no duplicate lines, etc). Edit the file again if necessary.]\n'
|
|
)
|
|
assert result.split('\n') == expected.split('\n')
|
|
|
|
|
|
def test_parse_docx(tmp_path):
|
|
# Create a DOCX file with some content
|
|
test_docx_path = tmp_path / "test.docx"
|
|
doc = docx.Document()
|
|
doc.add_paragraph('Hello, this is a test document.')
|
|
doc.add_paragraph('This is the second paragraph.')
|
|
doc.save(str(test_docx_path))
|
|
|
|
old_stdout = sys.stdout
|
|
sys.stdout = io.StringIO()
|
|
|
|
# Call the parse_docx function
|
|
parse_docx(str(test_docx_path))
|
|
|
|
# Capture the output
|
|
output = sys.stdout.getvalue()
|
|
sys.stdout = old_stdout
|
|
|
|
# Check if the output is correct
|
|
expected_output = (
|
|
f'[Reading DOCX file from {test_docx_path}]\n'
|
|
'@@ Page 1 @@\nHello, this is a test document.\n\n'
|
|
'@@ Page 2 @@\nThis is the second paragraph.\n\n\n'
|
|
)
|
|
assert output == expected_output, f"Expected output does not match. Got: {output}"
|
|
|
|
|
|
def test_parse_latex(tmp_path):
|
|
# Create a LaTeX file with some content
|
|
test_latex_path = tmp_path / "test.tex"
|
|
with open(test_latex_path, 'w') as f:
|
|
f.write(r'''
|
|
\documentclass{article}
|
|
\begin{document}
|
|
Hello, this is a test LaTeX document.
|
|
\end{document}
|
|
''')
|
|
|
|
old_stdout = sys.stdout
|
|
sys.stdout = io.StringIO()
|
|
|
|
# Call the parse_latex function
|
|
parse_latex(str(test_latex_path))
|
|
|
|
# Capture the output
|
|
output = sys.stdout.getvalue()
|
|
sys.stdout = old_stdout
|
|
|
|
# Check if the output is correct
|
|
expected_output = (
|
|
f'[Reading LaTex file from {test_latex_path}]\n'
|
|
'Hello, this is a test LaTeX document.\n'
|
|
)
|
|
assert output == expected_output, f"Expected output does not match. Got: {output}"
|
|
|
|
|
|
def test_parse_pdf(tmp_path):
|
|
# Create a PDF file with some content
|
|
test_pdf_path = tmp_path / "test.pdf"
|
|
from reportlab.lib.pagesizes import letter
|
|
from reportlab.pdfgen import canvas
|
|
|
|
c = canvas.Canvas(str(test_pdf_path), pagesize=letter)
|
|
c.drawString(100, 750, "Hello, this is a test PDF document.")
|
|
c.save()
|
|
|
|
old_stdout = sys.stdout
|
|
sys.stdout = io.StringIO()
|
|
|
|
# Call the parse_pdf function
|
|
parse_pdf(str(test_pdf_path))
|
|
|
|
# Capture the output
|
|
output = sys.stdout.getvalue()
|
|
sys.stdout = old_stdout
|
|
|
|
# Check if the output is correct
|
|
expected_output = (
|
|
f'[Reading PDF file from {test_pdf_path}]\n'
|
|
'@@ Page 1 @@\n'
|
|
'Hello, this is a test PDF document.\n'
|
|
)
|
|
assert output == expected_output, f"Expected output does not match. Got: {output}"
|
|
|
|
|
|
def test_parse_pptx(tmp_path):
|
|
test_pptx_path = tmp_path / "test.pptx"
|
|
from pptx import Presentation
|
|
pres = Presentation()
|
|
|
|
slide1 = pres.slides.add_slide(pres.slide_layouts[0])
|
|
title1 = slide1.shapes.title
|
|
title1.text = "Hello, this is the first test PPTX slide."
|
|
|
|
slide2 = pres.slides.add_slide(pres.slide_layouts[0])
|
|
title2 = slide2.shapes.title
|
|
title2.text = "Hello, this is the second test PPTX slide."
|
|
|
|
pres.save(str(test_pptx_path))
|
|
|
|
old_stdout = sys.stdout
|
|
sys.stdout = io.StringIO()
|
|
|
|
parse_pptx(str(test_pptx_path))
|
|
|
|
output = sys.stdout.getvalue()
|
|
sys.stdout = old_stdout
|
|
|
|
expected_output = (
|
|
f'[Reading PowerPoint file from {test_pptx_path}]\n'
|
|
'@@ Slide 1 @@\n'
|
|
'Hello, this is the first test PPTX slide.\n\n'
|
|
'@@ Slide 2 @@\n'
|
|
'Hello, this is the second test PPTX slide.\n\n'
|
|
)
|
|
assert output == expected_output, f"Expected output does not match. Got: {output}" |