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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
罗磊的独立博客
博客园 - 【当耐特】
M
MIT News - Artificial intelligence
月光博客
月光博客
博客园_首页
博客园 - 叶小钗
T
Tailwind CSS Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
I
InfoQ
量子位
小众软件
小众软件
爱范儿
爱范儿
The GitHub Blog
The GitHub Blog
IT之家
IT之家
Jina AI
Jina AI
阮一峰的网络日志
阮一峰的网络日志
G
Google Developers Blog
WordPress大学
WordPress大学
人人都是产品经理
人人都是产品经理
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks
云风的 BLOG
云风的 BLOG
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报

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: move plugin api test helper to sdk · openclaw/o...
steipete · 2026-04-28 · via Recent Commits to openclaw:main

@@ -19,7 +19,11 @@ plugins.

19192020

## Test utilities

212122-

**Import:** `openclaw/plugin-sdk/testing`

22+

**General import:** `openclaw/plugin-sdk/testing`

23+24+

**Plugin API mock import:** `openclaw/plugin-sdk/plugin-test-api`

25+26+

**Channel contract import:** `openclaw/plugin-sdk/channel-contract-testing`

23272428

The testing subpath exports a narrow set of helpers for plugin authors:

2529

@@ -29,44 +33,51 @@ import {

2933

shouldAckReaction,

3034

removeAckReactionAfterReply,

3135

} from "openclaw/plugin-sdk/testing";

36+

import { createTestPluginApi } from "openclaw/plugin-sdk/plugin-test-api";

37+

import { expectChannelInboundContextContract } from "openclaw/plugin-sdk/channel-contract-testing";

3238

