78 lines
2.8 KiB
Python
78 lines
2.8 KiB
Python
# ruff: noqa: E402
|
|
import io
|
|
import sys
|
|
import unittest
|
|
from contextlib import redirect_stderr
|
|
from pathlib import Path
|
|
from unittest import mock
|
|
|
|
sys.path.insert(0, str(Path(__file__).resolve().parents[1] / "skills" / "last30days" / "scripts"))
|
|
|
|
from lib import ui
|
|
|
|
|
|
class UiV3Tests(unittest.TestCase):
|
|
def test_show_diagnostic_banner_uses_v3_source_model(self):
|
|
diag = {
|
|
"available_sources": ["grounding", "youtube"],
|
|
"providers": {"google": True, "openai": False, "xai": False},
|
|
"x_backend": None,
|
|
"bird_installed": True,
|
|
"bird_authenticated": False,
|
|
"bird_username": None,
|
|
"native_web_backend": "brave",
|
|
}
|
|
with mock.patch.object(ui, "IS_TTY", False):
|
|
stderr = io.StringIO()
|
|
with redirect_stderr(stderr):
|
|
ui.show_diagnostic_banner(diag)
|
|
output = stderr.getvalue()
|
|
self.assertIn("Reddit", output)
|
|
self.assertIn("unavailable", output)
|
|
self.assertIn("Add AUTH_TOKEN/CT0 or XAI_API_KEY", output)
|
|
self.assertIn("brave API available", output)
|
|
|
|
def test_build_nux_message_mentions_v3_unlock_paths(self):
|
|
text = ui._build_nux_message(
|
|
{"available_sources": ["reddit", "youtube", "grounding"]}
|
|
)
|
|
self.assertIn("Reddit ✓, X ✗, YouTube ✓, Web ✓", text)
|
|
self.assertIn("works fine as-is", text)
|
|
self.assertIn("all free", text)
|
|
|
|
def test_show_complete_uses_actual_sources_for_source_restricted_runs(self):
|
|
with mock.patch.object(ui, "IS_TTY", False):
|
|
stderr = io.StringIO()
|
|
with redirect_stderr(stderr):
|
|
progress = ui.ProgressDisplay("test topic", show_banner=False)
|
|
progress.show_complete(
|
|
source_counts={"grounding": 2},
|
|
display_sources=["grounding"],
|
|
)
|
|
output = stderr.getvalue()
|
|
self.assertIn("Web: 2 results", output)
|
|
self.assertNotIn("Reddit:", output)
|
|
self.assertNotIn("X:", output)
|
|
|
|
def test_show_complete_supports_newer_sources(self):
|
|
with mock.patch.object(ui, "IS_TTY", False):
|
|
stderr = io.StringIO()
|
|
with redirect_stderr(stderr):
|
|
progress = ui.ProgressDisplay("test topic", show_banner=False)
|
|
progress.show_complete(
|
|
source_counts={
|
|
"bluesky": 3,
|
|
"truthsocial": 1,
|
|
"xiaohongshu": 4,
|
|
},
|
|
display_sources=["bluesky", "truthsocial", "xiaohongshu"],
|
|
)
|
|
output = stderr.getvalue()
|
|
self.assertIn("Bluesky: 3 posts", output)
|
|
self.assertIn("Truth Social: 1 post", output)
|
|
self.assertIn("Xiaohongshu: 4 posts", output)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|