mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 10:14:59 +00:00
aider: Added a test function to test the WholeFileCoder
's update_files
method.
# Context: USER: make a test for `WholeFileCoder`.updated_files ASSISTANT: To create a test for the `WholeFileCoder`'s `update_files` method, we will add a new test function in the `tests/test_wholefile.py` file. Here's the test function: ```python tests/test_wholefile.py <<<<<<< ORIGINAL ======= import os from pathlib import Path import tempfile import unittest from aider.coders.wholefile_coder import WholeFileCoder from aider.io import InputOutput class TestWholeFileCoder(unittest.TestCase): def test_update_files(self): with tempfile.TemporaryDirectory() as temp_dir: # Create a sample file in the temporary directory sample_file = os.path.join(temp_dir, "sample.txt") with open(sample_file, "w") as f: f.write("Original content\n") # Initialize WholeFileCoder with the temporary directory io = InputOutput() coder = WholeFileCoder(root=temp_dir, io=io) # Set the partial response content with the updated content coder.partial_response_content = f"{sample_file}\n```\nUpdated content\n```" # Call update_files method edited_files = coder.update_files() # Check if the sample file was updated self.assertIn("sample.txt", edited_files) # Check if the content of the sample file was updated with open(sample_file, "r") as f: updated_content = f.read() self.assertEqual(updated_content, "Updated content\n") if __name__ == "__main__": unittest.main() >>>>>>> UPDATED ``` This test function creates a temporary directory with a sample file, initializes a `WholeFileCoder` instance with the temporary directory, sets the partial response content with the updated content, calls the `update_files` method, and checks if the sample file was updated correctly.
This commit is contained in:
parent
b0d72cf296
commit
b4a92e312a
2 changed files with 45 additions and 8 deletions
|
@ -35,6 +35,7 @@ class WholeFileCoder(Coder):
|
||||||
|
|
||||||
output = []
|
output = []
|
||||||
lines = content.splitlines(keepends=True)
|
lines = content.splitlines(keepends=True)
|
||||||
|
|
||||||
fname = None
|
fname = None
|
||||||
new_lines = []
|
new_lines = []
|
||||||
for i, line in enumerate(lines):
|
for i, line in enumerate(lines):
|
||||||
|
@ -65,16 +66,16 @@ class WholeFileCoder(Coder):
|
||||||
|
|
||||||
# starting a new block
|
# starting a new block
|
||||||
if i == 0:
|
if i == 0:
|
||||||
raise ValueError("No filename provided before ``` block")
|
|
||||||
|
|
||||||
fname = lines[i - 1].strip()
|
|
||||||
if fname not in chat_files:
|
|
||||||
if len(chat_files) == 1:
|
if len(chat_files) == 1:
|
||||||
fname = list(chat_files)[0]
|
fname = chat_files[0]
|
||||||
else:
|
else:
|
||||||
show_chat_files = " ".join(chat_files)
|
# TODO: sense which file it is by diff size
|
||||||
# TODO: adopt the new allowed_to_edit()
|
raise ValueError("No filename provided before ``` block")
|
||||||
raise ValueError(f"{fname} is not one of: {show_chat_files}")
|
else:
|
||||||
|
fname = lines[i - 1].strip()
|
||||||
|
|
||||||
|
if mode == "update" and not self.allowed_to_edit(fname):
|
||||||
|
raise ValueError(f"{fname} is not one of: {show_chat_files}")
|
||||||
|
|
||||||
elif fname:
|
elif fname:
|
||||||
new_lines.append(line)
|
new_lines.append(line)
|
||||||
|
|
|
@ -0,0 +1,36 @@
|
||||||
|
import os
|
||||||
|
from pathlib import Path
|
||||||
|
import tempfile
|
||||||
|
import unittest
|
||||||
|
|
||||||
|
from aider.coders.wholefile_coder import WholeFileCoder
|
||||||
|
from aider.io import InputOutput
|
||||||
|
|
||||||
|
class TestWholeFileCoder(unittest.TestCase):
|
||||||
|
def test_update_files(self):
|
||||||
|
with tempfile.TemporaryDirectory() as temp_dir:
|
||||||
|
# Create a sample file in the temporary directory
|
||||||
|
sample_file = os.path.join(temp_dir, "sample.txt")
|
||||||
|
with open(sample_file, "w") as f:
|
||||||
|
f.write("Original content\n")
|
||||||
|
|
||||||
|
# Initialize WholeFileCoder with the temporary directory
|
||||||
|
io = InputOutput()
|
||||||
|
coder = WholeFileCoder(root=temp_dir, io=io)
|
||||||
|
|
||||||
|
# Set the partial response content with the updated content
|
||||||
|
coder.partial_response_content = f"{sample_file}\n```\nUpdated content\n```"
|
||||||
|
|
||||||
|
# Call update_files method
|
||||||
|
edited_files = coder.update_files()
|
||||||
|
|
||||||
|
# Check if the sample file was updated
|
||||||
|
self.assertIn("sample.txt", edited_files)
|
||||||
|
|
||||||
|
# Check if the content of the sample file was updated
|
||||||
|
with open(sample_file, "r") as f:
|
||||||
|
updated_content = f.read()
|
||||||
|
self.assertEqual(updated_content, "Updated content\n")
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
unittest.main()
|
Loading…
Add table
Add a link
Reference in a new issue