Files
manual_slop/tests/test_gui_phase3.py

89 lines
3.1 KiB
Python

"""
ANTI-SIMPLIFICATION: These tests verify Conductor integration features such as track proposal, setup scanning, and track creation.
They MUST NOT be simplified. Removing assertions or replacing the logic with empty skips weakens the integrity of the Conductor engine verification.
"""
import os
import json
from pathlib import Path
from unittest.mock import patch
def test_track_proposal_editing(app_instance):
"""
Verifies the structural integrity of track proposal items.
Ensures that track proposals can be edited and removed from the active list.
"""
app_instance.proposed_tracks = [
{"title": "Old Title", "goal": "Old Goal"},
{"title": "Another Track", "goal": "Another Goal"}
]
app_instance.proposed_tracks[0]['title'] = "New Title"
app_instance.proposed_tracks[0]['goal'] = "New Goal"
# ANTI-SIMPLIFICATION: Must assert that the specific dictionary keys are updatable
assert app_instance.proposed_tracks[0]['title'] == "New Title"
assert app_instance.proposed_tracks[0]['goal'] == "New Goal"
app_instance.proposed_tracks.pop(1)
assert len(app_instance.proposed_tracks) == 1
assert app_instance.proposed_tracks[0]['title'] == "New Title"
def test_conductor_setup_scan(app_instance, tmp_path):
"""
Verifies that the conductor setup scan properly iterates through the conductor directory,
counts files and lines, and identifies active tracks.
"""
old_cwd = os.getcwd()
os.chdir(tmp_path)
try:
cond_dir = Path("conductor")
cond_dir.mkdir(exist_ok=True)
(cond_dir / "index.md").write_text("Index content\nLine 2")
(cond_dir / "tracks").mkdir(exist_ok=True)
(cond_dir / "tracks" / "track1").mkdir(exist_ok=True)
app_instance._cb_run_conductor_setup()
# ANTI-SIMPLIFICATION: Assert that the summary output correctly counts files/lines/tracks
assert "Total Files: 1" in app_instance.ui_conductor_setup_summary
assert "Total Line Count: 2" in app_instance.ui_conductor_setup_summary
assert "Total Tracks Found: 1" in app_instance.ui_conductor_setup_summary
finally:
os.chdir(old_cwd)
def test_create_track(app_instance, tmp_path):
"""
Verifies that _cb_create_track properly creates the track folder
and populates the necessary boilerplate files (spec.md, plan.md, metadata.json).
"""
old_cwd = os.getcwd()
os.chdir(tmp_path)
try:
(Path("conductor") / "tracks").mkdir(parents=True, exist_ok=True)
with patch('src.gui_2.project_manager.get_all_tracks', return_value=[]):
app_instance._cb_create_track("Test Track", "Test Description", "feature")
tracks_root = Path("conductor/tracks")
matching_dirs = [d for d in tracks_root.iterdir() if d.is_dir() and d.name.startswith("test_track")]
assert len(matching_dirs) == 1
track_dir = matching_dirs[0]
# ANTI-SIMPLIFICATION: Must ensure that the boilerplate files actually exist
assert track_dir.exists()
assert (track_dir / "spec.md").exists()
assert (track_dir / "plan.md").exists()
assert (track_dir / "metadata.json").exists()
with open(track_dir / "metadata.json", "r") as f:
data = json.load(f)
assert data['title'] == "Test Track"
assert data['type'] == "feature"
assert data['id'] == track_dir.name
finally:
os.chdir(old_cwd)