28 lines
1,012 B
Python
28 lines
1,012 B
Python
from __future__ import annotations
|
|
|
|
from textual.pilot import Pilot
|
|
|
|
from tests.snapshots.base_snapshot_test_app import BaseSnapshotTestApp, default_config
|
|
from tests.snapshots.snap_compare import SnapCompare
|
|
from vibe.cli.update_notifier import FakeVersionUpdateGateway, VersionUpdate
|
|
|
|
|
|
class SnapshotTestAppWithUpdate(BaseSnapshotTestApp):
|
|
def __init__(self):
|
|
config = default_config()
|
|
config.enable_update_checks = True
|
|
version_update_notifier = FakeVersionUpdateGateway(
|
|
update=VersionUpdate(latest_version="1000.2.0")
|
|
)
|
|
super().__init__(config=config, version_update_notifier=version_update_notifier)
|
|
|
|
|
|
def test_snapshot_shows_release_update_notification(snap_compare: SnapCompare) -> None:
|
|
async def run_before(pilot: Pilot) -> None:
|
|
await pilot.pause(0.2)
|
|
|
|
assert snap_compare(
|
|
"test_ui_snapshot_release_update_notification.py:SnapshotTestAppWithUpdate",
|
|
terminal_size=(120, 36),
|
|
run_before=run_before,
|
|
)
|