70001f0dc9
ci-arm64-advisory / fast-checks (pull_request) Waiting to run
Lint shellcheck (arm64 pilot) / shellcheck-arm64 (pilot) (pull_request) Successful in 3s
Block internal-flavored paths / Block forbidden paths (pull_request) Successful in 11s
CI / Python Lint & Test (pull_request) Successful in 16s
Handlers Postgres Integration / detect-changes (pull_request) Successful in 25s
CI / Detect changes (pull_request) Successful in 48s
E2E Chat / detect-changes (pull_request) Successful in 37s
Harness Replays / detect-changes (pull_request) Successful in 15s
E2E API Smoke Test / detect-changes (pull_request) Successful in 49s
E2E Staging Canvas (Playwright) / detect-changes (pull_request) Successful in 44s
Lint forbidden tenant-env keys / Scan workspace_secrets writers for forbidden env keys (pull_request) Successful in 9s
Lint forbidden tenant-env keys / Scan for repo-host token write into tenant workspace surface (pull_request) Successful in 8s
Lint curl status-code capture / Scan workflows for curl status-capture pollution (pull_request) Successful in 18s
Secret scan / Scan diff for credential-shaped strings (pull_request) Successful in 10s
qa-review / approved (pull_request_target) Failing after 5s
lint-required-workflows-docker-host-pinned / Lint docker-host pin on docker-touching workflows (pull_request) Successful in 33s
security-review / approved (pull_request_target) Failing after 6s
sop-checklist / review-refire (pull_request_target) Has been skipped
sop-checklist / all-items-acked (pull_request) acked: 0/7 — missing: comprehensive-testing, local-postgres-e2e, staging-smoke, +4 — body-unfilled: comprehensive-testing, local-postgres-e2
sop-checklist / na-declarations (pull_request) N/A: (none)
sop-checklist / all-items-acked (pull_request_target) Successful in 7s
gate-check-v3 / gate-check (pull_request_target) Successful in 56s
Lint pre-flip continue-on-error / Verify continue-on-error flips have run-log proof (pull_request) Successful in 1m17s
Lint workflow YAML (Gitea-1.22.6-hostile shapes) / Lint workflow YAML for Gitea-1.22.6-hostile shapes (pull_request) Successful in 1m7s
sop-tier-check / tier-check (pull_request_target) Failing after 36s
lint-continue-on-error-tracking / lint-continue-on-error-tracking (pull_request) Successful in 1m35s
E2E Chat / E2E Chat (pull_request) Successful in 3s
Handlers Postgres Integration / Handlers Postgres Integration (pull_request) Successful in 6s
lint-required-context-exists-in-bp / lint-required-context-exists-in-bp (pull_request) Successful in 1m34s
CI / Canvas (Next.js) (pull_request) Successful in 3s
lint-required-no-paths / lint-required-no-paths (pull_request) Successful in 1m38s
Harness Replays / Harness Replays (pull_request) Successful in 6s
E2E Staging Canvas (Playwright) / Canvas tabs E2E (pull_request) Successful in 15s
CI / Shellcheck (E2E scripts) (pull_request) Successful in 23s
CI / Canvas Deploy Status (pull_request) Has been skipped
E2E API Smoke Test / E2E API Smoke Test (pull_request) Successful in 1m7s
CI / Platform (Go) (pull_request) Successful in 4m21s
CI / all-required (pull_request) Successful in 42s
qa-review / approved (pull_request_review) Has been skipped
security-review / approved (pull_request_review) Has been skipped
sop-tier-check / tier-check (pull_request_review) Failing after 5s
audit-force-merge / audit (pull_request_target) Has been cancelled
Closes two coverage gaps that were previously only unit-mocked, wiring
GATING e2e into the required `E2E API Smoke Test` lane (not staging-only):
1. Channel SEND end-to-end. Adapters' SendMessage was only ever asserted
by unit tests that reconstruct the payload by hand and POST it
themselves (see channels/lark_test.go's prefix-gate workaround) —
nothing proved a message submitted through the LIVE platform API
serializes and POSTs to a provider endpoint. test_channels_e2e.sh
stands up a local mock upstream, points a Slack Incoming-Webhook
channel at it, sends via POST /workspaces/:id/channels/:id/send, and
asserts the MOCK RECEIVED the correctly-serialized {"text":...} body.
2. Channel DISCOVER (POST /channels/discover) — had no test. The Telegram
discover path is pointed at a mock Bot API serving getMe/getUpdates and
we assert the bot username + chat id round-trip back through the handler.
3. Workspace data-prune (RFC #734) — had no test. DELETE ?purge=true prunes
a workspace's durable child data; the e2e seeds prunable data on a target
+ a sibling, purges the target, and asserts the target's channel rows are
GONE while the sibling's SURVIVE.
Adapter test seam (channels/testseam.go): two env-gated overrides —
MOLECULE_CHANNELS_TEST_WEBHOOK_BASE (Slack accept-prefix) and
MOLECULE_CHANNELS_TEST_TELEGRAM_API_BASE (Telegram Bot API base) — let the
LIVE send/discover paths target a local mock. Both are production-inert:
never set in any prod/staging deploy, so the real vendor-host pins are the
only thing that passes there (byte-for-byte unchanged behaviour). Used the
simplest webhook shape (Slack Incoming Webhook, plain {"text":...}).
Wired into e2e-api.yml with E2E_REQUIRE_LIVE=1 so a seam regression goes
RED — the script NEVER fail-opens: seam-absent + require-live is a hard
failure, seam-absent + ad-hoc is a loud skip. Validated locally against a
booted PG+Redis+platform: 11/11 assertions pass with the seam, hard-RED
without it. bash -n + shellcheck --severity=warning clean; cleanup-traps
lint passes; channels/handlers unit suites green.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>