```

33393440

### Available exports

354136-

| Export | Purpose |

37-

| ------------------------------------------- | ------------------------------------------------------- |

38-

| `installCommonResolveTargetErrorCases` | Shared test cases for target resolution error handling |

39-

| `shouldAckReaction` | Check whether a channel should add an ack reaction |

40-

| `removeAckReactionAfterReply` | Remove ack reaction after reply delivery |

41-

| `createTestRegistry` | Build a channel plugin registry fixture |

42-

| `createEmptyPluginRegistry` | Build an empty plugin registry fixture |

43-

| `setActivePluginRegistry` | Install a registry fixture for plugin runtime tests |

44-

| `createRequestCaptureJsonFetch` | Capture JSON fetch requests in media helper tests |

45-

| `withFetchPreconnect` | Run fetch tests with preconnect hooks installed |

46-

| `withEnv` / `withEnvAsync` | Temporarily patch environment variables |

47-

| `createTempHomeEnv` / `withTempDir` | Create isolated filesystem test fixtures |

48-

| `createMockServerResponse` | Create a minimal HTTP server response mock |

49-

| `registerSingleProviderPlugin` | Register one provider plugin in loader smoke tests |

50-

| `registerProviderPlugin` | Capture all provider kinds from one plugin |

51-

| `registerProviderPlugins` | Capture provider registrations across multiple plugins |

52-

| `requireRegisteredProvider` | Assert that a provider collection contains an id |

53-

| `runProviderCatalog` | Execute a provider catalog hook with test dependencies |

54-

| `resolveProviderWizardOptions` | Resolve provider setup wizard choices in contract tests |

55-

| `resolveProviderModelPickerEntries` | Resolve provider model-picker entries in contract tests |

56-

| `buildProviderPluginMethodChoice` | Build provider wizard choice ids for assertions |

57-

| `setProviderWizardProvidersResolverForTest` | Inject provider wizard providers for isolated tests |

58-

| `createProviderUsageFetch` | Build provider usage fetch fixtures |

59-

| `useFrozenTime` / `useRealTime` | Freeze and restore timers for time-sensitive tests |

60-

| `createRuntimeEnv` | Build a mocked CLI/plugin runtime environment |

61-

| `createTestWizardPrompter` | Build a mocked setup wizard prompter |

62-

| `createPluginSetupWizardStatus` | Build setup status helpers for channel plugins |

63-

| `createRuntimeTaskFlow` | Create isolated runtime task-flow state |

64-

| `typedCases` | Preserve literal types for table-driven tests |

65-66-

Bundled-plugin contract suites also use this subpath for test-only registry,

67-

manifest, public-artifact, and runtime fixture helpers. Keep new extension tests

68-

on `openclaw/plugin-sdk/testing` or a narrower documented SDK subpath rather

69-

than importing repo `src/**` files directly.

42+

| Export | Purpose |

43+

| -------------------------------------------- | ------------------------------------------------------------------------------------------------------------ |

44+

| `createTestPluginApi` | Build a minimal plugin API mock for direct registration unit tests. Import from `plugin-sdk/plugin-test-api` |

45+

| `expectChannelInboundContextContract` | Assert channel inbound context shape. Import from `plugin-sdk/channel-contract-testing` |

46+

| `installChannelOutboundPayloadContractSuite` | Install channel outbound payload contract cases. Import from `plugin-sdk/channel-contract-testing` |

47+

| `installCommonResolveTargetErrorCases` | Shared test cases for target resolution error handling |

48+

| `shouldAckReaction` | Check whether a channel should add an ack reaction |

49+

| `removeAckReactionAfterReply` | Remove ack reaction after reply delivery |

50+

| `createTestRegistry` | Build a channel plugin registry fixture |

51+

| `createEmptyPluginRegistry` | Build an empty plugin registry fixture |

52+

| `setActivePluginRegistry` | Install a registry fixture for plugin runtime tests |

53+

| `createRequestCaptureJsonFetch` | Capture JSON fetch requests in media helper tests |

54+

| `withFetchPreconnect` | Run fetch tests with preconnect hooks installed |

55+

| `withEnv` / `withEnvAsync` | Temporarily patch environment variables |

56+

| `createTempHomeEnv` / `withTempDir` | Create isolated filesystem test fixtures |

57+

| `createMockServerResponse` | Create a minimal HTTP server response mock |

58+

| `registerSingleProviderPlugin` | Register one provider plugin in loader smoke tests |

59+

| `registerProviderPlugin` | Capture all provider kinds from one plugin |

60+

| `registerProviderPlugins` | Capture provider registrations across multiple plugins |

61+

| `requireRegisteredProvider` | Assert that a provider collection contains an id |

62+

| `runProviderCatalog` | Execute a provider catalog hook with test dependencies |

63+

| `resolveProviderWizardOptions` | Resolve provider setup wizard choices in contract tests |

64+

| `resolveProviderModelPickerEntries` | Resolve provider model-picker entries in contract tests |

65+

| `buildProviderPluginMethodChoice` | Build provider wizard choice ids for assertions |

66+

| `setProviderWizardProvidersResolverForTest` | Inject provider wizard providers for isolated tests |

67+

| `createProviderUsageFetch` | Build provider usage fetch fixtures |

68+

| `useFrozenTime` / `useRealTime` | Freeze and restore timers for time-sensitive tests |

69+

| `createRuntimeEnv` | Build a mocked CLI/plugin runtime environment |

70+

| `createTestWizardPrompter` | Build a mocked setup wizard prompter |

71+

| `createPluginSetupWizardStatus` | Build setup status helpers for channel plugins |

72+

| `createRuntimeTaskFlow` | Create isolated runtime task-flow state |

73+

| `typedCases` | Preserve literal types for table-driven tests |

74+75+

Bundled-plugin contract suites also use SDK testing subpaths for test-only

76+

registry, manifest, public-artifact, and runtime fixture helpers. Keep new

77+

extension tests on `openclaw/plugin-sdk/testing` or a narrower documented SDK

78+

subpath such as `plugin-sdk/plugin-test-api` or

79+

`plugin-sdk/channel-contract-testing` rather than importing repo `src/**` files

80+

directly.

70817182

### Types

7283