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

推荐订阅源

月光博客
月光博客
MyScale Blog
MyScale Blog
博客园 - Franky
The Cloudflare Blog
IT之家
IT之家
Blog — PlanetScale
Blog — PlanetScale
博客园 - 聂微东
WordPress大学
WordPress大学
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
T
The Blog of Author Tim Ferriss
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
罗磊的独立博客
Google DeepMind News
Google DeepMind News
P
Proofpoint News Feed
Martin Fowler
Martin Fowler
aimingoo的专栏
aimingoo的专栏
J
Java Code Geeks
腾讯CDC
雷峰网
雷峰网
Microsoft Azure Blog
Microsoft Azure Blog
G
Google Developers Blog
博客园 - 【当耐特】
美团技术团队
云风的 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
test(pairing): reduce fixture io overhead · openclaw/open...
steipete · 2026-04-26 · via Recent Commits to openclaw:main

@@ -1,6 +1,5 @@

11

import crypto from "node:crypto";

22

import fsSync from "node:fs";

3-

import fs from "node:fs/promises";

43

import os from "node:os";

54

import path from "node:path";

65

import {

@@ -78,13 +77,13 @@ type RandomIntSync = (minOrMax: number, max?: number) => number;

7877

let randomIntSpy: MockInstance<RandomIntSync>;

7978

let nextRandomInt = 0;

807981-

beforeAll(async () => {

82-

fixtureRoot = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-pairing-"));

80+

beforeAll(() => {

81+

fixtureRoot = fsSync.mkdtempSync(path.join(os.tmpdir(), "openclaw-pairing-"));

8382

});

848385-

afterAll(async () => {

84+

afterAll(() => {

8685

if (fixtureRoot) {

87-

await fs.rm(fixtureRoot, { recursive: true, force: true });

86+

fsSync.rmSync(fixtureRoot, { recursive: true, force: true });

8887

}

8988

});

9089

@@ -110,13 +109,13 @@ function setDefaultRandomIntMock() {

110109111110

async function withTempStateDir<T>(fn: (stateDir: string) => Promise<T>) {

112111

const dir = path.join(fixtureRoot, `case-${caseId++}`);

113-

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

112+

fsSync.mkdirSync(dir, { recursive: true });

114113

return await withEnvAsync({ OPENCLAW_STATE_DIR: dir }, async () => await fn(dir));

115114

}

116115117-

async function writeJsonFixture(filePath: string, value: unknown) {

118-

await fs.mkdir(path.dirname(filePath), { recursive: true });

119-

await fs.writeFile(filePath, `${JSON.stringify(value, null, 2)}\n`, "utf8");

116+

function writeJsonFixture(filePath: string, value: unknown) {

117+

fsSync.mkdirSync(path.dirname(filePath), { recursive: true });

118+

fsSync.writeFileSync(filePath, `${JSON.stringify(value, null, 2)}\n`, "utf8");

120119

}

121120122121

function resolvePairingFilePath(stateDir: string, channel: string) {

@@ -128,9 +127,9 @@ function resolveAllowFromFilePath(stateDir: string, channel: string, accountId?:

128127

return path.join(resolveOAuthDir(process.env, stateDir), `${channel}${suffix}-allowFrom.json`);

129128

}

130129131-

async function clearOAuthFixtures(stateDir: string) {

130+

function clearOAuthFixtures(stateDir: string) {

132131

clearPairingAllowFromReadCacheForTest();

133-

await fs.rm(resolveOAuthDir(process.env, stateDir), { recursive: true, force: true });

132+

fsSync.rmSync(resolveOAuthDir(process.env, stateDir), { recursive: true, force: true });

134133

}

135134136135

async function writeAllowFromFixture(params: {

@@ -139,13 +138,10 @@ async function writeAllowFromFixture(params: {

139138

allowFrom: string[];

140139

accountId?: string;

141140

}) {

142-

await writeJsonFixture(

143-

resolveAllowFromFilePath(params.stateDir, params.channel, params.accountId),

144-

{

145-

version: 1,

146-

allowFrom: params.allowFrom,

147-

},

148-

);

141+

writeJsonFixture(resolveAllowFromFilePath(params.stateDir, params.channel, params.accountId), {

142+

version: 1,

143+

allowFrom: params.allowFrom,

144+

});

149145

}

150146151147

async function createTelegramPairingRequest(accountId: string, id = "12345") {

@@ -338,15 +334,15 @@ describe("pairing store", () => {

338334

});

339335

expect(created.created).toBe(true);

340336

const filePath = resolvePairingFilePath(stateDir, "demo-pairing-b");

341-

const raw = await fs.readFile(filePath, "utf8");

337+

const raw = fsSync.readFileSync(filePath, "utf8");

342338

const parsed = JSON.parse(raw) as {

343339

requests?: Array<Record<string, unknown>>;

344340

};

345341

const expiredAt = new Date(Date.now() - 2 * 60 * 60 * 1000).toISOString();

346342

const requests = (parsed.requests ?? []).map((entry) =>

347343

Object.assign({}, entry, { createdAt: expiredAt, lastSeenAt: expiredAt }),

348344

);

349-

await writeJsonFixture(filePath, { version: 1, requests });

345+

writeJsonFixture(filePath, { version: 1, requests });

350346

expect(await listChannelPairingRequests("demo-pairing-b")).toHaveLength(0);

351347

const next = await upsertChannelPairingRequest({

352348

channel: "demo-pairing-b",

@@ -374,7 +370,7 @@ describe("pairing store", () => {

374370

expect(listIds).toEqual(["+15550000001", "+15550000002", "+15550000003"]);

375371376372

const createdAt = new Date().toISOString();

377-

await writeJsonFixture(resolvePairingFilePath(stateDir, "demo-pairing-d"), {

373+

writeJsonFixture(resolvePairingFilePath(stateDir, "demo-pairing-d"), {

378374

version: 1,

379375

requests: ids.map((id, index) => ({

380376

id,

@@ -510,8 +506,8 @@ describe("pairing store", () => {

510506

allowFrom: ["1001"],

511507

});

512508

const malformedScopedPath = resolveAllowFromFilePath(stateDir, "telegram", "yy");

513-

await fs.mkdir(path.dirname(malformedScopedPath), { recursive: true });

514-

await fs.writeFile(malformedScopedPath, "{ this is not json\n", "utf8");

509+

fsSync.mkdirSync(path.dirname(malformedScopedPath), { recursive: true });

510+

fsSync.writeFileSync(malformedScopedPath, "{ this is not json\n", "utf8");

515511

},

516512

accountId: "yy",

517513

expected: [],

@@ -531,7 +527,7 @@ describe("pairing store", () => {

531527

expected: ["1002", "1001"],

532528

},

533529

] as const) {

534-

await clearOAuthFixtures(stateDir);

530+

clearOAuthFixtures(stateDir);

535531

await setup();

536532

await expectAllowFromReadConsistencyCase({

537533

...(accountId !== undefined ? { accountId } : {}),

@@ -550,7 +546,7 @@ describe("pairing store", () => {

550546

secondAccountId: "beta",

551547

});

552548553-

await clearOAuthFixtures(stateDir);

549+

clearOAuthFixtures(stateDir);

554550

for (const accountId of ["alpha", "beta", "gamma"]) {

555551

const created = await upsertChannelPairingRequest({

556552

channel: "telegram",

@@ -591,7 +587,7 @@ describe("pairing store", () => {

591587

readAllowFrom: async () => readChannelAllowFromStoreSync("telegram", process.env, "yy"),

592588

},

593589

]) {

594-

await clearOAuthFixtures(stateDir);

590+

clearOAuthFixtures(stateDir);

595591

await withAllowFromCacheReadSpy({

596592

stateDir,

597593

createReadSpy: variant.createReadSpy,