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

推荐订阅源

L
LangChain Blog
Recent Announcements
Recent Announcements
GbyAI
GbyAI
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Microsoft Azure Blog
Microsoft Azure Blog
N
Netflix TechBlog - Medium
人人都是产品经理
人人都是产品经理
MongoDB | Blog
MongoDB | Blog
D
DataBreaches.Net
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
WordPress大学
WordPress大学
U
Unit 42
腾讯CDC
D
Docker
The GitHub Blog
The GitHub Blog
阮一峰的网络日志
阮一峰的网络日志
Vercel News
Vercel News
I
InfoQ
Jina AI
Jina AI
爱范儿
爱范儿
宝玉的分享
宝玉的分享
博客园 - Franky
G
Google Developers Blog
P
Proofpoint News Feed

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
refactor: share openai compat http test helpers · opencla...
vincentkoc · 2026-06-01 · via Recent Commits to openclaw:main

@@ -5,6 +5,7 @@ import { resolveAgentDir } from "../agents/agent-scope.js";

55

import { createConfigIO, resetConfigRuntimeState } from "../config/config.js";

66

import type { EmbeddingProviderAdapter } from "../plugins/embedding-providers.js";

77

import type { MemoryEmbeddingProviderAdapter } from "../plugins/memory-embedding-providers.js";

8+

import { startOpenAiCompatGatewayServer } from "./openai-compatible-http.test-helpers.js";

89

import { getFreePort, installGatewayTestHooks, testState } from "./test-helpers.js";

9101011

installGatewayTestHooks({ scope: "suite" });

@@ -47,7 +48,7 @@ let createGenericEmbeddingProviderMock: ReturnType<

4748

}>

4849

>

4950

>;

50-

let enabledServer: Awaited<ReturnType<typeof startServer>>;

51+

let enabledServer: Awaited<ReturnType<typeof startOpenAiCompatGatewayServer>>;

5152

let enabledPort: number;

52535354

