惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
Visual Studio Blog
量子位
大猫的无限游戏
大猫的无限游戏
Hugging Face - Blog
Hugging Face - Blog
S
SegmentFault 最新的问题
Blog — PlanetScale
Blog — PlanetScale
月光博客
月光博客
Google DeepMind News
Google DeepMind News
小众软件
小众软件
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
MongoDB | Blog
MongoDB | Blog
B
Blog RSS Feed
博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
B
Blog
博客园 - 聂微东
The GitHub Blog
The GitHub Blog
Recent Announcements
Recent Announcements
Y
Y Combinator Blog
Microsoft Security Blog
Microsoft Security Blog
雷峰网
雷峰网
Jina AI
Jina AI
酷 壳 – CoolShell
酷 壳 – CoolShell

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
test(ui): split chat avatar render coverage · openclaw/op...
steipete · 2026-04-26 · via Recent Commits to openclaw:main

@@ -0,0 +1,87 @@

1+

/* @vitest-environment jsdom */

2+3+

import { render } from "lit";

4+

import { describe, expect, it, vi } from "vitest";

5+

import { renderChatAvatar } from "./chat-avatar.ts";

6+7+

vi.mock("../views/agents-utils.ts", () => ({

8+

isRenderableControlUiAvatarUrl: (value: string) =>

9+

/^data:image\//i.test(value) || (value.startsWith("/") && !value.startsWith("//")),

10+

assistantAvatarFallbackUrl: () => "apple-touch-icon.png",

11+

resolveAssistantTextAvatar: (value: string | null | undefined) => {

12+

if (!value) {

13+

return null;

14+

}

15+

return value.length <= 3 ? value : null;

16+

},

17+

resolveChatAvatarRenderUrl: (

18+

candidate: string | null | undefined,

19+

agent: { identity?: { avatar?: string; avatarUrl?: string } },

20+

) => {

21+

const isRenderableControlUiAvatarUrl = (value: string) =>

22+

/^data:image\//i.test(value) || (value.startsWith("/") && !value.startsWith("//"));

23+

if (typeof candidate === "string" && candidate.startsWith("blob:")) {

24+

return candidate;

25+

}

26+

for (const value of [candidate, agent.identity?.avatarUrl, agent.identity?.avatar]) {

27+

if (typeof value === "string" && isRenderableControlUiAvatarUrl(value)) {

28+

return value;

29+

}

30+

}

31+

return null;

32+

},

33+

}));

34+35+

function renderAvatar(params: Parameters<typeof renderChatAvatar>) {

36+

const container = document.createElement("div");

37+

render(renderChatAvatar(...params), container);

38+

return container.querySelector<HTMLElement>(".chat-avatar");

39+

}

40+41+

describe("renderChatAvatar", () => {

42+

it("uses the assistant fallback when no assistant avatar is configured", () => {

43+

const avatar = renderAvatar(["assistant"]);

44+45+

expect(avatar).not.toBeNull();

46+

expect(avatar?.getAttribute("src")).toBe("apple-touch-icon.png");

47+

});

48+49+

it("renders assistant fallback, blob image, and text avatars", () => {

50+

const remoteAvatar = renderAvatar([

51+

"assistant",

52+

{ avatar: "https://example.com/avatar.png", name: "Val" },

53+

]);

54+

expect(remoteAvatar?.getAttribute("src")).toBe("apple-touch-icon.png");

55+56+

const blobAvatar = renderAvatar(["assistant", { avatar: "blob:managed-image", name: "Val" }]);

57+

expect(blobAvatar?.tagName).toBe("IMG");

58+

expect(blobAvatar?.getAttribute("src")).toBe("blob:managed-image");

59+60+

const textAvatar = renderAvatar(["assistant", { avatar: "VC", name: "Val" }]);

61+

expect(textAvatar?.tagName).toBe("DIV");

62+

expect(textAvatar?.textContent).toContain("VC");

63+

expect(textAvatar?.getAttribute("aria-label")).toBe("Val");

64+

});

65+66+

it("uses the assistant fallback while authenticated avatar routes are loading", () => {

67+

const avatar = renderAvatar([

68+

"assistant",

69+

{ avatar: "/avatar/main", name: "OpenClaw" },

70+

undefined,

71+

"",

72+

"session-token",

73+

]);

74+75+

expect(avatar?.getAttribute("src")).toBe("apple-touch-icon.png");

76+

});

77+78+

it("renders local user image and text avatars", () => {

79+

const imageAvatar = renderAvatar(["user", undefined, { name: "Buns", avatar: "/avatar/user" }]);

80+

expect(imageAvatar?.getAttribute("src")).toBe("/avatar/user");

81+

expect(imageAvatar?.getAttribute("alt")).toBe("Buns");

82+83+

const textAvatar = renderAvatar(["user", undefined, { name: "Buns", avatar: "AB" }]);

84+

expect(textAvatar?.tagName).toBe("DIV");

85+

expect(textAvatar?.textContent).toContain("AB");

86+

});

87+

});