Spaces:
Running
on
Zero
Running
on
Zero
File size: 14,601 Bytes
3860419 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 |
import dataclasses
import functools
import inspect
import os
import shutil
import tempfile
from argparse import Namespace
from unittest.mock import patch
import pytest
import typer
import gpt_engineer.applications.cli.main as main
from gpt_engineer.applications.cli.main import load_prompt
from gpt_engineer.core.default.disk_memory import DiskMemory
from gpt_engineer.core.prompt import Prompt
@functools.wraps(dataclasses.make_dataclass)
def dcommand(typer_f, **kwargs):
required = True
def field_desc(name, param):
nonlocal required
t = param.annotation or "typing.Any"
if param.default.default is not ...:
required = False
return name, t, dataclasses.field(default=param.default.default)
if not required:
raise ValueError("Required value after optional")
return name, t
kwargs.setdefault("cls_name", typer_f.__name__)
params = inspect.signature(typer_f).parameters
kwargs["fields"] = [field_desc(k, v) for k, v in params.items()]
@functools.wraps(typer_f)
def dcommand_decorator(function_or_class):
assert callable(function_or_class)
ka = dict(kwargs)
ns = Namespace(**(ka.pop("namespace", None) or {}))
if isinstance(function_or_class, type):
ka["bases"] = *ka.get("bases", ()), function_or_class
else:
ns.__call__ = function_or_class
ka["namespace"] = vars(ns)
return dataclasses.make_dataclass(**ka)
return dcommand_decorator
@dcommand(main.main)
class DefaultArgumentsMain:
def __call__(self):
attribute_dict = vars(self)
main.main(**attribute_dict)
def input_generator():
yield "y" # First response
while True:
yield "n" # Subsequent responses
prompt_text = "Make a python program that writes 'hello' to a file called 'output.txt'"
class TestMain:
# Runs gpt-engineer cli interface for many parameter configurations, BUT DOES NOT CODEGEN! Only testing cli.
def test_default_settings_generate_project(self, tmp_path, monkeypatch):
p = tmp_path / "projects/example"
p.mkdir(parents=True)
(p / "prompt").write_text(prompt_text)
args = DefaultArgumentsMain(str(p), llm_via_clipboard=True, no_execution=True)
args()
# Runs gpt-engineer with improve mode and improves an existing project in the specified path.
def test_improve_existing_project(self, tmp_path, monkeypatch):
p = tmp_path / "projects/example"
p.mkdir(parents=True)
(p / "prompt").write_text(prompt_text)
args = DefaultArgumentsMain(
str(p), improve_mode=True, llm_via_clipboard=True, no_execution=True
)
args()
# def improve_generator():
# yield "y"
# while True:
# yield "n" # Subsequent responses
#
# gen = improve_generator()
# monkeypatch.setattr("builtins.input", lambda _: next(gen))
# p = tmp_path / "projects/example"
# p.mkdir(parents=True)
# (p / "prompt").write_text(prompt_text)
# (p / "main.py").write_text("The program will be written in this file")
# meta_p = p / META_DATA_REL_PATH
# meta_p.mkdir(parents=True)
# (meta_p / "file_selection.toml").write_text(
# """
# [files]
# "main.py" = "selected"
# """
# )
# os.environ["GPTE_TEST_MODE"] = "True"
# simplified_main(str(p), "improve")
# DiskExecutionEnv(path=p)
# del os.environ["GPTE_TEST_MODE"]
# Runs gpt-engineer with lite mode and generates a project with only the main prompt.
def test_lite_mode_generate_project(self, tmp_path, monkeypatch):
p = tmp_path / "projects/example"
p.mkdir(parents=True)
(p / "prompt").write_text(prompt_text)
args = DefaultArgumentsMain(
str(p), lite_mode=True, llm_via_clipboard=True, no_execution=True
)
args()
# Runs gpt-engineer with clarify mode and generates a project after discussing the specification with the AI.
def test_clarify_mode_generate_project(self, tmp_path, monkeypatch):
p = tmp_path / "projects/example"
p.mkdir(parents=True)
(p / "prompt").write_text(prompt_text)
args = DefaultArgumentsMain(
str(p), clarify_mode=True, llm_via_clipboard=True, no_execution=True
)
args()
# Runs gpt-engineer with self-heal mode and generates a project after discussing the specification with the AI and self-healing the code.
def test_self_heal_mode_generate_project(self, tmp_path, monkeypatch):
p = tmp_path / "projects/example"
p.mkdir(parents=True)
(p / "prompt").write_text(prompt_text)
args = DefaultArgumentsMain(
str(p), self_heal_mode=True, llm_via_clipboard=True, no_execution=True
)
args()
def test_clarify_lite_improve_mode_generate_project(self, tmp_path, monkeypatch):
p = tmp_path / "projects/example"
p.mkdir(parents=True)
(p / "prompt").write_text(prompt_text)
args = DefaultArgumentsMain(
str(p),
improve_mode=True,
lite_mode=True,
clarify_mode=True,
llm_via_clipboard=True,
no_execution=True,
)
pytest.raises(typer.Exit, args)
# Tests the creation of a log file in improve mode.
class TestLoadPrompt:
# Load prompt from existing file in input_repo
def test_load_prompt_existing_file(self):
with tempfile.TemporaryDirectory() as tmp_dir:
input_repo = DiskMemory(tmp_dir)
prompt_file = "prompt.txt"
prompt_content = "This is the prompt"
input_repo[prompt_file] = prompt_content
improve_mode = False
image_directory = ""
result = load_prompt(input_repo, improve_mode, prompt_file, image_directory)
assert isinstance(result, Prompt)
assert result.text == prompt_content
assert result.image_urls is None
# Prompt file does not exist in input_repo, and improve_mode is False
def test_load_prompt_no_file_improve_mode_false(self):
with tempfile.TemporaryDirectory() as tmp_dir:
input_repo = DiskMemory(tmp_dir)
prompt_file = "prompt.txt"
improve_mode = False
image_directory = ""
with patch(
"builtins.input",
return_value="What application do you want gpt-engineer to generate?",
):
result = load_prompt(
input_repo, improve_mode, prompt_file, image_directory
)
assert isinstance(result, Prompt)
assert (
result.text == "What application do you want gpt-engineer to generate?"
)
assert result.image_urls is None
# Prompt file is a directory
def test_load_prompt_directory_file(self):
with tempfile.TemporaryDirectory() as tmp_dir:
input_repo = DiskMemory(tmp_dir)
prompt_file = os.path.join(tmp_dir, "prompt")
os.makedirs(os.path.join(tmp_dir, prompt_file))
improve_mode = False
image_directory = ""
with pytest.raises(ValueError):
load_prompt(input_repo, improve_mode, prompt_file, image_directory)
# Prompt file is empty
def test_load_prompt_empty_file(self):
with tempfile.TemporaryDirectory() as tmp_dir:
input_repo = DiskMemory(tmp_dir)
prompt_file = "prompt.txt"
input_repo[prompt_file] = ""
improve_mode = False
image_directory = ""
with patch(
"builtins.input",
return_value="What application do you want gpt-engineer to generate?",
):
result = load_prompt(
input_repo, improve_mode, prompt_file, image_directory
)
assert isinstance(result, Prompt)
assert (
result.text == "What application do you want gpt-engineer to generate?"
)
assert result.image_urls is None
# image_directory does not exist in input_repo
def test_load_prompt_no_image_directory(self):
with tempfile.TemporaryDirectory() as tmp_dir:
input_repo = DiskMemory(tmp_dir)
prompt_file = "prompt.txt"
prompt_content = "This is the prompt"
input_repo[prompt_file] = prompt_content
improve_mode = False
image_directory = "tests/test_data"
shutil.copytree(image_directory, os.path.join(tmp_dir, image_directory))
result = load_prompt(input_repo, improve_mode, prompt_file, image_directory)
assert isinstance(result, Prompt)
assert result.text == prompt_content
assert "mona_lisa.jpg" in result.image_urls
# def test_log_creation_in_improve_mode(self, tmp_path, monkeypatch):
# def improve_generator():
# yield "y"
# while True:
# yield "n" # Subsequent responses
#
# gen = improve_generator()
# monkeypatch.setattr("builtins.input", lambda _: next(gen))
# p = tmp_path / "projects/example"
# p.mkdir(parents=True)
# (p / "prompt").write_text(prompt_text)
# (p / "main.py").write_text("The program will be written in this file")
# meta_p = p / META_DATA_REL_PATH
# meta_p.mkdir(parents=True)
# (meta_p / "file_selection.toml").write_text(
# """
# [files]
# "main.py" = "selected"
# """
# )
# os.environ["GPTE_TEST_MODE"] = "True"
# simplified_main(str(p), "improve")
# DiskExecutionEnv(path=p)
# assert (
# (p / f".gpteng/memory/{DEBUG_LOG_FILE}").read_text().strip()
# == """UPLOADED FILES:
# ```
# File: main.py
# 1 The program will be written in this file
#
# ```
# PROMPT:
# Make a python program that writes 'hello' to a file called 'output.txt'
# CONSOLE OUTPUT:"""
# )
# del os.environ["GPTE_TEST_MODE"]
#
# def test_log_creation_in_improve_mode_with_failing_diff(
# self, tmp_path, monkeypatch
# ):
# def improve_generator():
# yield "y"
# while True:
# yield "n" # Subsequent responses
#
# def mock_salvage_correct_hunks(
# messages: List, files_dict: FilesDict, error_message: List
# ) -> FilesDict:
# # create a falling diff
# messages[
# -1
# ].content = """To create a Python program that writes 'hello' to a file called 'output.txt', we will need to perform the following steps:
#
# 1. Open the file 'output.txt' in write mode.
# 2. Write the string 'hello' to the file.
# 3. Close the file to ensure the data is written and the file is not left open.
#
# Here is the implementation of the program in the `main.py` file:
#
# ```diff
# --- main.py
# +++ main.py
# @@ -0,0 +1,9 @@
# -create falling diff
# ```
#
# This concludes a fully working implementation."""
# # Call the original function with modified messages or define your own logic
# return salvage_correct_hunks(messages, files_dict, error_message)
#
# gen = improve_generator()
# monkeypatch.setattr("builtins.input", lambda _: next(gen))
# monkeypatch.setattr(
# "gpt_engineer.core.default.steps.salvage_correct_hunks",
# mock_salvage_correct_hunks,
# )
# p = tmp_path / "projects/example"
# p.mkdir(parents=True)
# (p / "prompt").write_text(prompt_text)
# (p / "main.py").write_text("The program will be written in this file")
# meta_p = p / META_DATA_REL_PATH
# meta_p.mkdir(parents=True)
# (meta_p / "file_selection.toml").write_text(
# """
# [files]
# "main.py" = "selected"
# """
# )
# os.environ["GPTE_TEST_MODE"] = "True"
# simplified_main(str(p), "improve")
# DiskExecutionEnv(path=p)
# assert (
# (p / f".gpteng/memory/{DEBUG_LOG_FILE}").read_text().strip()
# == """UPLOADED FILES:
# ```
# File: main.py
# 1 The program will be written in this file
#
# ```
# PROMPT:
# Make a python program that writes 'hello' to a file called 'output.txt'
# CONSOLE OUTPUT:
# Invalid hunk: @@ -0,0 +1,9 @@
# -create falling diff
#
# Invalid hunk: @@ -0,0 +1,9 @@
# -create falling diff"""
# )
# del os.environ["GPTE_TEST_MODE"]
#
# def test_log_creation_in_improve_mode_with_unexpected_exceptions(
# self, tmp_path, monkeypatch
# ):
# def improve_generator():
# yield "y"
# while True:
# yield "n" # Subsequent responses
#
# def mock_salvage_correct_hunks(
# messages: List, files_dict: FilesDict, error_message: List
# ) -> FilesDict:
# raise Exception("Mock exception in salvage_correct_hunks")
#
# gen = improve_generator()
# monkeypatch.setattr("builtins.input", lambda _: next(gen))
# monkeypatch.setattr(
# "gpt_engineer.core.default.steps.salvage_correct_hunks",
# mock_salvage_correct_hunks,
# )
# p = tmp_path / "projects/example"
# p.mkdir(parents=True)
# (p / "prompt").write_text(prompt_text)
# (p / "main.py").write_text("The program will be written in this file")
# meta_p = p / META_DATA_REL_PATH
# meta_p.mkdir(parents=True)
# (meta_p / "file_selection.toml").write_text(
# """
# [files]
# "main.py" = "selected"
# """
# )
# os.environ["GPTE_TEST_MODE"] = "True"
# simplified_main(str(p), "improve")
# DiskExecutionEnv(path=p)
# assert (
# (p / f".gpteng/memory/{DEBUG_LOG_FILE}").read_text().strip()
# == """UPLOADED FILES:
# ```
# File: main.py
# 1 The program will be written in this file
#
# ```
# PROMPT:
# Make a python program that writes 'hello' to a file called 'output.txt'
# CONSOLE OUTPUT:
# Error while improving the project: Mock exception in salvage_correct_hunks"""
# )
# del os.environ["GPTE_TEST_MODE"]
|