vibe/tests/snapshots/test_ui_snapshot_edit_diff.py
Clément Drouin c2cb612ac1
v2.16.0 (#798)
Co-authored-by: Hdandria <henri.dandria@mistral.ai>
Co-authored-by: Liam Lyons <65613603+lyons-liam@users.noreply.github.com>
Co-authored-by: Mathias Gesbert <mathias.gesbert@mistral.ai>
Co-authored-by: Pierre Rossinès <pierre.rossines@mistral.ai>
Co-authored-by: Quentin <quentin.torroba@mistral.ai>
Co-authored-by: allansimon-mistral <allan.simon@ext.mistral.ai>
Co-authored-by: angelapopopo <angele.lenglemetz@mistral.ai>
Co-authored-by: Mistral Vibe <vibe@mistral.ai>
2026-06-15 17:36:21 +02:00

60 lines
1.6 KiB
Python

from __future__ import annotations
from pathlib import Path
from textual.pilot import Pilot
from tests.snapshots.base_snapshot_test_app import BaseSnapshotTestApp
from tests.snapshots.snap_compare import SnapCompare
from vibe.core.tools.builtins.edit import EditArgs
FILE_CONTENT = "\n".join([
"def greet(name):",
' return f"hello {name}"',
"",
"MAX_USERS = 100",
"TIMEOUT = 30",
])
class EditApprovalApp(BaseSnapshotTestApp):
_diff_theme: str = "tokyo-night"
async def on_ready(self) -> None:
await super().on_ready()
self.theme = self._diff_theme
path = Path("src/example.py")
path.parent.mkdir(parents=True, exist_ok=True)
path.write_text(FILE_CONTENT)
args = EditArgs(
file_path="src/example.py",
old_string="MAX_USERS = 100\nTIMEOUT = 30",
new_string="MAX_USERS = 200\nTIMEOUT = 30",
)
await self._switch_to_approval_app("edit", args)
class EditApprovalAnsiApp(EditApprovalApp):
_diff_theme = "ansi-dark"
def test_snapshot_edit_approval_diff(snap_compare: SnapCompare) -> None:
async def run_before(pilot: Pilot) -> None:
await pilot.pause(0.3)
assert snap_compare(
"test_ui_snapshot_edit_diff.py:EditApprovalApp",
terminal_size=(100, 30),
run_before=run_before,
)
def test_snapshot_edit_approval_diff_ansi(snap_compare: SnapCompare) -> None:
async def run_before(pilot: Pilot) -> None:
await pilot.pause(0.3)
assert snap_compare(
"test_ui_snapshot_edit_diff.py:EditApprovalAnsiApp",
terminal_size=(100, 30),
run_before=run_before,
)