新增 codex_cli_only 开关并默认关闭,关闭时完全绕过限制逻辑。 在 OpenAI 网关引入统一检测入口,集中判定账号类型、开关与客户端族。 开启后仅放行 codex_cli_rs、codex_vscode、codex_app 客户端家族。 补充后端判定与网关分支测试,并在前端创建/编辑页增加开关配置与回显。 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
137 lines
3.2 KiB
Go
137 lines
3.2 KiB
Go
package service
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestAccount_IsOpenAIPassthroughEnabled(t *testing.T) {
|
|
t.Run("新字段开启", func(t *testing.T) {
|
|
account := &Account{
|
|
Platform: PlatformOpenAI,
|
|
Type: AccountTypeAPIKey,
|
|
Extra: map[string]any{
|
|
"openai_passthrough": true,
|
|
},
|
|
}
|
|
require.True(t, account.IsOpenAIPassthroughEnabled())
|
|
})
|
|
|
|
t.Run("兼容旧字段", func(t *testing.T) {
|
|
account := &Account{
|
|
Platform: PlatformOpenAI,
|
|
Type: AccountTypeOAuth,
|
|
Extra: map[string]any{
|
|
"openai_oauth_passthrough": true,
|
|
},
|
|
}
|
|
require.True(t, account.IsOpenAIPassthroughEnabled())
|
|
})
|
|
|
|
t.Run("非OpenAI账号始终关闭", func(t *testing.T) {
|
|
account := &Account{
|
|
Platform: PlatformAnthropic,
|
|
Type: AccountTypeOAuth,
|
|
Extra: map[string]any{
|
|
"openai_passthrough": true,
|
|
},
|
|
}
|
|
require.False(t, account.IsOpenAIPassthroughEnabled())
|
|
})
|
|
|
|
t.Run("空额外配置默认关闭", func(t *testing.T) {
|
|
account := &Account{
|
|
Platform: PlatformOpenAI,
|
|
Type: AccountTypeOAuth,
|
|
}
|
|
require.False(t, account.IsOpenAIPassthroughEnabled())
|
|
})
|
|
}
|
|
|
|
func TestAccount_IsOpenAIOAuthPassthroughEnabled(t *testing.T) {
|
|
t.Run("仅OAuth类型允许返回开启", func(t *testing.T) {
|
|
oauthAccount := &Account{
|
|
Platform: PlatformOpenAI,
|
|
Type: AccountTypeOAuth,
|
|
Extra: map[string]any{
|
|
"openai_passthrough": true,
|
|
},
|
|
}
|
|
require.True(t, oauthAccount.IsOpenAIOAuthPassthroughEnabled())
|
|
|
|
apiKeyAccount := &Account{
|
|
Platform: PlatformOpenAI,
|
|
Type: AccountTypeAPIKey,
|
|
Extra: map[string]any{
|
|
"openai_passthrough": true,
|
|
},
|
|
}
|
|
require.False(t, apiKeyAccount.IsOpenAIOAuthPassthroughEnabled())
|
|
})
|
|
}
|
|
|
|
func TestAccount_IsCodexCLIOnlyEnabled(t *testing.T) {
|
|
t.Run("OpenAI OAuth 开启", func(t *testing.T) {
|
|
account := &Account{
|
|
Platform: PlatformOpenAI,
|
|
Type: AccountTypeOAuth,
|
|
Extra: map[string]any{
|
|
"codex_cli_only": true,
|
|
},
|
|
}
|
|
require.True(t, account.IsCodexCLIOnlyEnabled())
|
|
})
|
|
|
|
t.Run("OpenAI OAuth 关闭", func(t *testing.T) {
|
|
account := &Account{
|
|
Platform: PlatformOpenAI,
|
|
Type: AccountTypeOAuth,
|
|
Extra: map[string]any{
|
|
"codex_cli_only": false,
|
|
},
|
|
}
|
|
require.False(t, account.IsCodexCLIOnlyEnabled())
|
|
})
|
|
|
|
t.Run("字段缺失默认关闭", func(t *testing.T) {
|
|
account := &Account{
|
|
Platform: PlatformOpenAI,
|
|
Type: AccountTypeOAuth,
|
|
Extra: map[string]any{},
|
|
}
|
|
require.False(t, account.IsCodexCLIOnlyEnabled())
|
|
})
|
|
|
|
t.Run("类型非法默认关闭", func(t *testing.T) {
|
|
account := &Account{
|
|
Platform: PlatformOpenAI,
|
|
Type: AccountTypeOAuth,
|
|
Extra: map[string]any{
|
|
"codex_cli_only": "true",
|
|
},
|
|
}
|
|
require.False(t, account.IsCodexCLIOnlyEnabled())
|
|
})
|
|
|
|
t.Run("非 OAuth 账号始终关闭", func(t *testing.T) {
|
|
apiKeyAccount := &Account{
|
|
Platform: PlatformOpenAI,
|
|
Type: AccountTypeAPIKey,
|
|
Extra: map[string]any{
|
|
"codex_cli_only": true,
|
|
},
|
|
}
|
|
require.False(t, apiKeyAccount.IsCodexCLIOnlyEnabled())
|
|
|
|
otherPlatform := &Account{
|
|
Platform: PlatformAnthropic,
|
|
Type: AccountTypeOAuth,
|
|
Extra: map[string]any{
|
|
"codex_cli_only": true,
|
|
},
|
|
}
|
|
require.False(t, otherPlatform.IsCodexCLIOnlyEnabled())
|
|
})
|
|
}
|