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

推荐订阅源

GbyAI
GbyAI
The GitHub Blog
The GitHub Blog
小众软件
小众软件
美团技术团队
博客园 - 司徒正美
G
Google Developers Blog
Blog — PlanetScale
Blog — PlanetScale
Hugging Face - Blog
Hugging Face - Blog
博客园_首页
大猫的无限游戏
大猫的无限游戏
罗磊的独立博客
Recent Announcements
Recent Announcements
酷 壳 – CoolShell
酷 壳 – CoolShell
D
Docker
J
Java Code Geeks
Last Week in AI
Last Week in AI
V
Visual Studio Blog
Microsoft Azure Blog
Microsoft Azure Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
P
Proofpoint News Feed
V
V2EX
C
Check Point Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
MyScale Blog
MyScale 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): cover native Windows file semantics · openc...
vincentkoc · 2026-05-05 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -1,3 +1,4 @@

1+

import path from "node:path";

12

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

23
34

const availabilityState = vi.hoisted(() => ({

@@ -37,10 +38,11 @@ describe("isMatrixLegacyCryptoInspectorAvailable", () => {

3738

});

3839
3940

it("detects the source inspector module directly", () => {

40-

availabilityState.currentFilePath =

41-

"/virtual/extensions/matrix/src/legacy-crypto-inspector-availability.js";

41+

availabilityState.currentFilePath = path.resolve(

42+

"/virtual/extensions/matrix/src/legacy-crypto-inspector-availability.js",

43+

);

4244

availabilityState.existingPaths.add(

43-

"/virtual/extensions/matrix/src/matrix/legacy-crypto-inspector.ts",

45+

path.resolve("/virtual/extensions/matrix/src/matrix/legacy-crypto-inspector.ts"),

4446

);

4547
4648

expect(isMatrixLegacyCryptoInspectorAvailable()).toBe(true);

Original file line numberDiff line numberDiff line change

@@ -21,6 +21,8 @@ const DEFAULT_LEGACY_CREDENTIALS = {

2121

createdAt: "2026-03-01T10:00:00.000Z",

2222

};

2323
24+

const EXPECTS_POSIX_PRIVATE_FILE_MODE = process.platform !== "win32";

25+
2426

describe("matrix credentials storage", () => {

2527

const tempDirs: string[] = [];

2628

@@ -74,7 +76,9 @@ describe("matrix credentials storage", () => {

7476

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

7577

expect(credPath).toBe(path.join(stateDir, "credentials", "matrix", "credentials-ops.json"));

7678

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

77-

expect(mode).toBe(0o600);

79+

if (EXPECTS_POSIX_PRIVATE_FILE_MODE) {

80+

expect(mode).toBe(0o600);

81+

}

7882

});

7983
8084

it("touch updates lastUsedAt while preserving createdAt", async () => {

Original file line numberDiff line numberDiff line change

@@ -19,6 +19,7 @@ const DATABASE_PREFIX = "openclaw-matrix-persistence-test";

1919

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

2020

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

2121

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

22+

const EXPECTS_POSIX_PRIVATE_FILE_MODE = process.platform !== "win32";

2223
2324

async function clearTestIndexedDbState(): Promise<void> {

2425

await clearAllIndexedDbState({ databasePrefix: DATABASE_PREFIX });

@@ -62,7 +63,9 @@ describe("Matrix IndexedDB persistence", () => {

6263

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

6364
6465

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

65-

expect(mode).toBe(0o600);

66+

if (EXPECTS_POSIX_PRIVATE_FILE_MODE) {

67+

expect(mode).toBe(0o600);

68+

}

6669
6770

await clearTestIndexedDbState();

6871
Original file line numberDiff line numberDiff line change

@@ -11,6 +11,8 @@ function createTempRecoveryKeyPath(): string {

1111

return path.join(dir, "recovery-key.json");

1212

}

1313
14+

const EXPECTS_POSIX_PRIVATE_FILE_MODE = process.platform !== "win32";

15+
1416

function createGeneratedRecoveryKey(params: {

1517

keyId: string;

1618

name: string;

@@ -133,7 +135,9 @@ describe("MatrixRecoveryKeyStore", () => {

133135

expect(saved.privateKeyBase64).toBe(Buffer.from([9, 8, 7]).toString("base64"));

134136
135137

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

136-

expect(mode).toBe(0o600);

138+

if (EXPECTS_POSIX_PRIVATE_FILE_MODE) {

139+

expect(mode).toBe(0o600);

140+

}

137141

});

138142
139143

it("creates and persists a recovery key when secret storage is missing", async () => {