重写为 AI 情报 Agent 并接入 Jenkins 流水线
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
from app.core.config import Settings
|
||||
from app.integrations.github_client import GitHubHotProjectClient
|
||||
|
||||
|
||||
def test_github_client_maps_repository_to_signal() -> None:
|
||||
# GitHub仓库候选先标准化为信号,再交给模型做最终筛选。
|
||||
client = GitHubHotProjectClient(Settings())
|
||||
signal = client._to_signal_item(
|
||||
{
|
||||
"full_name": "example/agent-kit",
|
||||
"description": "Agent framework for production workflows.",
|
||||
"html_url": "https://github.com/example/agent-kit",
|
||||
"stargazers_count": 2400,
|
||||
"forks_count": 180,
|
||||
"language": "Python",
|
||||
"created_at": "2026-05-01T09:00:00Z",
|
||||
"pushed_at": "2026-05-07T10:00:00Z",
|
||||
}
|
||||
)
|
||||
|
||||
assert signal.topic == "GitHub 热门项目"
|
||||
assert signal.source_name == "GitHub"
|
||||
assert signal.source_url == "https://github.com/example/agent-kit"
|
||||
assert "2400 stars" in signal.summary
|
||||
assert "2026-05-01" in signal.summary
|
||||
Reference in New Issue
Block a user