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

推荐订阅源

D
Docker
V
V2EX
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
云风的 BLOG
云风的 BLOG
Blog — PlanetScale
Blog — PlanetScale
Recent Announcements
Recent Announcements
Last Week in AI
Last Week in AI
博客园 - Franky
Microsoft Security Blog
Microsoft Security Blog
Hugging Face - Blog
Hugging Face - Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Vercel News
Vercel News
MyScale Blog
MyScale Blog
大猫的无限游戏
大猫的无限游戏
罗磊的独立博客
H
Help Net Security
月光博客
月光博客
Martin Fowler
Martin Fowler
博客园 - 【当耐特】
宝玉的分享
宝玉的分享
P
Proofpoint News Feed
GbyAI
GbyAI
腾讯CDC
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

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(e2e): reject malformed npm fixture paths · openclaw/o...
vincentkoc · 2026-06-20 · via Recent Commits to openclaw:main

@@ -9,7 +9,7 @@ import {

99

rmSync,

1010

writeFileSync,

1111

} from "node:fs";

12-

import { createServer } from "node:http";

12+

import { createServer, request as httpRequest } from "node:http";

1313

import { tmpdir } from "node:os";

1414

import path from "node:path";

1515

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

@@ -143,6 +143,45 @@ function runPluginsSweepShell(script: string, env: NodeJS.ProcessEnv = {}) {

143143

});

144144

}

145145146+

async function waitForPortFile(portFile: string): Promise<number> {

147+

for (let attempt = 0; attempt < 50; attempt += 1) {

148+

if (existsSync(portFile)) {

149+

const port = Number(readFileSync(portFile, "utf8"));

150+

if (Number.isInteger(port) && port > 0) {

151+

return port;

152+

}

153+

}

154+

await new Promise((resolve) => setTimeout(resolve, 20));

155+

}

156+

throw new Error(`timed out waiting for ${portFile}`);

157+

}

158+159+

function requestFixtureRegistry(

160+

port: number,

161+

requestPath: string,

162+

): Promise<{ body: string; statusCode: number | undefined }> {

163+

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

164+

const request = httpRequest(

165+

{ host: "127.0.0.1", method: "GET", path: requestPath, port },

166+

(response) => {

167+

let body = "";

168+

response.setEncoding("utf8");

169+

response.on("data", (chunk: string) => {

170+

body += chunk;

171+

});

172+

response.on("end", () => {

173+

resolve({ body, statusCode: response.statusCode });

174+

});

175+

},

176+

);

177+

request.setTimeout(2_000, () => {

178+

request.destroy(new Error(`timed out requesting ${requestPath}`));

179+

});

180+

request.on("error", reject);

181+

request.end();

182+

});

183+

}

184+146185

describe("plugins Docker assertions", () => {

147186

it("rejects loose ClawHub preflight limits instead of parsing prefixes", () => {

148187

const timeoutResult = spawnSync(process.execPath, [ASSERTIONS_SCRIPT, "clawhub-preflight"], {

@@ -510,6 +549,59 @@ test -d "$OPENCLAW_PLUGINS_TMP_DIR"

510549

}

511550

});

512551552+

it("keeps npm fixture registry alive after malformed package paths", async () => {

553+

const tempDirs: string[] = [];

554+

const root = makeTempDir(tempDirs, "openclaw-plugin-npm-fixture-request-");

555+

const portFile = path.join(root, "port");

556+

const tarballPath = path.join(root, "demo-plugin.tgz");

557+

writeFileSync(tarballPath, "fixture package archive", "utf8");

558+559+

const child = spawn(

560+

process.execPath,

561+

[

562+

"scripts/e2e/lib/plugins/npm-registry-server.mjs",

563+

portFile,

564+

"@openclaw/demo-plugin-npm",

565+

"1.0.0",

566+

tarballPath,

567+

],

568+

{

569+

cwd: process.cwd(),

570+

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

571+

},

572+

);

573+

const stderr = createBoundedChildOutput();

574+

child.stderr.setEncoding("utf8");

575+

child.stderr.on("data", (chunk) => {

576+

stderr.append(chunk);

577+

});

578+579+

try {

580+

const port = await waitForPortFile(portFile);

581+

const malformed = await requestFixtureRegistry(port, "/%");

582+583+

expect(malformed.statusCode).toBe(404);

584+

expect(malformed.body).toContain("not found");

585+

expect(child.exitCode, stderr.text()).toBeNull();

586+587+

const valid = await requestFixtureRegistry(port, "/@openclaw%2Fdemo-plugin-npm");

588+589+

expect(valid.statusCode, stderr.text()).toBe(200);

590+

expect(JSON.parse(valid.body)).toMatchObject({

591+

name: "@openclaw/demo-plugin-npm",

592+

"dist-tags": { latest: "1.0.0" },

593+

});

594+

} finally {

595+

if (child.exitCode === null) {

596+

child.kill();

597+

await new Promise((resolve) => {

598+

child.once("close", resolve);

599+

});

600+

}

601+

cleanupTempDirs(tempDirs);

602+

}

603+

});

604+513605

it("rejects invalid plugin fixture log byte limits before npm fixture setup", () => {

514606

const root = mkdtempSync(path.join(tmpdir(), "openclaw-plugin-npm-fixture-log-invalid-"));

515607

try {