mirror of
https://gitee.com/wanwujie/sub2api
synced 2026-04-21 23:24:46 +08:00
73 lines
1.7 KiB
Go
73 lines
1.7 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())
|
||
|
|
})
|
||
|
|
}
|