2bbf42b741
Remove Agent Desk users, roles, login sessions, tokens, and local permission persistence. Expose the backend as an embeddable ai-agent module with host-provided subject lookup and operation authorization callbacks, and complete the frontend/backend repository split.
30 lines
940 B
Go
30 lines
940 B
Go
package services
|
|
|
|
import (
|
|
"code.tczkiot.com/wlw/ai-agent/internal/pkg/enums"
|
|
"code.tczkiot.com/wlw/ai-agent/internal/pkg/i18nx"
|
|
"testing"
|
|
)
|
|
|
|
func TestDashboardTextUsesEnglishLocale(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
if got := dashboardText(i18nx.LocaleEnUS, "alert.pendingLongWait.title"); got != "Queued conversations are piling up" {
|
|
t.Fatalf("dashboardText() = %q", got)
|
|
}
|
|
if got := dashboardText(i18nx.LocaleZhCN, "alert.pendingLongWait.title"); got != "待接入会话堆积" {
|
|
t.Fatalf("dashboardText() = %q", got)
|
|
}
|
|
}
|
|
|
|
func TestConversationStatusLabelUsesEnglishLocale(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
if got := conversationStatusLabel(enums.IMConversationStatusPending, i18nx.LocaleEnUS); got != "Queued" {
|
|
t.Fatalf("conversationStatusLabel() = %q", got)
|
|
}
|
|
if got := conversationStatusLabel(enums.IMConversationStatusPending, i18nx.LocaleZhCN); got != "待接入" {
|
|
t.Fatalf("conversationStatusLabel() = %q", got)
|
|
}
|
|
}
|