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

推荐订阅源

小众软件
小众软件
WordPress大学
WordPress大学
IT之家
IT之家
G
Google Developers Blog
Vercel News
Vercel News
阮一峰的网络日志
阮一峰的网络日志
博客园 - 三生石上(FineUI控件)
Engineering at Meta
Engineering at Meta
Martin Fowler
Martin Fowler
V
V2EX
爱范儿
爱范儿
Hugging Face - Blog
Hugging Face - Blog
Apple Machine Learning Research
Apple Machine Learning Research
B
Blog
V
Visual Studio Blog
有赞技术团队
有赞技术团队
I
InfoQ
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
月光博客
月光博客
J
Java Code Geeks
Stack Overflow Blog
Stack Overflow Blog
P
Proofpoint News Feed
云风的 BLOG
云风的 BLOG
雷峰网
雷峰网

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
fix(canvas): remove stale A2UI compatibility assets · ope...
vincentkoc · 2026-06-22 · via Recent Commits to openclaw:main
11

// Canvas tests cover copy a2ui plugin behavior.

2-

import { createHash } from "node:crypto";

32

import fs from "node:fs/promises";

43

import path from "node:path";

54

import { resolvePreferredOpenClawTmpDir, withTempWorkspace } from "openclaw/plugin-sdk/temp-path";

@@ -8,24 +7,6 @@ import { copyA2uiAssets } from "./copy-a2ui.mjs";

8798

const ORIGINAL_SKIP_MISSING = process.env.OPENCLAW_A2UI_SKIP_MISSING;

109

const ORIGINAL_SPARSE_PROFILE = process.env.OPENCLAW_SPARSE_PROFILE;

11-

const REQUIRED_COMPATIBILITY_ASSETS = [

12-

{

13-

path: path.join("assets", "providers", "google.png"),

14-

sha256: "cea7e50b816514db6ca0f21d9545173fae1669643c71ed475c45c7f8440dac53",

15-

},

16-

{

17-

path: path.join("assets", "providers", "x.png"),

18-

sha256: "307c5dbde1ad66164fcfa1d9787435d99906fa78e7ba7d068f2aa705e86ff5aa",

19-

},

20-

{

21-

path: "granola.png",

22-

sha256: "16bc6b7f1b1229c8b1984c64520c30141b62c24b156c7590f86ca50bdc494d34",

23-

},

24-

];

25-26-

function sha256(bytes: Buffer): string {

27-

return createHash("sha256").update(bytes).digest("hex");

28-

}

29103011

describe("canvas a2ui copy", () => {

3112

beforeEach(() => {

@@ -54,19 +35,6 @@ describe("canvas a2ui copy", () => {

5435

);

5536

}

563757-

it("ships provider assets and the legacy granola compatibility image", async () => {

58-

const srcDir = path.join(process.cwd(), "extensions", "canvas", "src", "host", "a2ui");

59-

const pngSignature = [0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a];

60-61-

for (const asset of REQUIRED_COMPATIBILITY_ASSETS) {

62-

const bytes = await fs.readFile(path.join(srcDir, asset.path));

63-64-

expect([...bytes.subarray(0, pngSignature.length)]).toEqual(pngSignature);

65-

expect(bytes.length).toBeGreaterThan(64);

66-

expect(sha256(bytes)).toBe(asset.sha256);

67-

}

68-

});

69-7038

it("throws a helpful error when assets are missing", async () => {

7139

await withA2uiFixture(async (dir) => {

7240

await expect(copyA2uiAssets({ srcDir: dir, outDir: path.join(dir, "out") })).rejects.toThrow(

@@ -112,29 +80,26 @@ describe("canvas a2ui copy", () => {

11280

});

11381

});

11482115-

it("preserves provider assets and the legacy granola compatibility image", async () => {

83+

it("copies nested bundled assets and removes stale output", async () => {

11684

await withA2uiFixture(async (dir) => {

11785

const srcDir = path.join(dir, "src");

11886

const outDir = path.join(dir, "dist");

119-

const providerAssetDir = path.join(srcDir, "assets", "providers");

120-

await fs.mkdir(providerAssetDir, { recursive: true });

87+

const nestedAssetDir = path.join(srcDir, "assets", "demo");

88+

await fs.mkdir(nestedAssetDir, { recursive: true });

89+

await fs.mkdir(outDir, { recursive: true });

12190

await fs.writeFile(path.join(srcDir, "index.html"), "<html></html>", "utf8");

12291

await fs.writeFile(path.join(srcDir, "a2ui.bundle.js"), "console.log(1);", "utf8");

123-

await fs.writeFile(path.join(providerAssetDir, "google.png"), "google-asset", "utf8");

124-

await fs.writeFile(path.join(providerAssetDir, "x.png"), "x-asset", "utf8");

125-

await fs.writeFile(path.join(srcDir, "granola.png"), "legacy-granola-asset", "utf8");

92+

await fs.writeFile(path.join(nestedAssetDir, "sample.txt"), "nested-asset", "utf8");

93+

await fs.writeFile(path.join(outDir, "stale.txt"), "stale-output", "utf8");

1269412795

await copyA2uiAssets({ srcDir, outDir });

1289612997

await expect(

130-

fs.readFile(path.join(outDir, "assets", "providers", "google.png"), "utf8"),

131-

).resolves.toBe("google-asset");

132-

await expect(

133-

fs.readFile(path.join(outDir, "assets", "providers", "x.png"), "utf8"),

134-

).resolves.toBe("x-asset");

135-

await expect(fs.readFile(path.join(outDir, "granola.png"), "utf8")).resolves.toBe(

136-

"legacy-granola-asset",

137-

);

98+

fs.readFile(path.join(outDir, "assets", "demo", "sample.txt"), "utf8"),

99+

).resolves.toBe("nested-asset");

100+

await expect(fs.stat(path.join(outDir, "stale.txt"))).rejects.toMatchObject({

101+

code: "ENOENT",

102+

});

138103

});

139104

});

140105

});