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

推荐订阅源

Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
小众软件
小众软件
博客园_首页
T
Tailwind CSS Blog
美团技术团队
博客园 - 叶小钗
Microsoft Security Blog
Microsoft Security Blog
有赞技术团队
有赞技术团队
Apple Machine Learning Research
Apple Machine Learning Research
大猫的无限游戏
大猫的无限游戏
Microsoft Azure Blog
Microsoft Azure Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
I
InfoQ
MongoDB | Blog
MongoDB | Blog
The Cloudflare Blog
J
Java Code Geeks
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 聂微东
酷 壳 – CoolShell
酷 壳 – CoolShell
Blog — PlanetScale
Blog — PlanetScale
IT之家
IT之家
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
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(matrix): isolate IndexedDB persistence fixtures · op...
vincentkoc · 2026-05-03 · via Recent Commits to openclaw:main

@@ -15,58 +15,68 @@ import {

1515

} from "./idb-persistence.test-helpers.js";

1616

import { LogService } from "./logger.js";

171718+

const DATABASE_PREFIX = "openclaw-matrix-persistence-test";

19+

const OTHER_DATABASE_PREFIX = "openclaw-matrix-persistence-other-test";

20+

const cryptoDatabaseName = `${DATABASE_PREFIX}::matrix-sdk-crypto`;

21+

const otherCryptoDatabaseName = `${OTHER_DATABASE_PREFIX}::matrix-sdk-crypto`;

22+23+

async function clearTestIndexedDbState(): Promise<void> {

24+

await clearAllIndexedDbState({ databasePrefix: DATABASE_PREFIX });

25+

await clearAllIndexedDbState({ databasePrefix: OTHER_DATABASE_PREFIX });

26+

}

27+1828

describe("Matrix IndexedDB persistence", () => {

1929

let tmpDir: string;

2030

let warnSpy: ReturnType<typeof vi.spyOn>;

21312232

beforeEach(async () => {

2333

tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), "matrix-idb-persist-"));

2434

warnSpy = vi.spyOn(LogService, "warn").mockImplementation(() => {});

25-

await clearAllIndexedDbState();

35+

await clearTestIndexedDbState();

2636

});

27372838

afterEach(async () => {

2939

warnSpy.mockRestore();

30-

await clearAllIndexedDbState();

40+

await clearTestIndexedDbState();

3141

resetFileLockStateForTest();

3242

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

3343

});

34443545

it("persists and restores database contents for the selected prefix", async () => {

3646

const snapshotPath = path.join(tmpDir, "crypto-idb-snapshot.json");

3747

await seedDatabase({

38-

name: "openclaw-matrix-test::matrix-sdk-crypto",

48+

name: cryptoDatabaseName,

3949

storeName: "sessions",

4050

records: [{ key: "room-1", value: { session: "abc123" } }],

4151

});

4252

await seedDatabase({

43-

name: "other-prefix::matrix-sdk-crypto",

53+

name: otherCryptoDatabaseName,

4454

storeName: "sessions",

4555

records: [{ key: "room-2", value: { session: "should-not-restore" } }],

4656

});

47574858

await persistIdbToDisk({

4959

snapshotPath,

50-

databasePrefix: "openclaw-matrix-test",

60+

databasePrefix: DATABASE_PREFIX,

5161

});

5262

expect(fs.existsSync(snapshotPath)).toBe(true);

53635464

const mode = fs.statSync(snapshotPath).mode & 0o777;

5565

expect(mode).toBe(0o600);

566657-

await clearAllIndexedDbState();

67+

await clearTestIndexedDbState();

58685969

const restored = await restoreIdbFromDisk(snapshotPath);

6070

expect(restored).toBe(true);

61716272

const restoredRecords = await readDatabaseRecords({

63-

name: "openclaw-matrix-test::matrix-sdk-crypto",

73+

name: cryptoDatabaseName,

6474

storeName: "sessions",

6575

});

6676

expect(restoredRecords).toEqual([{ key: "room-1", value: { session: "abc123" } }]);

67776878

const dbs = await indexedDB.databases();

69-

expect(dbs.some((entry) => entry.name === "other-prefix::matrix-sdk-crypto")).toBe(false);

79+

expect(dbs.some((entry) => entry.name === otherCryptoDatabaseName)).toBe(false);

7080

});

71817282

it("returns false and logs a warning for malformed snapshots", async () => {

@@ -103,14 +113,14 @@ describe("Matrix IndexedDB persistence", () => {

103113

it("serializes concurrent persist operations via file lock", async () => {

104114

const snapshotPath = path.join(tmpDir, "concurrent-persist.json");

105115

await seedDatabase({

106-

name: "openclaw-matrix-test::matrix-sdk-crypto",

116+

name: cryptoDatabaseName,

107117

storeName: "sessions",

108118

records: [{ key: "room-1", value: { session: "abc123" } }],

109119

});

110120111121

await Promise.all([

112-

persistIdbToDisk({ snapshotPath, databasePrefix: "openclaw-matrix-test" }),

113-

persistIdbToDisk({ snapshotPath, databasePrefix: "openclaw-matrix-test" }),

122+

persistIdbToDisk({ snapshotPath, databasePrefix: DATABASE_PREFIX }),

123+

persistIdbToDisk({ snapshotPath, databasePrefix: DATABASE_PREFIX }),

114124

]);

115125116126

expect(fs.existsSync(snapshotPath)).toBe(true);

@@ -123,12 +133,12 @@ describe("Matrix IndexedDB persistence", () => {

123133

it("releases lock after persist completes", async () => {

124134

const snapshotPath = path.join(tmpDir, "lock-release.json");

125135

await seedDatabase({

126-

name: "openclaw-matrix-test::matrix-sdk-crypto",

136+

name: cryptoDatabaseName,

127137

storeName: "sessions",

128138

records: [{ key: "room-1", value: { session: "abc123" } }],

129139

});

130140131-

await persistIdbToDisk({ snapshotPath, databasePrefix: "openclaw-matrix-test" });

141+

await persistIdbToDisk({ snapshotPath, databasePrefix: DATABASE_PREFIX });

132142133143

const lockPath = `${snapshotPath}.lock`;

134144

expect(fs.existsSync(lockPath)).toBe(false);

@@ -138,13 +148,13 @@ describe("Matrix IndexedDB persistence", () => {

138148

it("releases lock after restore completes", async () => {

139149

const snapshotPath = path.join(tmpDir, "lock-release-restore.json");

140150

await seedDatabase({

141-

name: "openclaw-matrix-test::matrix-sdk-crypto",

151+

name: cryptoDatabaseName,

142152

storeName: "sessions",

143153

records: [{ key: "room-1", value: { session: "abc123" } }],

144154

});

145155146-

await persistIdbToDisk({ snapshotPath, databasePrefix: "openclaw-matrix-test" });

147-

await clearAllIndexedDbState();

156+

await persistIdbToDisk({ snapshotPath, databasePrefix: DATABASE_PREFIX });

157+

await clearTestIndexedDbState();

148158

await drainFileLockStateForTest();

149159150160

await restoreIdbFromDisk(snapshotPath);