mirror of
https://github.com/memohai/Memoh.git
synced 2026-04-27 07:16:19 +09:00
202 lines
5.9 KiB
Go
202 lines
5.9 KiB
Go
package qq
|
|
|
|
import (
|
|
"context"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/memohai/memoh/internal/channel"
|
|
)
|
|
|
|
func TestQQOutboundStreamFlushesBufferedTextOnFinal(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
var sent []channel.OutboundMessage
|
|
stream := &qqOutboundStream{
|
|
target: "c2c:user-openid",
|
|
send: func(_ context.Context, msg channel.OutboundMessage) error {
|
|
sent = append(sent, msg)
|
|
return nil
|
|
},
|
|
}
|
|
|
|
ctx := context.Background()
|
|
if err := stream.Push(ctx, channel.StreamEvent{Type: channel.StreamEventStatus, Status: channel.StreamStatusStarted}); err != nil {
|
|
t.Fatalf("push status: %v", err)
|
|
}
|
|
if err := stream.Push(ctx, channel.StreamEvent{Type: channel.StreamEventDelta, Delta: "Hi "}); err != nil {
|
|
t.Fatalf("push delta1: %v", err)
|
|
}
|
|
if err := stream.Push(ctx, channel.StreamEvent{Type: channel.StreamEventDelta, Delta: "there"}); err != nil {
|
|
t.Fatalf("push delta2: %v", err)
|
|
}
|
|
if err := stream.Push(ctx, channel.StreamEvent{Type: channel.StreamEventFinal, Final: &channel.StreamFinalizePayload{}}); err != nil {
|
|
t.Fatalf("push final: %v", err)
|
|
}
|
|
|
|
if len(sent) != 1 {
|
|
t.Fatalf("expected one send, got %d", len(sent))
|
|
}
|
|
if sent[0].Target != "c2c:user-openid" {
|
|
t.Fatalf("unexpected target: %s", sent[0].Target)
|
|
}
|
|
if sent[0].Message.PlainText() != "Hi there" {
|
|
t.Fatalf("unexpected text: %q", sent[0].Message.PlainText())
|
|
}
|
|
}
|
|
|
|
func TestQQOutboundStreamFinalUsesExplicitMessageAndBufferedAttachments(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
var sent []channel.OutboundMessage
|
|
stream := &qqOutboundStream{
|
|
target: "group:group-openid",
|
|
send: func(_ context.Context, msg channel.OutboundMessage) error {
|
|
sent = append(sent, msg)
|
|
return nil
|
|
},
|
|
}
|
|
|
|
ctx := context.Background()
|
|
if err := stream.Push(ctx, channel.StreamEvent{
|
|
Type: channel.StreamEventAttachment,
|
|
Attachments: []channel.Attachment{{Type: channel.AttachmentImage, URL: "https://example.com/a.png"}},
|
|
}); err != nil {
|
|
t.Fatalf("push attachment: %v", err)
|
|
}
|
|
if err := stream.Push(ctx, channel.StreamEvent{
|
|
Type: channel.StreamEventFinal,
|
|
Final: &channel.StreamFinalizePayload{Message: channel.Message{
|
|
Text: "done",
|
|
}},
|
|
}); err != nil {
|
|
t.Fatalf("push final: %v", err)
|
|
}
|
|
|
|
if len(sent) != 1 {
|
|
t.Fatalf("expected one send, got %d", len(sent))
|
|
}
|
|
if sent[0].Message.PlainText() != "done" {
|
|
t.Fatalf("unexpected text: %q", sent[0].Message.PlainText())
|
|
}
|
|
if len(sent[0].Message.Attachments) != 1 {
|
|
t.Fatalf("unexpected attachments: %d", len(sent[0].Message.Attachments))
|
|
}
|
|
}
|
|
|
|
func TestQQOutboundStreamFinalPrefersBufferedVisibleText(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
var sent []channel.OutboundMessage
|
|
stream := &qqOutboundStream{
|
|
target: "c2c:user-openid",
|
|
send: func(_ context.Context, msg channel.OutboundMessage) error {
|
|
sent = append(sent, msg)
|
|
return nil
|
|
},
|
|
}
|
|
|
|
ctx := context.Background()
|
|
if err := stream.Push(ctx, channel.StreamEvent{Type: channel.StreamEventDelta, Delta: "visible "}); err != nil {
|
|
t.Fatalf("push delta1: %v", err)
|
|
}
|
|
if err := stream.Push(ctx, channel.StreamEvent{Type: channel.StreamEventDelta, Delta: "answer"}); err != nil {
|
|
t.Fatalf("push delta2: %v", err)
|
|
}
|
|
if err := stream.Push(ctx, channel.StreamEvent{
|
|
Type: channel.StreamEventFinal,
|
|
Final: &channel.StreamFinalizePayload{Message: channel.Message{
|
|
Text: "internal trace\nvisible answer",
|
|
}},
|
|
}); err != nil {
|
|
t.Fatalf("push final: %v", err)
|
|
}
|
|
|
|
if len(sent) != 1 {
|
|
t.Fatalf("expected one send, got %d", len(sent))
|
|
}
|
|
if got := sent[0].Message.PlainText(); got != "visible answer" {
|
|
t.Fatalf("unexpected text: %q", got)
|
|
}
|
|
}
|
|
|
|
func TestQQOutboundStreamIgnoresLaterTextOnlyFinalAfterBufferedReply(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
var sent []channel.OutboundMessage
|
|
stream := &qqOutboundStream{
|
|
target: "c2c:user-openid",
|
|
send: func(_ context.Context, msg channel.OutboundMessage) error {
|
|
sent = append(sent, msg)
|
|
return nil
|
|
},
|
|
}
|
|
|
|
ctx := context.Background()
|
|
if err := stream.Push(ctx, channel.StreamEvent{Type: channel.StreamEventDelta, Delta: "visible answer"}); err != nil {
|
|
t.Fatalf("push delta: %v", err)
|
|
}
|
|
if err := stream.Push(ctx, channel.StreamEvent{Type: channel.StreamEventFinal, Final: &channel.StreamFinalizePayload{}}); err != nil {
|
|
t.Fatalf("push first final: %v", err)
|
|
}
|
|
if err := stream.Push(ctx, channel.StreamEvent{
|
|
Type: channel.StreamEventFinal,
|
|
Final: &channel.StreamFinalizePayload{Message: channel.Message{
|
|
Text: "我需要按照用户的要求,在工具调用后完整复述。",
|
|
}},
|
|
}); err != nil {
|
|
t.Fatalf("push second final: %v", err)
|
|
}
|
|
|
|
if len(sent) != 1 {
|
|
t.Fatalf("expected 1 outbound message, got %d", len(sent))
|
|
}
|
|
if got := sent[0].Message.PlainText(); got != "visible answer" {
|
|
t.Fatalf("unexpected text: %q", got)
|
|
}
|
|
}
|
|
|
|
func TestQQOutboundStreamRejectsAfterClose(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
stream := &qqOutboundStream{}
|
|
if err := stream.Close(context.Background()); err != nil {
|
|
t.Fatalf("close: %v", err)
|
|
}
|
|
if err := stream.Push(context.Background(), channel.StreamEvent{
|
|
Type: channel.StreamEventDelta,
|
|
Delta: "x",
|
|
}); err == nil {
|
|
t.Fatal("expected closed error")
|
|
}
|
|
}
|
|
|
|
func TestQQOutboundStreamErrorRedactsRegisteredTokenFragments(t *testing.T) {
|
|
channel.ResetIMErrorSecretsForTest()
|
|
t.Cleanup(channel.ResetIMErrorSecretsForTest)
|
|
|
|
const token = "qq-token-ABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
|
channel.SetIMErrorSecrets("test", token)
|
|
prefixHalf := token[:len(token)/2]
|
|
|
|
var sent []channel.OutboundMessage
|
|
stream := &qqOutboundStream{
|
|
target: "c2c:user-openid",
|
|
send: func(_ context.Context, msg channel.OutboundMessage) error {
|
|
sent = append(sent, msg)
|
|
return nil
|
|
},
|
|
}
|
|
|
|
err := stream.Push(context.Background(), channel.StreamEvent{Type: channel.StreamEventError, Error: "failed: " + prefixHalf})
|
|
if err != nil {
|
|
t.Fatalf("push error: %v", err)
|
|
}
|
|
if len(sent) != 1 {
|
|
t.Fatalf("expected one outbound message, got %d", len(sent))
|
|
}
|
|
if got := sent[0].Message.PlainText(); strings.Contains(got, prefixHalf) {
|
|
t.Fatalf("expected redacted token fragment, got %q", got)
|
|
}
|
|
}
|