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

推荐订阅源

Jina AI
Jina AI
T
The Blog of Author Tim Ferriss
B
Blog
L
LangChain Blog
Y
Y Combinator Blog
美团技术团队
博客园 - 三生石上(FineUI控件)
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
G
Google Developers Blog
量子位
博客园_首页
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
C
Check Point Blog
D
Docker
小众软件
小众软件
The Cloudflare Blog
大猫的无限游戏
大猫的无限游戏
T
Tailwind CSS Blog
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 聂微东
Blog — PlanetScale
Blog — PlanetScale
GbyAI
GbyAI
Google DeepMind News
Google DeepMind News
IT之家
IT之家

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
feat(logging): propagate request trace scopes · openclaw/...
vincentkoc · 2026-04-27 · via Recent Commits to openclaw:main

@@ -0,0 +1,101 @@

1+

import fs from "node:fs";

2+

import os from "node:os";

3+

import path from "node:path";

4+

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

5+

import {

6+

emitDiagnosticEvent,

7+

onDiagnosticEvent,

8+

resetDiagnosticEventsForTest,

9+

} from "../infra/diagnostic-events.js";

10+

import {

11+

getActiveDiagnosticTraceContext,

12+

resetDiagnosticTraceContextForTest,

13+

type DiagnosticTraceContext,

14+

} from "../infra/diagnostic-trace-context.js";

15+

import { getLogger, resetLogger, setLoggerOverride } from "../logging.js";

16+

import type { ResolvedGatewayAuth } from "./auth.js";

17+

import { createGatewayHttpServer } from "./server-http.js";

18+

import { withTempConfig } from "./test-temp-config.js";

19+20+

const resolvedAuth: ResolvedGatewayAuth = { mode: "none", allowTailscale: false };

21+22+

async function listen(server: ReturnType<typeof createGatewayHttpServer>): Promise<number> {

23+

return await new Promise<number>((resolve) => {

24+

server.listen(0, "127.0.0.1", () => {

25+

const address = server.address();

26+

resolve(typeof address === "object" && address ? address.port : 0);

27+

});

28+

});

29+

}

30+31+

async function closeServer(server: ReturnType<typeof createGatewayHttpServer>): Promise<void> {

32+

await new Promise<void>((resolve, reject) =>

33+

server.close((err) => (err ? reject(err) : resolve())),

34+

);

35+

}

36+37+

afterEach(() => {

38+

resetDiagnosticEventsForTest();

39+

resetDiagnosticTraceContextForTest();

40+

setLoggerOverride(null);

41+

resetLogger();

42+

});

43+44+

describe("gateway HTTP request trace scope", () => {

45+

it("threads active request trace through logs and diagnostics", async () => {

46+

const dir = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-gateway-request-trace-"));

47+

const logPath = path.join(dir, "gateway.log");

48+

const events: Array<{ trace?: DiagnosticTraceContext; type: string }> = [];

49+

const stop = onDiagnosticEvent((event) => {

50+

events.push({ trace: event.trace, type: event.type });

51+

});

52+

let activeTraceInHandler: DiagnosticTraceContext | undefined;

53+54+

await withTempConfig({

55+

cfg: { gateway: { auth: { mode: "none" } } },

56+

run: async () => {

57+

setLoggerOverride({ level: "info", file: logPath });

58+

const httpServer = createGatewayHttpServer({

59+

canvasHost: null,

60+

clients: new Set(),

61+

controlUiEnabled: false,

62+

controlUiBasePath: "/__control__",

63+

openAiChatCompletionsEnabled: false,

64+

openResponsesEnabled: false,

65+

handleHooksRequest: async (_req, res) => {

66+

activeTraceInHandler = getActiveDiagnosticTraceContext();

67+

getLogger().info({ route: "/hook" }, "handled request trace");

68+

emitDiagnosticEvent({ type: "message.queued", source: "gateway-test" });

69+

res.statusCode = 204;

70+

res.end();

71+

return true;

72+

},

73+

resolvedAuth,

74+

});

75+

const port = await listen(httpServer);

76+

try {

77+

const response = await fetch(`http://127.0.0.1:${port}/hook`);

78+

expect(response.status).toBe(204);

79+

} finally {

80+

await closeServer(httpServer);

81+

}

82+

},

83+

});

84+85+

stop();

86+

try {

87+

expect(activeTraceInHandler?.traceId).toMatch(/^[0-9a-f]{32}$/);

88+

expect(activeTraceInHandler?.spanId).toMatch(/^[0-9a-f]{16}$/);

89+

expect(events).toEqual([{ trace: activeTraceInHandler, type: "message.queued" }]);

90+91+

const [line] = fs.readFileSync(logPath, "utf8").trim().split("\n");

92+

const record = JSON.parse(line ?? "{}") as Record<string, unknown>;

93+

expect(record).toMatchObject({

94+

traceId: activeTraceInHandler?.traceId,

95+

spanId: activeTraceInHandler?.spanId,

96+

});

97+

} finally {

98+

fs.rmSync(dir, { recursive: true, force: true });

99+

}

100+

});

101+

});