为用户在 anthropic/openai/gemini/antigravity 四个平台上提供日/周/月 三个窗口的 USD 配额管控。配额语义:未设置=不限制,0=禁用,>0=美元上限。 两层模型: - 配置层:系统默认配额,以及 email/linuxdo/oidc/wechat/github/google/ dingtalk 七个鉴权来源的默认配额,存于 settings,以嵌套 JSON 整体读写 (系统 1 个 key + 每个来源 1 个 key),整体替换语义。 - 运行时层:user_platform_quota 表按用户记录实际配额,与配置层解耦。 后端:新增 ent schema 与 140_user_platform_quotas.sql 迁移、repository 与 service 端口、计费链路集成、管理端与用户端读写接口。 前端:管理端设置页配额编辑、用户配额管理 Modal、用户 Dashboard 展示、 中英文案。 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
24 lines
950 B
Go
24 lines
950 B
Go
//go:build unit
|
|
|
|
package service
|
|
|
|
import "testing"
|
|
|
|
// TestSettingKeyDefaultPlatformQuotas 验证新的系统层 JSON key 常量值正确。
|
|
func TestSettingKeyDefaultPlatformQuotas(t *testing.T) {
|
|
if SettingKeyDefaultPlatformQuotas != "default_platform_quotas" {
|
|
t.Errorf("SettingKeyDefaultPlatformQuotas = %q, want %q",
|
|
SettingKeyDefaultPlatformQuotas, "default_platform_quotas")
|
|
}
|
|
}
|
|
|
|
// TestSettingKeyAuthSourcePlatformQuotas 验证新的 auth-source JSON key 函数返回值正确。
|
|
func TestSettingKeyAuthSourcePlatformQuotas(t *testing.T) {
|
|
if got := SettingKeyAuthSourcePlatformQuotas("email"); got != "auth_source_default_email_platform_quotas" {
|
|
t.Fatalf("got %q, want %q", got, "auth_source_default_email_platform_quotas")
|
|
}
|
|
if got := SettingKeyAuthSourcePlatformQuotas("dingtalk"); got != "auth_source_default_dingtalk_platform_quotas" {
|
|
t.Fatalf("got %q, want %q", got, "auth_source_default_dingtalk_platform_quotas")
|
|
}
|
|
}
|