Spaces:
Running
on
Zero
Running
on
Zero
File size: 3,398 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 |
"""
Tests for successful installation of the package.
"""
import shutil
import subprocess
import sys
import venv
from pathlib import Path
import pytest
# Define the directory for the virtual environment.
VENV_DIR = "./venv_test_installation"
@pytest.fixture(scope="module", autouse=True)
def venv_setup_teardown():
"""
A pytest fixture that sets up and tears down a virtual environment for testing.
This fixture is automatically used for all tests in this module.
The fixture:
- Creates a virtual environment.
- Installs Poetry in the virtual environment.
- Installs dependencies using Poetry.
- Cleans up by removing the virtual environment after tests are completed.
"""
try:
# Create a virtual environment with pip available.
venv.create(VENV_DIR, with_pip=True, clear=True)
# Install Poetry in the virtual environment.
subprocess.run(
[f"{VENV_DIR}/bin/python", "-m", "pip", "install", "poetry"], check=True
)
# Install the package and its dependencies using Poetry.
subprocess.run([f"{VENV_DIR}/bin/poetry", "install"], cwd=".", check=True)
# Provide the setup environment to the test functions.
yield
except Exception as e:
# Skip tests if the environment setup fails.
pytest.skip(f"Could not create venv or install dependencies: {str(e)}")
finally:
# Clean up by removing the virtual environment after tests.
shutil.rmtree(VENV_DIR)
def test_installation():
"""
Test to ensure that the package can be installed using Poetry in the virtual environment.
"""
# Determine the correct Poetry executable path based on the operating system.
poetry_executable = (
f"{VENV_DIR}/bin/poetry"
if sys.platform != "win32"
else f"{VENV_DIR}/Scripts/poetry.exe"
)
# Run Poetry install and capture its output.
result = subprocess.run([poetry_executable, "install"], capture_output=True)
# Assert that the installation was successful.
assert (
result.returncode == 0
), f"Install via poetry failed: {result.stderr.decode()}"
def test_cli_execution():
"""
Test to verify that the command-line interface (CLI) of the package works as expected.
This test assumes that the 'gpt-engineer' command is available and operational after installation.
"""
# Run the 'gpt-engineer' command with the '--help' option and capture its output.
result = subprocess.run(
args=["gpt-engineer", "--help"], capture_output=True, text=True
)
# Assert that the CLI command executed successfully.
assert (
result.returncode == 0
), f"gpt-engineer command failed with message: {result.stderr}"
@pytest.mark.requires_key
def test_installed_main_execution(tmp_path, monkeypatch):
# Ignore git installation check
monkeypatch.setattr("gpt_engineer.core.git.is_git_installed", lambda: False)
tmp_path = Path(tmp_path)
p = tmp_path / "projects/example"
p.mkdir(parents=True)
(p / "prompt").write_text("make a program that prints the outcome of 4+4")
proc = subprocess.Popen(
["gpte", str(p)],
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
text=True,
cwd=tmp_path,
)
inputs = "Y\nn"
output, _ = proc.communicate(inputs)
assert "8" in output
|