mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-20 12:24:59 +00:00
59 lines
1.7 KiB
Python
59 lines
1.7 KiB
Python
import unittest
|
|
from unittest.mock import MagicMock
|
|
|
|
import aider
|
|
from aider.coders import Coder
|
|
from aider.commands import Commands
|
|
from aider.help import Help
|
|
from aider.io import InputOutput
|
|
from aider.models import Model
|
|
|
|
|
|
class TestHelp(unittest.TestCase):
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
io = InputOutput(pretty=False, yes=True)
|
|
|
|
GPT35 = Model("gpt-3.5-turbo")
|
|
|
|
coder = Coder.create(GPT35, None, io)
|
|
commands = Commands(io, coder)
|
|
|
|
help_coder_run = MagicMock(return_value="")
|
|
aider.coders.HelpCoder.run = help_coder_run
|
|
|
|
try:
|
|
commands.cmd_help("hi")
|
|
except aider.commands.SwitchCoder:
|
|
pass
|
|
else:
|
|
# If no exception was raised, fail the test
|
|
assert False, "SwitchCoder exception was not raised"
|
|
|
|
help_coder_run.assert_called_once()
|
|
|
|
def test_init(self):
|
|
help_inst = Help()
|
|
self.assertIsNotNone(help_inst.retriever)
|
|
|
|
def test_ask_without_mock(self):
|
|
help_instance = Help()
|
|
question = "What is aider?"
|
|
result = help_instance.ask(question)
|
|
|
|
self.assertIn(f"# Question: {question}", result)
|
|
self.assertIn("<doc", result)
|
|
self.assertIn("</doc>", result)
|
|
self.assertGreater(len(result), 100) # Ensure we got a substantial response
|
|
|
|
# Check for some expected content (adjust based on your actual help content)
|
|
self.assertIn("aider", result.lower())
|
|
self.assertIn("ai", result.lower())
|
|
self.assertIn("chat", result.lower())
|
|
|
|
# Assert that there are more than 5 <doc> entries
|
|
self.assertGreater(result.count("<doc"), 5)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|