mirror of
https://github.com/memohai/Memoh.git
synced 2026-04-27 07:16:19 +09:00
6aebbe9279
Major changes: 1. Core Architecture: Decoupled Bots from Users. Bots now have independent lifecycles, member management (bot_members), and dedicated configurations. 2. Channel Gateway: - Implemented a unified Channel Manager supporting Feishu, Telegram, and Local (Web/CLI) adapters. - Added message processing pipeline to normalize interactions across different platforms. - Introduced a Contact system for identity binding and guest access policies. 3. Database & Tooling: - Consolidated all migrations into 0001_init with updated schema for bots, channels, and contacts. - Optimized sqlc.yaml to automatically track the migrations directory. 4. Agent Enhancements: - Introduced ToolContext to provide Agents with platform-aware execution capabilities (e.g., messaging, contact lookups). - Added tool logging and fallback mechanisms for toolChoice execution. 5. UI & Docs: Updated frontend stores, UI components, and Swagger documentation to align with the new Bot-centric model.
60 lines
1.3 KiB
Go
60 lines
1.3 KiB
Go
package channel
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestResolveTargetFromUserConfigTelegram(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
target, err := resolveTargetFromUserConfig(ChannelTelegram, map[string]interface{}{
|
|
"chat_id": "123",
|
|
"user_id": "456",
|
|
"username": "alice",
|
|
})
|
|
if err != nil {
|
|
t.Fatalf("expected no error, got %v", err)
|
|
}
|
|
if target != "123" {
|
|
t.Fatalf("unexpected target: %s", target)
|
|
}
|
|
}
|
|
|
|
func TestResolveTargetFromUserConfigTelegramUsername(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
target, err := resolveTargetFromUserConfig(ChannelTelegram, map[string]interface{}{
|
|
"username": "alice",
|
|
})
|
|
if err != nil {
|
|
t.Fatalf("expected no error, got %v", err)
|
|
}
|
|
if target != "@alice" {
|
|
t.Fatalf("unexpected target: %s", target)
|
|
}
|
|
}
|
|
|
|
func TestResolveTargetFromUserConfigFeishu(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
target, err := resolveTargetFromUserConfig(ChannelFeishu, map[string]interface{}{
|
|
"open_id": "ou_123",
|
|
"user_id": "u_123",
|
|
})
|
|
if err != nil {
|
|
t.Fatalf("expected no error, got %v", err)
|
|
}
|
|
if target != "open_id:ou_123" {
|
|
t.Fatalf("unexpected target: %s", target)
|
|
}
|
|
}
|
|
|
|
func TestResolveTargetFromUserConfigUnsupported(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
_, err := resolveTargetFromUserConfig("unknown", map[string]interface{}{})
|
|
if err == nil {
|
|
t.Fatalf("expected error, got nil")
|
|
}
|
|
}
|