mirror of
https://gitee.com/wanwujie/sub2api
synced 2026-04-19 14:24:45 +08:00
63 lines
1.5 KiB
Go
63 lines
1.5 KiB
Go
|
|
package service
|
||
|
|
|
||
|
|
import (
|
||
|
|
"testing"
|
||
|
|
|
||
|
|
"github.com/stretchr/testify/require"
|
||
|
|
)
|
||
|
|
|
||
|
|
func TestAccount_IsAnthropicAPIKeyPassthroughEnabled(t *testing.T) {
|
||
|
|
t.Run("Anthropic API Key 开启", func(t *testing.T) {
|
||
|
|
account := &Account{
|
||
|
|
Platform: PlatformAnthropic,
|
||
|
|
Type: AccountTypeAPIKey,
|
||
|
|
Extra: map[string]any{
|
||
|
|
"anthropic_passthrough": true,
|
||
|
|
},
|
||
|
|
}
|
||
|
|
require.True(t, account.IsAnthropicAPIKeyPassthroughEnabled())
|
||
|
|
})
|
||
|
|
|
||
|
|
t.Run("Anthropic API Key 关闭", func(t *testing.T) {
|
||
|
|
account := &Account{
|
||
|
|
Platform: PlatformAnthropic,
|
||
|
|
Type: AccountTypeAPIKey,
|
||
|
|
Extra: map[string]any{
|
||
|
|
"anthropic_passthrough": false,
|
||
|
|
},
|
||
|
|
}
|
||
|
|
require.False(t, account.IsAnthropicAPIKeyPassthroughEnabled())
|
||
|
|
})
|
||
|
|
|
||
|
|
t.Run("字段类型非法默认关闭", func(t *testing.T) {
|
||
|
|
account := &Account{
|
||
|
|
Platform: PlatformAnthropic,
|
||
|
|
Type: AccountTypeAPIKey,
|
||
|
|
Extra: map[string]any{
|
||
|
|
"anthropic_passthrough": "true",
|
||
|
|
},
|
||
|
|
}
|
||
|
|
require.False(t, account.IsAnthropicAPIKeyPassthroughEnabled())
|
||
|
|
})
|
||
|
|
|
||
|
|
t.Run("非 Anthropic API Key 账号始终关闭", func(t *testing.T) {
|
||
|
|
oauth := &Account{
|
||
|
|
Platform: PlatformAnthropic,
|
||
|
|
Type: AccountTypeOAuth,
|
||
|
|
Extra: map[string]any{
|
||
|
|
"anthropic_passthrough": true,
|
||
|
|
},
|
||
|
|
}
|
||
|
|
require.False(t, oauth.IsAnthropicAPIKeyPassthroughEnabled())
|
||
|
|
|
||
|
|
openai := &Account{
|
||
|
|
Platform: PlatformOpenAI,
|
||
|
|
Type: AccountTypeAPIKey,
|
||
|
|
Extra: map[string]any{
|
||
|
|
"anthropic_passthrough": true,
|
||
|
|
},
|
||
|
|
}
|
||
|
|
require.False(t, openai.IsAnthropicAPIKeyPassthroughEnabled())
|
||
|
|
})
|
||
|
|
}
|