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

推荐订阅源

Martin Fowler
Martin Fowler
博客园 - 三生石上(FineUI控件)
WordPress大学
WordPress大学
博客园_首页
宝玉的分享
宝玉的分享
S
SegmentFault 最新的问题
Jina AI
Jina AI
Hugging Face - Blog
Hugging Face - Blog
V
Visual Studio Blog
美团技术团队
IT之家
IT之家
罗磊的独立博客
Blog — PlanetScale
Blog — PlanetScale
Google DeepMind News
Google DeepMind News
月光博客
月光博客
Microsoft Azure Blog
Microsoft Azure Blog
H
Help Net Security
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
博客园 - 叶小钗
M
MIT News - Artificial intelligence
B
Blog RSS Feed
有赞技术团队
有赞技术团队
Y
Y Combinator 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
test: cover sdk gateway integration · openclaw/openclaw@d...
steipete · 2026-04-30 · via Recent Commits to openclaw:main

@@ -0,0 +1,111 @@

1+

import { spawn } from "node:child_process";

2+

import fs from "node:fs/promises";

3+

import os from "node:os";

4+

import path from "node:path";

5+

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

6+7+

type CommandResult = {

8+

stdout: string;

9+

stderr: string;

10+

};

11+12+

const COMMAND_TIMEOUT_MS = 120_000;

13+

const tempDirs: string[] = [];

14+15+

function runCommand(

16+

command: string,

17+

args: string[],

18+

options: { cwd: string; timeoutMs?: number },

19+

): Promise<CommandResult> {

20+

return new Promise((resolve, reject) => {

21+

const stdout: string[] = [];

22+

const stderr: string[] = [];

23+

const child = spawn(command, args, {

24+

cwd: options.cwd,

25+

env: { ...process.env, npm_config_audit: "false", npm_config_fund: "false" },

26+

stdio: ["ignore", "pipe", "pipe"],

27+

});

28+

const timer = setTimeout(() => {

29+

child.kill("SIGKILL");

30+

reject(

31+

new Error(

32+

`command timed out after ${options.timeoutMs ?? COMMAND_TIMEOUT_MS}ms: ${[

33+

command,

34+

...args,

35+

].join(" ")}`,

36+

),

37+

);

38+

}, options.timeoutMs ?? COMMAND_TIMEOUT_MS);

39+

child.stdout?.setEncoding("utf8");

40+

child.stderr?.setEncoding("utf8");

41+

child.stdout?.on("data", (chunk) => stdout.push(String(chunk)));

42+

child.stderr?.on("data", (chunk) => stderr.push(String(chunk)));

43+

child.once("error", (error) => {

44+

clearTimeout(timer);

45+

reject(error);

46+

});

47+

child.once("exit", (code, signal) => {

48+

clearTimeout(timer);

49+

const result = { stdout: stdout.join(""), stderr: stderr.join("") };

50+

if (code === 0) {

51+

resolve(result);

52+

return;

53+

}

54+

reject(

55+

new Error(

56+

`command failed (${String(code ?? signal)}): ${[command, ...args].join(" ")}\n` +

57+

`--- stdout ---\n${result.stdout}\n--- stderr ---\n${result.stderr}`,

58+

),

59+

);

60+

});

61+

});

62+

}

63+64+

describe("OpenClaw SDK package e2e", () => {

65+

afterEach(async () => {

66+

await Promise.all(

67+

tempDirs.splice(0).map((dir) => fs.rm(dir, { recursive: true, force: true })),

68+

);

69+

});

70+71+

it("packs and imports from an external temp consumer", async () => {

72+

const repoRoot = process.cwd();

73+

const packageRoot = path.join(repoRoot, "packages", "sdk");

74+

const tempDir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-sdk-consumer-"));

75+

tempDirs.push(tempDir);

76+77+

await runCommand("pnpm", ["--filter", "@openclaw/sdk", "build"], {

78+

cwd: repoRoot,

79+

timeoutMs: 180_000,

80+

});

81+

await runCommand("pnpm", ["pack", "--pack-destination", tempDir], {

82+

cwd: packageRoot,

83+

});

84+85+

const packedFiles = (await fs.readdir(tempDir)).filter((file) => file.endsWith(".tgz"));

86+

expect(packedFiles).toHaveLength(1);

87+

const tarball = path.join(tempDir, packedFiles[0] ?? "");

88+89+

await fs.writeFile(

90+

path.join(tempDir, "package.json"),

91+

JSON.stringify({ private: true, type: "module" }),

92+

);

93+

await runCommand("npm", ["install", "--ignore-scripts", "--no-audit", "--no-fund", tarball], {

94+

cwd: tempDir,

95+

});

96+97+

const importScript = `

98+

import { GatewayClientTransport, OpenClaw, normalizeGatewayEvent } from "@openclaw/sdk";

99+

if (typeof GatewayClientTransport !== "function") throw new Error("missing transport export");

100+

if (typeof OpenClaw !== "function") throw new Error("missing client export");

101+

const event = normalizeGatewayEvent({

102+

event: "agent",

103+

payload: { runId: "pack-smoke", stream: "lifecycle", data: { phase: "start" } }

104+

});

105+

if (event.type !== "run.started") throw new Error("unexpected event normalization");

106+

`;

107+

await runCommand(process.execPath, ["--input-type=module", "-e", importScript], {

108+

cwd: tempDir,

109+

});

110+

});

111+

});