beforeAll(async () => {

@@ -122,7 +123,12 @@ beforeAll(async () => {

122123

registerEmbeddingProvider(openAiCompatibleAdapter);

123124

({ startGatewayServer } = await import("./server.js"));

124125

enabledPort = await getFreePort();

125-

enabledServer = await startServer(enabledPort, { openAiChatCompletionsEnabled: true });

126+

enabledServer = await startOpenAiCompatGatewayServer({

127+

startGatewayServer,

128+

port: enabledPort,

129+

auth: { mode: "token", token: "secret" },

130+

openAiChatCompletionsEnabled: true,

131+

});

126132

});

127133128134

afterAll(async () => {

@@ -132,15 +138,6 @@ afterAll(async () => {

132138

vi.resetModules();

133139

});

134140135-

async function startServer(port: number, opts?: { openAiChatCompletionsEnabled?: boolean }) {

136-

return await startGatewayServer(port, {

137-

host: "127.0.0.1",

138-

auth: { mode: "token", token: "secret" },

139-

controlUiEnabled: false,

140-

openAiChatCompletionsEnabled: opts?.openAiChatCompletionsEnabled ?? false,

141-

});

142-

}

143-144141

async function postEmbeddings(body: unknown, headers?: Record<string, string>) {

145142

return await fetch(`http://127.0.0.1:${enabledPort}/v1/embeddings`, {

146143

method: "POST",

@@ -154,6 +151,60 @@ async function postEmbeddings(body: unknown, headers?: Record<string, string>) {

154151

});

155152

}

156153154+

async function expectDefaultEmbeddingResponse(res: Response) {

155+

expect(res.status).toBe(200);

156+

const json = (await res.json()) as {

157+

object?: string;

158+

data?: Array<{ object?: string; embedding?: number[] }>;

159+

};

160+

expect(json.object).toBe("list");

161+

expect(json.data?.[0]?.object).toBe("embedding");

162+

expect(json.data?.[0]?.embedding).toEqual([0.1, 0.2]);

163+

}

164+165+

async function expectEmbeddingData(

166+

res: Response,

167+

expected: Array<{ object: "embedding"; index: number; embedding: number[] }>,

168+

) {

169+

expect(res.status).toBe(200);

170+

const json = (await res.json()) as {

171+

data?: Array<{ embedding?: number[]; index?: number }>;

172+

};

173+

expect(json.data).toEqual(expected);

174+

}

175+176+

async function expectInvalidEmbeddingRequest(res: Response, message?: string) {

177+

expect(res.status).toBe(400);

178+

const json = (await res.json()) as { error?: { type?: string; message?: string } };

179+

if (message === undefined) {

180+

expect(json.error?.type).toBe("invalid_request_error");

181+

return;

182+

}

183+

expect(json.error).toEqual({

184+

type: "invalid_request_error",

185+

message,

186+

});

187+

}

188+189+

async function expectGenericProviderEmbeddingRequest(expectedProviderCall: {

190+

provider: string;

191+

model: string;

192+

dimensions: number;

193+

inputType: string;

194+

queryInputType: string;

195+

documentInputType: string;

196+

}) {

197+

const res = await postEmbeddings({

198+

model: "openclaw/default",

199+

input: ["a", "b"],

200+

});

201+

await expectEmbeddingData(res, [

202+

{ object: "embedding", index: 0, embedding: [9.1, 9.2] },

203+

{ object: "embedding", index: 1, embedding: [10.1, 9.2] },

204+

]);

205+

expect(latestCreateGenericEmbeddingProviderOptions()).toMatchObject(expectedProviderCall);

206+

}

207+157208

function latestCreateEmbeddingProviderOptions(): {

158209

agentDir?: string;

159210

model?: string;

@@ -189,24 +240,13 @@ describe("OpenAI-compatible embeddings HTTP API (e2e)", () => {

189240

model: "openclaw/default",

190241

input: "hello",

191242

});

192-

expect(single.status).toBe(200);

193-

const singleJson = (await single.json()) as {

194-

object?: string;

195-

data?: Array<{ object?: string; embedding?: number[]; index?: number }>;

196-

};

197-

expect(singleJson.object).toBe("list");

198-

expect(singleJson.data?.[0]?.object).toBe("embedding");

199-

expect(singleJson.data?.[0]?.embedding).toEqual([0.1, 0.2]);

243+

await expectDefaultEmbeddingResponse(single);

200244201245

const batch = await postEmbeddings({

202246

model: "openclaw/default",

203247

input: ["a", "b"],

204248

});

205-

expect(batch.status).toBe(200);

206-

const batchJson = (await batch.json()) as {

207-

data?: Array<{ embedding?: number[]; index?: number }>;

208-

};

209-

expect(batchJson.data).toEqual([

249+

await expectEmbeddingData(batch, [

210250

{ object: "embedding", index: 0, embedding: [0.1, 0.2] },

211251

{ object: "embedding", index: 1, embedding: [1.1, 1.2] },

212252

]);

@@ -249,9 +289,7 @@ describe("OpenAI-compatible embeddings HTTP API (e2e)", () => {

249289

model: "openclaw/default",

250290

input: [{ nope: true }],

251291

});

252-

expect(res.status).toBe(400);

253-

const json = (await res.json()) as { error?: { type?: string } };

254-

expect(json.error?.type).toBe("invalid_request_error");

292+

await expectInvalidEmbeddingRequest(res);

255293

});

256294257295

it("ignores narrower declared scopes for shared-secret bearer auth", async () => {

@@ -262,14 +300,7 @@ describe("OpenAI-compatible embeddings HTTP API (e2e)", () => {

262300

},

263301

{ "x-openclaw-scopes": "operator.read" },

264302

);

265-

expect(res.status).toBe(200);

266-

const json = (await res.json()) as {

267-

object?: string;

268-

data?: Array<{ object?: string; embedding?: number[] }>;

269-

};

270-

expect(json.object).toBe("list");

271-

expect(json.data?.[0]?.object).toBe("embedding");

272-

expect(json.data?.[0]?.embedding).toEqual([0.1, 0.2]);

303+

await expectDefaultEmbeddingResponse(res);

273304

});

274305275306

it("allows requests with an empty declared scopes header", async () => {

@@ -280,14 +311,7 @@ describe("OpenAI-compatible embeddings HTTP API (e2e)", () => {

280311

},

281312

{ "x-openclaw-scopes": "" },

282313

);

283-

expect(res.status).toBe(200);

284-

const json = (await res.json()) as {

285-

object?: string;

286-

data?: Array<{ object?: string; embedding?: number[] }>;

287-

};

288-

expect(json.object).toBe("list");

289-

expect(json.data?.[0]?.object).toBe("embedding");

290-

expect(json.data?.[0]?.embedding).toEqual([0.1, 0.2]);

314+

await expectDefaultEmbeddingResponse(res);

291315

});

292316293317

it("allows requests when the operator scopes header is missing", async () => {

@@ -302,14 +326,7 @@ describe("OpenAI-compatible embeddings HTTP API (e2e)", () => {

302326

input: "hello",

303327

}),

304328

});

305-

expect(res.status).toBe(200);

306-

const json = (await res.json()) as {

307-

object?: string;

308-

data?: Array<{ object?: string; embedding?: number[] }>;

309-

};

310-

expect(json.object).toBe("list");

311-

expect(json.data?.[0]?.object).toBe("embedding");

312-

expect(json.data?.[0]?.embedding).toEqual([0.1, 0.2]);

329+

await expectDefaultEmbeddingResponse(res);

313330

});

314331315332

it("routes explicit OpenAI-compatible embeddings through generic providers", async () => {

@@ -329,20 +346,7 @@ describe("OpenAI-compatible embeddings HTTP API (e2e)", () => {

329346

};

330347

resetConfigRuntimeState();

331348332-

const res = await postEmbeddings({

333-

model: "openclaw/default",

334-

input: ["a", "b"],

335-

});

336-

expect(res.status).toBe(200);

337-

const json = (await res.json()) as {

338-

data?: Array<{ embedding?: number[]; index?: number }>;

339-

};

340-

expect(json.data).toEqual([

341-

{ object: "embedding", index: 0, embedding: [9.1, 9.2] },

342-

{ object: "embedding", index: 1, embedding: [10.1, 9.2] },

343-

]);

344-

const lastCall = latestCreateGenericEmbeddingProviderOptions();

345-

expect(lastCall).toMatchObject({

349+

await expectGenericProviderEmbeddingRequest({

346350

provider: "openai-compatible",

347351

model: "nomic-embed-text",

348352

dimensions: 768,

@@ -386,20 +390,7 @@ describe("OpenAI-compatible embeddings HTTP API (e2e)", () => {

386390

};

387391

resetConfigRuntimeState();

388392389-

const res = await postEmbeddings({

390-

model: "openclaw/default",

391-

input: ["a", "b"],

392-

});

393-

expect(res.status).toBe(200);

394-

const json = (await res.json()) as {

395-

data?: Array<{ embedding?: number[]; index?: number }>;

396-

};

397-

expect(json.data).toEqual([

398-

{ object: "embedding", index: 0, embedding: [9.1, 9.2] },

399-

{ object: "embedding", index: 1, embedding: [10.1, 9.2] },

400-

]);

401-

const lastCall = latestCreateGenericEmbeddingProviderOptions();

402-

expect(lastCall).toMatchObject({

393+

await expectGenericProviderEmbeddingRequest({

403394

provider: "tenant-embeddings",

404395

model: "nomic-embed-text",

405396

dimensions: 768,

@@ -414,12 +405,10 @@ describe("OpenAI-compatible embeddings HTTP API (e2e)", () => {

414405

model: "ollama/nomic-embed-text",

415406

input: "hello",

416407

});

417-

expect(res.status).toBe(400);

418-

const json = (await res.json()) as { error?: { type?: string; message?: string } };

419-

expect(json.error).toEqual({

420-

type: "invalid_request_error",

421-

message: "Invalid `model`. Use `openclaw` or `openclaw/<agentId>`.",

422-

});

408+

await expectInvalidEmbeddingRequest(

409+

res,

410+

"Invalid `model`. Use `openclaw` or `openclaw/<agentId>`.",

411+

);

423412

});

424413425414

it("rejects disallowed x-openclaw-model provider overrides", async () => {

@@ -430,25 +419,18 @@ describe("OpenAI-compatible embeddings HTTP API (e2e)", () => {

430419

},

431420

{ "x-openclaw-model": "ollama/nomic-embed-text" },

432421

);

433-

expect(res.status).toBe(400);

434-

const json = (await res.json()) as { error?: { type?: string; message?: string } };

435-

expect(json.error).toEqual({

436-

type: "invalid_request_error",

437-

message: "This agent does not allow that embedding provider on `/v1/embeddings`.",

438-

});

422+

await expectInvalidEmbeddingRequest(

423+

res,

424+

"This agent does not allow that embedding provider on `/v1/embeddings`.",

425+

);

439426

});

440427441428

it("rejects oversized batches", async () => {

442429

const res = await postEmbeddings({

443430

model: "openclaw/default",

444431

input: Array.from({ length: 129 }, () => "x"),

445432

});

446-

expect(res.status).toBe(400);

447-

const json = (await res.json()) as { error?: { type?: string; message?: string } };

448-

expect(json.error).toEqual({

449-

type: "invalid_request_error",

450-

message: "Too many inputs (max 128).",

451-

});

433+

await expectInvalidEmbeddingRequest(res, "Too many inputs (max 128).");

452434

});

453435454436

it("sanitizes provider failures", async () => {