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

推荐订阅源

freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
P
Proofpoint News Feed
宝玉的分享
宝玉的分享
人人都是产品经理
人人都是产品经理
博客园_首页
爱范儿
爱范儿
博客园 - 叶小钗
aimingoo的专栏
aimingoo的专栏
S
SegmentFault 最新的问题
MyScale Blog
MyScale Blog
阮一峰的网络日志
阮一峰的网络日志
IT之家
IT之家
Microsoft Security Blog
Microsoft Security Blog
Blog — PlanetScale
Blog — PlanetScale
博客园 - 【当耐特】
Y
Y Combinator Blog
量子位
博客园 - 三生石上(FineUI控件)
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
T
The Blog of Author Tim Ferriss
月光博客
月光博客
有赞技术团队
有赞技术团队
Apple Machine Learning Research
Apple Machine Learning Research
A
About on SuperTechFans

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
fix(plugin-sdk): restore discord compatibility facade · o...
steipete · 2026-04-29 · via Recent Commits to openclaw:main

@@ -0,0 +1,135 @@

1+

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

2+3+

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

4+

const runtimeConfig = { channels: { discord: { token: "token" } } };

5+

const apiModule = {

6+

collectDiscordStatusIssues: vi.fn(() => []),

7+

discordOnboardingAdapter: { kind: "legacy-onboarding" },

8+

inspectDiscordAccount: vi.fn(() => ({ accountId: "default" })),

9+

listDiscordAccountIds: vi.fn(() => ["default"]),

10+

listDiscordDirectoryGroupsFromConfig: vi.fn(() => []),

11+

listDiscordDirectoryPeersFromConfig: vi.fn(() => []),

12+

looksLikeDiscordTargetId: vi.fn(() => true),

13+

normalizeDiscordMessagingTarget: vi.fn(() => "channel:123"),

14+

normalizeDiscordOutboundTarget: vi.fn(() => ({ ok: true, to: "channel:123" })),

15+

resolveDefaultDiscordAccountId: vi.fn(() => "default"),

16+

resolveDiscordAccount: vi.fn(() => ({

17+

accountId: "default",

18+

config: {},

19+

enabled: true,

20+

token: "token",

21+

tokenSource: "config",

22+

})),

23+

resolveDiscordGroupRequireMention: vi.fn(() => true),

24+

resolveDiscordGroupToolPolicy: vi.fn(() => undefined),

25+

};

26+

const runtimeModule = {

27+

autoBindSpawnedDiscordSubagent: vi.fn(async (params) => ({

28+

accountId: params.accountId ?? "default",

29+

channelId: "123",

30+

targetKind: "subagent",

31+

targetSessionKey: params.childSessionKey,

32+

threadId: "456",

33+

cfg: params.cfg,

34+

})),

35+

collectDiscordAuditChannelIds: vi.fn(() => ({ channelIds: [], unresolvedChannels: [] })),

36+

listThreadBindingsBySessionKey: vi.fn(() => []),

37+

unbindThreadBindingsBySessionKey: vi.fn(() => []),

38+

};

39+40+

return {

41+

apiModule,

42+

runtimeModule,

43+

runtimeConfig,

44+

loadBundledPluginPublicSurfaceModuleSync: vi.fn((params: { artifactBasename: string }) => {

45+

if (params.artifactBasename === "runtime-api.js") {

46+

return runtimeModule;

47+

}

48+

return apiModule;

49+

}),

50+

};

51+

});

52+53+

vi.mock("./facade-loader.js", () => ({

54+

createLazyFacadeObjectValue: (load: () => object) =>

55+

new Proxy(

56+

{},

57+

{

58+

get(_target, property) {

59+

return Reflect.get(load(), property);

60+

},

61+

},

62+

),

63+

loadBundledPluginPublicSurfaceModuleSync: mocks.loadBundledPluginPublicSurfaceModuleSync,

64+

}));

65+66+

vi.mock("./runtime-config-snapshot.js", () => ({

67+

getRuntimeConfig: () => mocks.runtimeConfig,

68+

getRuntimeConfigSnapshot: () => mocks.runtimeConfig,

69+

}));

70+71+

describe("discord plugin-sdk compatibility facade", () => {

72+

it("exports the @openclaw/discord 2026.3.13 import surface", async () => {

73+

const discordSdk = await import("./discord.js");

74+75+

for (const exportName of [

76+

"DEFAULT_ACCOUNT_ID",

77+

"DiscordConfigSchema",

78+

"PAIRING_APPROVED_MESSAGE",

79+

"applyAccountNameToChannelSection",

80+

"autoBindSpawnedDiscordSubagent",

81+

"buildChannelConfigSchema",

82+

"buildComputedAccountStatusSnapshot",

83+

"buildTokenChannelStatusSummary",

84+

"collectDiscordAuditChannelIds",

85+

"collectDiscordStatusIssues",

86+

"discordOnboardingAdapter",

87+

"emptyPluginConfigSchema",

88+

"getChatChannelMeta",

89+

"inspectDiscordAccount",

90+

"listDiscordAccountIds",

91+

"listDiscordDirectoryGroupsFromConfig",

92+

"listDiscordDirectoryPeersFromConfig",

93+

"listThreadBindingsBySessionKey",

94+

"looksLikeDiscordTargetId",

95+

"migrateBaseNameToDefaultAccount",

96+

"normalizeAccountId",

97+

"normalizeDiscordMessagingTarget",

98+

"normalizeDiscordOutboundTarget",

99+

"projectCredentialSnapshotFields",

100+

"resolveConfiguredFromCredentialStatuses",

101+

"resolveDefaultDiscordAccountId",

102+

"resolveDiscordAccount",

103+

"resolveDiscordGroupRequireMention",

104+

"resolveDiscordGroupToolPolicy",

105+

"unbindThreadBindingsBySessionKey",

106+

]) {

107+

expect(discordSdk).toHaveProperty(exportName);

108+

}

109+

});

110+111+

it("keeps legacy Discord subagent auto-bind calls working without cfg", async () => {

112+

const { autoBindSpawnedDiscordSubagent } = await import("./discord.js");

113+114+

const binding = await autoBindSpawnedDiscordSubagent({

115+

agentId: "agent",

116+

channel: "discord",

117+

childSessionKey: "child",

118+

});

119+120+

expect(mocks.runtimeModule.autoBindSpawnedDiscordSubagent).toHaveBeenCalledWith(

121+

expect.objectContaining({

122+

agentId: "agent",

123+

cfg: mocks.runtimeConfig,

124+

childSessionKey: "child",

125+

}),

126+

);

127+

expect(binding).toEqual(

128+

expect.objectContaining({

129+

cfg: mocks.runtimeConfig,

130+

targetKind: "subagent",

131+

targetSessionKey: "child",

132+

}),

133+

);

134+

});

135+

});