Files
sub2api/backend/internal/service/openai_gateway_responses_client_tools_test.go
T
李建琦 6d655c9903
Release / update-version (push) Has been cancelled
Release / build-frontend (push) Has been cancelled
Release / release (push) Has been cancelled
Release / sync-version-file (push) Has been cancelled
CI / shell (push) Canceled after 0s
CI / test (push) Canceled after 0s
CI / frontend (push) Canceled after 0s
CI / golangci-lint (push) Canceled after 0s
Security Scan / backend-security (push) Canceled after 0s
Security Scan / frontend-security (push) Canceled after 0s
Sub2API v1.0 - AI API 网关(二开初始版本,基于上游 Wei-Shaw/sub2api)
2026-08-21 18:30:13 +08:00

147 lines
6.4 KiB
Go

package service
import (
"bytes"
"context"
"io"
"net/http"
"net/http/httptest"
"strings"
"testing"
"time"
"github.com/Wei-Shaw/sub2api/internal/config"
"github.com/Wei-Shaw/sub2api/internal/pkg/apicompat"
"github.com/gin-gonic/gin"
"github.com/stretchr/testify/require"
"github.com/tidwall/gjson"
)
func openAIClientToolsRequest(stream bool) []byte {
streamValue := "false"
if stream {
streamValue = "true"
}
return []byte(`{"model":"gpt-5.4","input":"fix it","stream":` + streamValue + `,"tools":[{"type":"custom","name":"exec"},{"type":"custom","name":"apply_patch"}]}`)
}
func assertOpenAIClientToolsLowered(t *testing.T, body []byte) {
t.Helper()
for index, name := range []string{"exec", "apply_patch"} {
tool := gjson.GetBytes(body, "tools."+string(rune('0'+index)))
require.Equal(t, "function", tool.Get("type").String())
require.Equal(t, name, tool.Get("name").String())
require.Equal(t, "string", tool.Get("parameters.properties.input.type").String())
}
}
func openAIClientToolsTestService(upstream *httpUpstreamRecorder) *OpenAIGatewayService {
return &OpenAIGatewayService{
httpUpstream: upstream,
cfg: &config.Config{Security: config.SecurityConfig{
URLAllowlist: config.URLAllowlistConfig{Enabled: false},
}},
}
}
func TestAdaptOpenAIResponsesClientToolsLeavesNamespaceOnlyBodyUnchanged(t *testing.T) {
body := []byte(`{
"model": "gpt-5.5",
"tools": [{"type": "namespace", "name": "code_tools", "tools": [{"type": "function", "name": "run"}]}],
"tool_choice": "auto"
}`)
adapted, mapping, err := adaptOpenAIResponsesClientTools(body)
require.NoError(t, err)
require.Equal(t, body, adapted)
require.Empty(t, mapping.CustomTools)
require.Empty(t, mapping.NamespaceTools)
require.False(t, mapping.ToolSearch)
}
func TestAdaptOpenAIResponsesClientToolsRejectsTrailingData(t *testing.T) {
tests := map[string][]byte{
"trailing garbage": append(openAIClientToolsRequest(false), []byte(` garbage`)...),
"second JSON document": append(openAIClientToolsRequest(false), []byte(` {"model":"other"}`)...),
}
for name, body := range tests {
t.Run(name, func(t *testing.T) {
adapted, mapping, err := adaptOpenAIResponsesClientTools(body)
require.ErrorContains(t, err, "decode OpenAI Responses client tools trailing data")
require.Equal(t, body, adapted)
require.Empty(t, mapping)
})
}
}
func TestClearOpenAIResponsesClientToolMappingRemovesStaleContextState(t *testing.T) {
gin.SetMode(gin.TestMode)
c, _ := gin.CreateTestContext(httptest.NewRecorder())
c.Set(openAIResponsesClientToolMappingContextKey, apicompat.ResponsesClientToolMapping{CustomTools: map[string]bool{"exec": true}})
clearOpenAIResponsesClientToolMapping(c)
_, ok := openAIResponsesClientToolMapping(c)
require.False(t, ok)
}
func TestOpenAIPassthroughAPIKeyRestoresClientToolsNonStreaming(t *testing.T) {
gin.SetMode(gin.TestMode)
body := openAIClientToolsRequest(false)
recorder := httptest.NewRecorder()
c, _ := gin.CreateTestContext(recorder)
c.Request = httptest.NewRequest(http.MethodPost, "/v1/responses", bytes.NewReader(body))
upstream := &httpUpstreamRecorder{resp: &http.Response{
StatusCode: http.StatusOK,
Header: http.Header{"Content-Type": []string{"application/json"}},
Body: io.NopCloser(strings.NewReader(`{"id":"resp_tools","status":"completed","output":[
{"type":"function_call","id":"i1","call_id":"c1","name":"exec","arguments":"{\"input\":\"pwd\"}"},
{"type":"function_call","id":"i2","call_id":"c2","name":"apply_patch","arguments":"{\"input\":\"*** Begin Patch\"}"}],"usage":{}}`)),
}}
svc := openAIClientToolsTestService(upstream)
account := &Account{ID: 5659, Platform: PlatformOpenAI, Type: AccountTypeAPIKey, Credentials: map[string]any{"api_key": "test-key"}}
result, err := svc.forwardOpenAIPassthrough(context.Background(), c, account, body, body, "gpt-5.4", false, nil, false, time.Now())
require.NoError(t, err)
require.NotNil(t, result)
assertOpenAIClientToolsLowered(t, upstream.lastBody)
require.Equal(t, "custom_tool_call", gjson.Get(recorder.Body.String(), "output.0.type").String())
require.Equal(t, "pwd", gjson.Get(recorder.Body.String(), "output.0.input").String())
require.Equal(t, "custom_tool_call", gjson.Get(recorder.Body.String(), "output.1.type").String())
require.Equal(t, "*** Begin Patch", gjson.Get(recorder.Body.String(), "output.1.input").String())
}
func TestOpenAIPassthroughAPIKeyRestoresClientToolsStreaming(t *testing.T) {
gin.SetMode(gin.TestMode)
body := openAIClientToolsRequest(true)
recorder := httptest.NewRecorder()
c, _ := gin.CreateTestContext(recorder)
c.Request = httptest.NewRequest(http.MethodPost, "/v1/responses", bytes.NewReader(body))
sse := strings.Join([]string{
`data: {"type":"response.output_item.added","sequence_number":0,"output_index":0,"item":{"type":"function_call","id":"i1","call_id":"c1","name":"apply_patch","status":"in_progress"}}`,
`data: {"type":"response.function_call_arguments.done","sequence_number":1,"item_id":"i1","call_id":"c1","name":"apply_patch","arguments":"{\"input\":\"*** Begin Patch\"}"}`,
`data: {"type":"response.output_item.done","sequence_number":2,"output_index":0,"item":{"type":"function_call","id":"i1","call_id":"c1","name":"apply_patch","arguments":"{\"input\":\"*** Begin Patch\"}","status":"completed"}}`,
`data: {"type":"response.completed","sequence_number":3,"response":{"id":"resp_stream_tools","status":"completed","output":[{"type":"function_call","id":"i1","call_id":"c1","name":"apply_patch","arguments":"{\"input\":\"*** Begin Patch\"}"}],"usage":{"input_tokens":1,"output_tokens":1}}}`,
}, "\n\n") + "\n\n"
upstream := &httpUpstreamRecorder{resp: &http.Response{StatusCode: http.StatusOK, Header: http.Header{"Content-Type": []string{"text/event-stream"}}, Body: io.NopCloser(strings.NewReader(sse))}}
svc := openAIClientToolsTestService(upstream)
account := &Account{ID: 5660, Platform: PlatformOpenAI, Type: AccountTypeAPIKey, Credentials: map[string]any{"api_key": "test-key"}}
result, err := svc.forwardOpenAIPassthrough(context.Background(), c, account, body, body, "gpt-5.4", false, nil, true, time.Now())
require.NoError(t, err)
require.NotNil(t, result)
assertOpenAIClientToolsLowered(t, upstream.lastBody)
output := recorder.Body.String()
require.Contains(t, output, `"type":"custom_tool_call"`)
require.Contains(t, output, `"type":"response.custom_tool_call_input.done"`)
require.Contains(t, output, `"input":"*** Begin Patch"`)
require.NotContains(t, output, `"input":{`)
}