Files
sub2api/backend/internal/service/grok_search_count_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

86 lines
4.1 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package service
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestCountGrokNativeSearchCallsFromJSONBytes(t *testing.T) {
t.Parallel()
require.Equal(t, 0, countGrokNativeSearchCallsFromJSONBytes(nil))
require.Equal(t, 0, countGrokNativeSearchCallsFromJSONBytes([]byte(`{"output":[]}`)))
body := []byte(`{"output":[
{"type":"web_search_call","id":"ws1","status":"completed"},
{"type":"x_search_call","id":"xs1"},
{"type":"function_call","name":"tool_search","call_id":"ts1"},
{"type":"function_call","name":"lookup","call_id":"other"}
]}`)
require.Equal(t, 3, countGrokNativeSearchCallsFromJSONBytes(body))
}
func TestCountGrokNativeSearchCallsFromJSONBytes_PrefersNestedResponse(t *testing.T) {
t.Parallel()
body := []byte(`{"output":[{"type":"web_search_call","id":"duplicate"}],"response":{"output":[{"type":"web_search_call","id":"duplicate"},{"type":"x_search_call","id":"xs1"}]}}`)
require.Equal(t, 2, countGrokNativeSearchCallsFromJSONBytes(body))
}
func TestCountGrokNativeSearchCallsFromJSONBytes_FallsBackWhenNestedOutputNull(t *testing.T) {
t.Parallel()
body := []byte(`{"output":[{"type":"web_search_call","id":"ws1"}],"response":{"output":null}}`)
require.Equal(t, 1, countGrokNativeSearchCallsFromJSONBytes(body))
}
func TestCountGrokNativeSearchCallsFromSSEBodyDedups(t *testing.T) {
t.Parallel()
sse := stringsJoin(
`data: {"type":"response.output_item.done","item":{"type":"web_search_call","id":"ws1","call_id":"c1"}}`,
`data: {"type":"response.output_item.done","item":{"type":"web_search_call","id":"ws1","call_id":"c1"}}`,
`data: {"type":"response.completed","response":{"output":[{"type":"web_search_call","id":"ws1","call_id":"c1"},{"type":"x_search_call","id":"xs1","call_id":"c2"}]}}`,
)
require.Equal(t, 2, countGrokNativeSearchCallsFromSSEBody(sse))
}
func TestCountGrokNativeSearchCallsInSSEDataDedup_LiveStreamPath(t *testing.T) {
t.Parallel()
// Mirrors the live streaming accumulator: item.done then response.completed
// for the same call_id must bill once (regression for ~2× surcharge).
seen := make(map[string]struct{})
done := []byte(`{"type":"response.output_item.done","item":{"type":"web_search_call","id":"ws1","call_id":"c1"}}`)
completed := []byte(`{"type":"response.completed","response":{"output":[{"type":"web_search_call","id":"ws1","call_id":"c1"},{"type":"x_search_call","id":"xs1","call_id":"c2"}]}}`)
require.Equal(t, 1, countGrokNativeSearchCallsInSSEDataDedup(done, seen))
require.Equal(t, 1, countGrokNativeSearchCallsInSSEDataDedup(completed, seen))
// Raw (no-dedup) path still double-counts the same envelope pair.
require.Equal(t, 1, countGrokNativeSearchCallsInSSEData(done))
require.Equal(t, 2, countGrokNativeSearchCallsInSSEData(completed))
}
func TestCountGrokNativeSearchCallsInSSEDataDedup_NoIDStillDedups(t *testing.T) {
t.Parallel()
// Upstream sometimes omits call_id/id; synthetic keys must still prevent 2×.
seen := make(map[string]struct{})
done := []byte(`{"type":"response.output_item.done","item":{"type":"web_search_call"}}`)
completed := []byte(`{"type":"response.completed","response":{"output":[{"type":"web_search_call"}]}}`)
require.Equal(t, 1, countGrokNativeSearchCallsInSSEDataDedup(done, seen))
require.Equal(t, 0, countGrokNativeSearchCallsInSSEDataDedup(completed, seen))
}
func TestCountGrokNativeSearchCallsInSSEDataDedup_MultipleNoIDCalls(t *testing.T) {
t.Parallel()
seen := make(map[string]struct{})
firstDone := []byte(`{"type":"response.output_item.done","item":{"type":"web_search_call"}}`)
secondDone := []byte(`{"type":"response.output_item.done","item":{"type":"web_search_call"}}`)
completed := []byte(`{"type":"response.completed","response":{"output":[{"type":"web_search_call"},{"type":"web_search_call"}]}}`)
require.Equal(t, 1, countGrokNativeSearchCallsInSSEDataDedup(firstDone, seen))
require.Equal(t, 1, countGrokNativeSearchCallsInSSEDataDedup(secondDone, seen))
require.Equal(t, 0, countGrokNativeSearchCallsInSSEDataDedup(completed, seen))
}
func stringsJoin(lines ...string) string {
out := ""
for _, l := range lines {
out += l + "\n\n"
}
return out
}