- Close undici ProxyAgent in finally block to prevent resource leak
- Guard globalThis.fetch restore with identity check (only restore if
our patched function is still in place)
- Add isHostExcludedByNoProxy() to respect NO_PROXY / no_proxy for the
token endpoint host (supports bare hostnames, dotted-prefix, wildcard)
Node.js native fetch() ignores HTTP_PROXY / HTTPS_PROXY env vars.
Users behind a proxy (e.g. Hong Kong, mainland China) get 403
'unsupported_country_region_territory' during token exchange even
though the browser OAuth flow succeeds through their system proxy.
Wrap the loginOpenAICodex() call with withProxyFetch(), which
temporarily patches globalThis.fetch with an undici ProxyAgent-backed
implementation when proxy env vars are detected. The original fetch is
restored after the call completes. No-op when no proxy is configured
or undici is unavailable.
Fixes#29418
- Added a test to ensure no warnings for legacy Brave config when bundled web search allowlist compatibility is applied.
- Updated validation logic to incorporate compatibility configuration for bundled web search plugins.
- Refactored the ensureRegistry function to utilize the new compatibility handling.
* test: align extension runtime mocks with plugin-sdk
Update stale extension tests to mock the plugin-sdk runtime barrels that production code now imports, and harden the Signal tool-result harness around system-event assertions so the channels lane matches current extension boundaries.
Regeneration-Prompt: |
Verify the failing channels-lane tests against current origin/main in an isolated worktree before changing anything. If the failures reproduce on main, keep the fix test-only unless production behavior is clearly wrong. Recent extension refactors moved Telegram, WhatsApp, and Signal code onto plugin-sdk runtime barrels, so update stale tests that still mock old core module paths to intercept the seams production code now uses. For Signal reaction notifications, avoid brittle assertions that depend on shared queued system-event state when a direct harness spy on enqueue behavior is sufficient. Preserve scope: only touch the failing tests and their local harness, then rerun the reproduced targeted tests plus the full channels lane and repo check gate.
* test: fix extension test drift on main
* fix: lazy-load bundled web search plugin registry
* test: make matrix sweeper failure injection portable
* fix: split heavy matrix runtime-api seams
* fix: simplify bundled web search id lookup
* test: tolerate windows env key casing
Reuse pi-ai's Anthropic client injection seam for streaming, and add
the OpenClaw-side provider discovery, auth, model catalog, and tests
needed to expose anthropic-vertex cleanly.
Signed-off-by: sallyom <somalley@redhat.com>