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

推荐订阅源

aimingoo的专栏
aimingoo的专栏
Y
Y Combinator Blog
云风的 BLOG
云风的 BLOG
Microsoft Azure Blog
Microsoft Azure Blog
腾讯CDC
T
The Blog of Author Tim Ferriss
P
Proofpoint News Feed
Hugging Face - Blog
Hugging Face - Blog
博客园_首页
小众软件
小众软件
美团技术团队
Martin Fowler
Martin Fowler
爱范儿
爱范儿
有赞技术团队
有赞技术团队
博客园 - 【当耐特】
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Microsoft Security Blog
Microsoft Security Blog
宝玉的分享
宝玉的分享
J
Java Code Geeks
B
Blog
V
V2EX
Stack Overflow Blog
Stack Overflow Blog
B
Blog RSS Feed
博客园 - Franky

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(config): dedupe plugin metadata test snapshots ·...
vincentkoc · 2026-06-18 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -4,16 +4,14 @@ import path from "node:path";

44

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

55

import { setCurrentPluginMetadataSnapshot } from "../plugins/current-plugin-metadata-snapshot.js";

66

import type { PluginCandidate, PluginDiscoveryResult } from "../plugins/discovery.js";

7-

import { resolveInstalledPluginIndexPolicyHash } from "../plugins/installed-plugin-index-policy.js";

8-

import type { PluginManifestRegistry } from "../plugins/manifest-registry.js";

9-

import type { PluginMetadataSnapshot } from "../plugins/plugin-metadata-snapshot.js";

107

import {

118

applyPluginAutoEnable,

129

detectPluginAutoEnableCandidates,

1310

materializePluginAutoEnableCandidates,

1411

resolvePluginAutoEnableCandidateReason,

1512

} from "./plugin-auto-enable.js";

1613

import {

14+

createPluginMetadataSnapshot,

1715

makeIsolatedEnv,

1816

makeRegistry,

1917

resetPluginAutoEnableTestState,

@@ -81,53 +79,6 @@ function makeBundledChannelCandidate(params: {

8179

};

8280

}

8381
84-

function createPluginMetadataSnapshot(params: {

85-

config?: OpenClawConfig;

86-

manifestRegistry: PluginManifestRegistry;

87-

workspaceDir?: string;

88-

}): PluginMetadataSnapshot {

89-

const policyHash = resolveInstalledPluginIndexPolicyHash(params.config);

90-

return {

91-

policyHash,

92-

...(params.workspaceDir ? { workspaceDir: params.workspaceDir } : {}),

93-

index: {

94-

version: 1,

95-

hostContractVersion: "test",

96-

compatRegistryVersion: "test",

97-

migrationVersion: 1,

98-

policyHash,

99-

generatedAtMs: 1,

100-

installRecords: {},

101-

plugins: [],

102-

diagnostics: [],

103-

},

104-

registryDiagnostics: [],

105-

manifestRegistry: params.manifestRegistry,

106-

plugins: params.manifestRegistry.plugins,

107-

diagnostics: params.manifestRegistry.diagnostics,

108-

byPluginId: new Map(params.manifestRegistry.plugins.map((plugin) => [plugin.id, plugin])),

109-

normalizePluginId: (pluginId) => pluginId,

110-

owners: {

111-

channels: new Map(),

112-

channelConfigs: new Map(),

113-

providers: new Map(),

114-

modelCatalogProviders: new Map(),

115-

cliBackends: new Map(),

116-

setupProviders: new Map(),

117-

commandAliases: new Map(),

118-

contracts: new Map(),

119-

},

120-

metrics: {

121-

registrySnapshotMs: 0,

122-

manifestRegistryMs: 0,

123-

ownerMapsMs: 0,

124-

totalMs: 0,

125-

indexPluginCount: 0,

126-

manifestPluginCount: params.manifestRegistry.plugins.length,

127-

},

128-

};

129-

}

130-
13182

afterAll(() => {

13283

resetPluginAutoEnableTestState();

13384

});

Original file line numberDiff line numberDiff line change

@@ -1,10 +1,13 @@

11

// Provides fixtures for plugin auto-enable config tests.

22

import path from "node:path";

33

import { clearCurrentPluginMetadataSnapshot } from "../plugins/current-plugin-metadata-snapshot.js";

4+

import { resolveInstalledPluginIndexPolicyHash } from "../plugins/installed-plugin-index-policy.js";

45

import type { PluginManifestRegistry } from "../plugins/manifest-registry.js";

6+

import type { PluginMetadataSnapshot } from "../plugins/plugin-metadata-snapshot.js";

57

import type { PluginOrigin } from "../plugins/plugin-origin.types.js";

68

import { clearPluginSetupRegistryCache } from "../plugins/setup-registry.js";

79

import { cleanupTrackedTempDirs, makeTrackedTempDir } from "../plugins/test-helpers/fs-fixtures.js";

10+

import type { OpenClawConfig } from "./types.openclaw.js";

811
912

const tempDirs: string[] = [];

1013

@@ -71,6 +74,53 @@ export function makeRegistry(

7174

};

7275

}

7376
77+

