每个测试计划绑定一个账号和一个模型,按 cron 表达式定期执行测试, 保存历史结果并在前端账号管理页面中提供完整的增删改查和结果查看功能。 主要变更: - 新增 scheduled_test_plans / scheduled_test_results 两张表及迁移 - 后端 service 层:CRUD 服务 + 后台 cron runner(每分钟扫描到期计划并发执行) - RunTestBackground 方法通过 httptest 在内存中执行账号测试并解析 SSE 输出 - Redis leader lock + pg_try_advisory_lock 双重保障多实例部署只执行一次 - REST API:5 个管理端点(计划 CRUD + 结果查询) - 前端 ScheduledTestsPanel 组件:计划管理、启用开关、内联编辑、结果展开查看 - 中英文 i18n 支持 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
62 lines
2.3 KiB
Go
62 lines
2.3 KiB
Go
package service
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
)
|
|
|
|
// ScheduledTestPlan represents a scheduled test plan domain model.
|
|
type ScheduledTestPlan struct {
|
|
ID int64 `json:"id"`
|
|
AccountID int64 `json:"account_id"`
|
|
ModelID string `json:"model_id"`
|
|
CronExpression string `json:"cron_expression"`
|
|
Enabled bool `json:"enabled"`
|
|
MaxResults int `json:"max_results"`
|
|
LastRunAt *time.Time `json:"last_run_at"`
|
|
NextRunAt *time.Time `json:"next_run_at"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
}
|
|
|
|
// ScheduledTestResult represents a single test execution result.
|
|
type ScheduledTestResult struct {
|
|
ID int64 `json:"id"`
|
|
PlanID int64 `json:"plan_id"`
|
|
Status string `json:"status"`
|
|
ResponseText string `json:"response_text"`
|
|
ErrorMessage string `json:"error_message"`
|
|
LatencyMs int64 `json:"latency_ms"`
|
|
StartedAt time.Time `json:"started_at"`
|
|
FinishedAt time.Time `json:"finished_at"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
}
|
|
|
|
// ScheduledTestOutcome is returned by RunTestBackground.
|
|
type ScheduledTestOutcome struct {
|
|
Status string
|
|
ResponseText string
|
|
ErrorMessage string
|
|
LatencyMs int64
|
|
StartedAt time.Time
|
|
FinishedAt time.Time
|
|
}
|
|
|
|
// ScheduledTestPlanRepository defines the data access interface for test plans.
|
|
type ScheduledTestPlanRepository interface {
|
|
Create(ctx context.Context, plan *ScheduledTestPlan) (*ScheduledTestPlan, error)
|
|
GetByID(ctx context.Context, id int64) (*ScheduledTestPlan, error)
|
|
ListByAccountID(ctx context.Context, accountID int64) ([]*ScheduledTestPlan, error)
|
|
ListDue(ctx context.Context, now time.Time) ([]*ScheduledTestPlan, error)
|
|
Update(ctx context.Context, plan *ScheduledTestPlan) (*ScheduledTestPlan, error)
|
|
Delete(ctx context.Context, id int64) error
|
|
UpdateAfterRun(ctx context.Context, id int64, lastRunAt time.Time, nextRunAt time.Time) error
|
|
}
|
|
|
|
// ScheduledTestResultRepository defines the data access interface for test results.
|
|
type ScheduledTestResultRepository interface {
|
|
Create(ctx context.Context, result *ScheduledTestResult) (*ScheduledTestResult, error)
|
|
ListByPlanID(ctx context.Context, planID int64, limit int) ([]*ScheduledTestResult, error)
|
|
PruneOldResults(ctx context.Context, planID int64, keepCount int) error
|
|
}
|