export function createPluginMetadataSnapshot(params: {

78+

config?: OpenClawConfig;

79+

manifestRegistry: PluginManifestRegistry;

80+

workspaceDir?: string;

81+

}): PluginMetadataSnapshot {

82+

const policyHash = resolveInstalledPluginIndexPolicyHash(params.config);

83+

return {

84+

policyHash,

85+

...(params.workspaceDir ? { workspaceDir: params.workspaceDir } : {}),

86+

index: {

87+

version: 1,

88+

hostContractVersion: "test",

89+

compatRegistryVersion: "test",

90+

migrationVersion: 1,

91+

policyHash,

92+

generatedAtMs: 1,

93+

installRecords: {},

94+

plugins: [],

95+

diagnostics: [],

96+

},

97+

registryDiagnostics: [],

98+

manifestRegistry: params.manifestRegistry,

99+

plugins: params.manifestRegistry.plugins,

100+

diagnostics: params.manifestRegistry.diagnostics,

101+

byPluginId: new Map(params.manifestRegistry.plugins.map((plugin) => [plugin.id, plugin])),

102+

normalizePluginId: (pluginId) => pluginId,

103+

owners: {

104+

channels: new Map(),

105+

channelConfigs: new Map(),

106+

providers: new Map(),

107+

modelCatalogProviders: new Map(),

108+

cliBackends: new Map(),

109+

setupProviders: new Map(),

110+

commandAliases: new Map(),

111+

contracts: new Map(),

112+

},

113+

metrics: {

114+

registrySnapshotMs: 0,

115+

manifestRegistryMs: 0,

116+

ownerMapsMs: 0,

117+

totalMs: 0,

118+

indexPluginCount: 0,

119+

manifestPluginCount: params.manifestRegistry.plugins.length,

120+

},

121+

};

122+

}

123+
74124

export function makeApnChannelConfig() {

75125

return { channels: { apn: { someKey: "value" } } };

76126

}

Original file line numberDiff line numberDiff line change

@@ -1,14 +1,14 @@

11

// Covers plugin activation context construction and lazy boundaries.

22

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

3-

import { makeRegistry } from "../config/plugin-auto-enable.test-helpers.js";

3+

import {

4+

createPluginMetadataSnapshot,

5+

makeRegistry,

6+

} from "../config/plugin-auto-enable.test-helpers.js";

47

import type { OpenClawConfig } from "../config/types.openclaw.js";

58

import {

69

clearCurrentPluginMetadataSnapshot,

710

setCurrentPluginMetadataSnapshot,

811

} from "./current-plugin-metadata-snapshot.js";

9-

import { resolveInstalledPluginIndexPolicyHash } from "./installed-plugin-index-policy.js";

10-

import type { PluginManifestRegistry } from "./manifest-registry.js";

11-

import type { PluginMetadataSnapshot } from "./plugin-metadata-snapshot.js";

1212
1313

const applyPluginAutoEnableMock = vi.hoisted(() =>

1414

vi.fn((params: { config?: OpenClawConfig }) => ({

@@ -24,53 +24,6 @@ vi.mock("../config/plugin-auto-enable.js", () => ({

2424
2525

import { resolveBundledPluginCompatibleActivationInputs } from "./activation-context.js";

2626
27-

function createPluginMetadataSnapshot(params: {

28-

config?: OpenClawConfig;

29-

manifestRegistry: PluginManifestRegistry;

30-

workspaceDir?: string;

31-

}): PluginMetadataSnapshot {

32-

const policyHash = resolveInstalledPluginIndexPolicyHash(params.config);

33-

return {

34-

policyHash,

35-

...(params.workspaceDir ? { workspaceDir: params.workspaceDir } : {}),

36-

index: {

37-

version: 1,

38-

hostContractVersion: "test",

39-

compatRegistryVersion: "test",

40-

migrationVersion: 1,

41-

policyHash,

42-

generatedAtMs: 1,

43-

installRecords: {},

44-

plugins: [],

45-

diagnostics: [],

46-

},

47-

registryDiagnostics: [],

48-

manifestRegistry: params.manifestRegistry,

49-

plugins: params.manifestRegistry.plugins,

50-

diagnostics: params.manifestRegistry.diagnostics,

51-

byPluginId: new Map(params.manifestRegistry.plugins.map((plugin) => [plugin.id, plugin])),

52-

normalizePluginId: (pluginId) => pluginId,

53-

owners: {

54-

channels: new Map(),

55-

channelConfigs: new Map(),

56-

providers: new Map(),

57-

modelCatalogProviders: new Map(),

58-

cliBackends: new Map(),

59-

setupProviders: new Map(),

60-

commandAliases: new Map(),

61-

contracts: new Map(),

62-

},

63-

metrics: {

64-

registrySnapshotMs: 0,

65-

manifestRegistryMs: 0,

66-

ownerMapsMs: 0,

67-

totalMs: 0,

68-

indexPluginCount: 0,

69-

manifestPluginCount: params.manifestRegistry.plugins.length,

70-

},

71-

};

72-

}

73-
7427

afterEach(() => {

7528

clearCurrentPluginMetadataSnapshot();

7629

applyPluginAutoEnableMock.mockClear();