test(qa): add Slack live transport lane

This commit is contained in:
Vincent Koc
2026-05-03 15:19:44 -07:00
parent 4047f4d0b4
commit 31cafbb802
15 changed files with 1234 additions and 20 deletions

View File

@@ -14,6 +14,7 @@
"devDependencies": {
"@openclaw/discord": "workspace:*",
"@openclaw/plugin-sdk": "workspace:*",
"@openclaw/slack": "workspace:*",
"openclaw": "workspace:*"
},
"peerDependencies": {

View File

@@ -1,6 +1,7 @@
import { listQaRunnerCliContributions } from "openclaw/plugin-sdk/qa-runner-runtime";
import { discordQaCliRegistration } from "./discord/cli.js";
import type { LiveTransportQaCliRegistration } from "./shared/live-transport-cli.js";
import { slackQaCliRegistration } from "./slack/cli.js";
import { telegramQaCliRegistration } from "./telegram/cli.js";
function createBlockedQaRunnerCliRegistration(params: {
@@ -38,6 +39,7 @@ function createQaRunnerCliRegistration(
const LIVE_TRANSPORT_QA_CLI_REGISTRATIONS: readonly LiveTransportQaCliRegistration[] = [
telegramQaCliRegistration,
discordQaCliRegistration,
slackQaCliRegistration,
];
export function listLiveTransportQaCliRegistrations(): readonly LiveTransportQaCliRegistration[] {

View File

@@ -0,0 +1,23 @@
import type { LiveTransportQaCommandOptions } from "../shared/live-transport-cli.js";
import {
printLiveTransportQaArtifacts,
resolveLiveTransportQaRunOptions,
} from "../shared/live-transport-cli.runtime.js";
import { runSlackQaLive } from "./slack-live.runtime.js";
export async function runQaSlackCommand(opts: LiveTransportQaCommandOptions) {
const runOptions = resolveLiveTransportQaRunOptions(opts);
const result = await runSlackQaLive(runOptions);
printLiveTransportQaArtifacts("Slack QA", {
report: result.reportPath,
summary: result.summaryPath,
"observed messages": result.observedMessagesPath,
...(result.gatewayDebugDirPath ? { "gateway debug logs": result.gatewayDebugDirPath } : {}),
});
if (
!runOptions.allowFailures &&
result.scenarios.some((scenario) => scenario.status === "fail")
) {
process.exitCode = 1;
}
}

View File

@@ -0,0 +1,32 @@
import {
createLazyCliRuntimeLoader,
createLiveTransportQaCliRegistration,
type LiveTransportQaCliRegistration,
type LiveTransportQaCommandOptions,
} from "../shared/live-transport-cli.js";
type SlackQaCliRuntime = typeof import("./cli.runtime.js");
const loadSlackQaCliRuntime = createLazyCliRuntimeLoader<SlackQaCliRuntime>(
() => import("./cli.runtime.js"),
);
async function runQaSlack(opts: LiveTransportQaCommandOptions) {
const runtime = await loadSlackQaCliRuntime();
await runtime.runQaSlackCommand(opts);
}
export const slackQaCliRegistration: LiveTransportQaCliRegistration =
createLiveTransportQaCliRegistration({
commandName: "slack",
credentialOptions: {
sourceDescription: "Credential source for Slack QA: env or convex (default: env)",
roleDescription:
"Credential role for convex auth: maintainer or ci (default: ci in CI, maintainer otherwise)",
},
description: "Run the Slack live QA lane against a private bot-to-bot channel harness",
outputDirHelp: "Slack QA artifact directory",
scenarioHelp: "Run only the named Slack QA scenario (repeatable)",
sutAccountHelp: "Temporary Slack account id inside the QA gateway config",
run: runQaSlack,
});

View File

@@ -0,0 +1,57 @@
import { describe, expect, it } from "vitest";
import { __testing } from "./slack-live.runtime.js";
describe("Slack live QA runtime helpers", () => {
it("resolves env credential payloads", () => {
expect(
__testing.resolveSlackQaRuntimeEnv({
OPENCLAW_QA_SLACK_CHANNEL_ID: "C123456789",
OPENCLAW_QA_SLACK_DRIVER_BOT_TOKEN: "xoxb-driver",
OPENCLAW_QA_SLACK_SUT_BOT_TOKEN: "xoxb-sut",
OPENCLAW_QA_SLACK_SUT_APP_TOKEN: "xapp-sut",
}),
).toEqual({
channelId: "C123456789",
driverBotToken: "xoxb-driver",
sutBotToken: "xoxb-sut",
sutAppToken: "xapp-sut",
});
});
it("rejects malformed Slack channel ids", () => {
expect(() =>
__testing.resolveSlackQaRuntimeEnv({
OPENCLAW_QA_SLACK_CHANNEL_ID: "qa-channel",
OPENCLAW_QA_SLACK_DRIVER_BOT_TOKEN: "xoxb-driver",
OPENCLAW_QA_SLACK_SUT_BOT_TOKEN: "xoxb-sut",
OPENCLAW_QA_SLACK_SUT_APP_TOKEN: "xapp-sut",
}),
).toThrow("OPENCLAW_QA_SLACK channelId must be a Slack id like C123 or U123.");
});
it("parses Convex credential payloads", () => {
expect(
__testing.parseSlackQaCredentialPayload({
channelId: "C123456789",
driverBotToken: "xoxb-driver",
sutBotToken: "xoxb-sut",
sutAppToken: "xapp-sut",
}),
).toEqual({
channelId: "C123456789",
driverBotToken: "xoxb-driver",
sutBotToken: "xoxb-sut",
sutAppToken: "xapp-sut",
});
});
it("reports standard live transport scenario coverage", () => {
expect(__testing.SLACK_QA_STANDARD_SCENARIO_IDS).toEqual(["canary", "mention-gating"]);
});
it("selects Slack scenarios by id", () => {
expect(__testing.findScenario(["slack-canary"]).map((scenario) => scenario.id)).toEqual([
"slack-canary",
]);
});
});

View File

@@ -0,0 +1,819 @@
import { randomUUID } from "node:crypto";
import fs from "node:fs/promises";
import path from "node:path";
import { createSlackWebClient, createSlackWriteClient } from "@openclaw/slack/api.js";
import type { WebClient } from "@slack/web-api";
import type { OpenClawConfig } from "openclaw/plugin-sdk/config-types";
import { formatErrorMessage } from "openclaw/plugin-sdk/error-runtime";
import { z } from "zod";
import { startQaGatewayChild } from "../../gateway-child.js";
import { DEFAULT_QA_LIVE_PROVIDER_MODE } from "../../providers/index.js";
import {
defaultQaModelForMode,
normalizeQaProviderMode,
type QaProviderModeInput,
} from "../../run-config.js";
import {
acquireQaCredentialLease,
startQaCredentialLeaseHeartbeat,
type QaCredentialRole,
} from "../shared/credential-lease.runtime.js";
import { startQaLiveLaneGateway } from "../shared/live-gateway.runtime.js";
import { appendLiveLaneIssue, buildLiveLaneArtifactsError } from "../shared/live-lane-helpers.js";
import {
collectLiveTransportStandardScenarioCoverage,
selectLiveTransportScenarios,
type LiveTransportScenarioDefinition,
} from "../shared/live-transport-scenarios.js";
type SlackQaRuntimeEnv = {
channelId: string;
driverBotToken: string;
sutBotToken: string;
sutAppToken: string;
};
type SlackQaScenarioId = "slack-canary" | "slack-mention-gating";
type SlackQaScenarioRun = {
expectReply: boolean;
input: string;
matchText: string;
};
type SlackQaScenarioDefinition = LiveTransportScenarioDefinition<SlackQaScenarioId> & {
buildRun: (sutUserId: string) => SlackQaScenarioRun;
};
type SlackAuthIdentity = {
botId?: string;
teamId?: string;
userId: string;
};
type SlackMessage = {
bot_id?: string;
text?: string;
thread_ts?: string;
ts?: string;
user?: string;
};
type SlackObservedMessage = {
botId?: string;
channelId: string;
matchedScenario?: boolean;
scenarioId?: string;
scenarioTitle?: string;
text: string;
threadTs?: string;
ts: string;
userId?: string;
};
type SlackObservedMessageArtifact = {
botId?: string;
channelId?: string;
matchedScenario?: boolean;
scenarioId?: string;
scenarioTitle?: string;
text?: string;
threadTs?: string;
ts?: string;
userId?: string;
};
type SlackQaScenarioResult = {
details: string;
id: string;
requestStartedAt?: string;
responseObservedAt?: string;
rttMs?: number;
status: "fail" | "pass";
title: string;
};
export type SlackQaRunResult = {
gatewayDebugDirPath?: string;
observedMessagesPath: string;
outputDir: string;
reportPath: string;
scenarios: SlackQaScenarioResult[];
summaryPath: string;
};
type SlackQaSummary = {
channelId: string;
cleanupIssues: string[];
counts: {
failed: number;
passed: number;
total: number;
};
credentials: {
credentialId?: string;
kind: string;
ownerId?: string;
role?: QaCredentialRole;
source: "convex" | "env";
};
finishedAt: string;
scenarios: SlackQaScenarioResult[];
startedAt: string;
};
const SLACK_QA_CAPTURE_CONTENT_ENV = "OPENCLAW_QA_SLACK_CAPTURE_CONTENT";
const QA_REDACT_PUBLIC_METADATA_ENV = "OPENCLAW_QA_REDACT_PUBLIC_METADATA";
const SLACK_QA_ENV_KEYS = [
"OPENCLAW_QA_SLACK_CHANNEL_ID",
"OPENCLAW_QA_SLACK_DRIVER_BOT_TOKEN",
"OPENCLAW_QA_SLACK_SUT_BOT_TOKEN",
"OPENCLAW_QA_SLACK_SUT_APP_TOKEN",
] as const;
const slackQaCredentialPayloadSchema = z.object({
channelId: z.string().trim().min(1),
driverBotToken: z.string().trim().min(1),
sutBotToken: z.string().trim().min(1),
sutAppToken: z.string().trim().min(1),
});
const slackAuthTestSchema = z.object({
ok: z.boolean().optional(),
user_id: z.string().optional(),
bot_id: z.string().optional(),
team_id: z.string().optional(),
});
const slackPostMessageSchema = z.object({
ok: z.boolean().optional(),
channel: z.string().optional(),
ts: z.string().min(1),
});
const slackHistoryMessageSchema = z.object({
bot_id: z.string().optional(),
text: z.string().optional(),
thread_ts: z.string().optional(),
ts: z.string().min(1),
user: z.string().optional(),
});
const slackHistorySchema = z.object({
ok: z.boolean().optional(),
messages: z.array(slackHistoryMessageSchema).optional(),
});
const SLACK_QA_SCENARIOS: SlackQaScenarioDefinition[] = [
{
id: "slack-canary",
standardId: "canary",
title: "Slack canary echo",
timeoutMs: 45_000,
buildRun: (sutUserId) => {
const token = `SLACK_QA_ECHO_${randomUUID().slice(0, 8).toUpperCase()}`;
return {
expectReply: true,
input: `<@${sutUserId}> reply with only this exact marker: ${token}`,
matchText: token,
};
},
},
{
id: "slack-mention-gating",
standardId: "mention-gating",
title: "Slack unmentioned bot message does not trigger",
timeoutMs: 8_000,
buildRun: () => {
const token = `SLACK_QA_NOMENTION_${randomUUID().slice(0, 8).toUpperCase()}`;
return {
expectReply: false,
input: `reply with only this exact marker: ${token}`,
matchText: token,
};
},
},
];
const SLACK_QA_STANDARD_SCENARIO_IDS = collectLiveTransportStandardScenarioCoverage({
scenarios: SLACK_QA_SCENARIOS,
});
function resolveEnvValue(env: NodeJS.ProcessEnv, key: (typeof SLACK_QA_ENV_KEYS)[number]) {
const value = env[key]?.trim();
if (!value) {
throw new Error(`Missing ${key}.`);
}
return value;
}
function isTruthyOptIn(value: string | undefined) {
const normalized = value?.trim().toLowerCase();
return normalized === "1" || normalized === "true" || normalized === "yes";
}
function normalizeSlackId(value: string, label: string) {
const normalized = value.trim();
if (!/^[A-Z][A-Z0-9]+$/.test(normalized)) {
throw new Error(`${label} must be a Slack id like C123 or U123.`);
}
return normalized;
}
function validateSlackQaRuntimeEnv(runtimeEnv: SlackQaRuntimeEnv, label: string) {
normalizeSlackId(runtimeEnv.channelId, `${label} channelId`);
return runtimeEnv;
}
function resolveSlackQaRuntimeEnv(env: NodeJS.ProcessEnv = process.env): SlackQaRuntimeEnv {
const runtimeEnv = {
channelId: resolveEnvValue(env, "OPENCLAW_QA_SLACK_CHANNEL_ID"),
driverBotToken: resolveEnvValue(env, "OPENCLAW_QA_SLACK_DRIVER_BOT_TOKEN"),
sutBotToken: resolveEnvValue(env, "OPENCLAW_QA_SLACK_SUT_BOT_TOKEN"),
sutAppToken: resolveEnvValue(env, "OPENCLAW_QA_SLACK_SUT_APP_TOKEN"),
};
return validateSlackQaRuntimeEnv(runtimeEnv, "OPENCLAW_QA_SLACK");
}
function parseSlackQaCredentialPayload(payload: unknown): SlackQaRuntimeEnv {
const parsed = slackQaCredentialPayloadSchema.parse(payload);
const runtimeEnv = {
channelId: parsed.channelId,
driverBotToken: parsed.driverBotToken,
sutBotToken: parsed.sutBotToken,
sutAppToken: parsed.sutAppToken,
};
return validateSlackQaRuntimeEnv(runtimeEnv, "Slack credential payload");
}
function findScenario(ids?: string[]) {
return selectLiveTransportScenarios({
ids,
laneLabel: "Slack",
scenarios: SLACK_QA_SCENARIOS,
});
}
function buildSlackQaConfig(
baseCfg: OpenClawConfig,
params: {
channelId: string;
driverBotUserId: string;
sutAccountId: string;
sutAppToken: string;
sutBotToken: string;
},
): OpenClawConfig {
const pluginAllow = [...new Set([...(baseCfg.plugins?.allow ?? []), "slack"])];
return {
...baseCfg,
plugins: {
...baseCfg.plugins,
allow: pluginAllow,
entries: {
...baseCfg.plugins?.entries,
slack: { enabled: true },
},
},
messages: {
...baseCfg.messages,
groupChat: {
...baseCfg.messages?.groupChat,
visibleReplies: "automatic",
},
},
channels: {
...baseCfg.channels,
slack: {
enabled: true,
defaultAccount: params.sutAccountId,
accounts: {
[params.sutAccountId]: {
enabled: true,
mode: "socket",
botToken: params.sutBotToken,
appToken: params.sutAppToken,
groupPolicy: "allowlist",
allowBots: true,
channels: {
[params.channelId]: {
enabled: true,
requireMention: true,
allowBots: true,
users: [params.driverBotUserId],
},
},
},
},
},
},
};
}
async function getSlackIdentity(token: string): Promise<SlackAuthIdentity> {
const client = createSlackWebClient(token, { timeout: 15_000 });
const auth = slackAuthTestSchema.parse(await client.auth.test());
if (!auth.user_id) {
throw new Error("Slack auth.test did not return user_id.");
}
return {
userId: auth.user_id,
botId: auth.bot_id,
teamId: auth.team_id,
};
}
async function sendSlackChannelMessage(params: {
channelId: string;
client: WebClient;
text: string;
}) {
const sendSlackMessage = params.client.chat.postMessage.bind(params.client.chat);
const sent = slackPostMessageSchema.parse(
await sendSlackMessage({
channel: params.channelId,
text: params.text,
unfurl_links: false,
unfurl_media: false,
}),
);
return {
channelId: sent.channel ?? params.channelId,
ts: sent.ts,
};
}
async function listSlackMessages(params: {
channelId: string;
client: WebClient;
oldestTs: string;
}) {
const history = slackHistorySchema.parse(
await params.client.conversations.history({
channel: params.channelId,
inclusive: true,
limit: 50,
oldest: params.oldestTs,
}),
);
return history.messages ?? [];
}
function isSutSlackMessage(message: SlackMessage, sutIdentity: SlackAuthIdentity) {
return (
(message.user !== undefined && message.user === sutIdentity.userId) ||
(message.bot_id !== undefined && message.bot_id === sutIdentity.botId)
);
}
async function waitForSlackScenarioReply(params: {
channelId: string;
client: WebClient;
matchText: string;
observedMessages: SlackObservedMessage[];
observationScenarioId: string;
observationScenarioTitle: string;
sentTs: string;
sutIdentity: SlackAuthIdentity;
timeoutMs: number;
}) {
const startedAt = Date.now();
while (Date.now() - startedAt < params.timeoutMs) {
const messages = await listSlackMessages({
channelId: params.channelId,
client: params.client,
oldestTs: params.sentTs,
});
for (const message of messages) {
const text = message.text ?? "";
if (
!message.ts ||
message.ts === params.sentTs ||
!isSutSlackMessage(message, params.sutIdentity)
) {
continue;
}
const matchedScenario = text.includes(params.matchText);
params.observedMessages.push({
botId: message.bot_id,
channelId: params.channelId,
matchedScenario,
scenarioId: params.observationScenarioId,
scenarioTitle: params.observationScenarioTitle,
text,
threadTs: message.thread_ts,
ts: message.ts,
userId: message.user,
});
if (matchedScenario) {
return {
message,
observedAt: new Date().toISOString(),
};
}
}
await new Promise((resolve) => setTimeout(resolve, 1_000));
}
throw new Error(`timed out after ${params.timeoutMs}ms waiting for Slack message`);
}
async function waitForSlackNoReply(params: {
channelId: string;
client: WebClient;
matchText: string;
observedMessages: SlackObservedMessage[];
observationScenarioId: string;
observationScenarioTitle: string;
sentTs: string;
sutIdentity: SlackAuthIdentity;
timeoutMs: number;
}) {
try {
await waitForSlackScenarioReply(params);
} catch (error) {
const message = formatErrorMessage(error);
if (message === `timed out after ${params.timeoutMs}ms waiting for Slack message`) {
return;
}
throw error;
}
throw new Error("unexpected Slack SUT reply observed");
}
async function waitForSlackChannelRunning(
gateway: Awaited<ReturnType<typeof startQaGatewayChild>>,
accountId: string,
) {
const startedAt = Date.now();
let lastStatus:
| {
connected?: boolean;
lastConnectedAt?: number;
lastDisconnect?: unknown;
lastError?: string;
restartPending?: boolean;
running?: boolean;
}
| undefined;
while (Date.now() - startedAt < 45_000) {
try {
const payload = (await gateway.call(
"channels.status",
{ probe: false, timeoutMs: 2_000 },
{ timeoutMs: 5_000 },
)) as {
channelAccounts?: Record<
string,
Array<{
accountId?: string;
connected?: boolean;
lastConnectedAt?: number;
lastDisconnect?: unknown;
lastError?: string;
restartPending?: boolean;
running?: boolean;
}>
>;
};
const accounts = payload.channelAccounts?.slack ?? [];
const match = accounts.find((entry) => entry.accountId === accountId);
lastStatus = match
? {
connected: match.connected,
lastConnectedAt: match.lastConnectedAt,
lastDisconnect: match.lastDisconnect,
lastError: match.lastError,
restartPending: match.restartPending,
running: match.running,
}
: undefined;
if (match?.running && match.connected === true && match.restartPending !== true) {
return;
}
} catch {
// retry
}
await new Promise((resolve) => setTimeout(resolve, 500));
}
throw new Error(
`slack account "${accountId}" did not become ready` +
(lastStatus ? `; last status: ${JSON.stringify(lastStatus)}` : ""),
);
}
function toObservedSlackArtifacts(params: {
includeContent: boolean;
messages: SlackObservedMessage[];
redactMetadata: boolean;
}): SlackObservedMessageArtifact[] {
return params.messages.map((message) => ({
botId: params.redactMetadata ? undefined : message.botId,
channelId: params.redactMetadata ? undefined : message.channelId,
matchedScenario: message.matchedScenario,
scenarioId: message.scenarioId,
scenarioTitle: message.scenarioTitle,
text: params.includeContent ? message.text : undefined,
threadTs: params.redactMetadata ? undefined : message.threadTs,
ts: params.redactMetadata ? undefined : message.ts,
userId: params.redactMetadata ? undefined : message.userId,
}));
}
function renderSlackQaMarkdown(params: {
channelId: string;
cleanupIssues: string[];
credentialSource: "convex" | "env";
finishedAt: string;
gatewayDebugDirPath?: string;
redactMetadata: boolean;
scenarios: SlackQaScenarioResult[];
startedAt: string;
}) {
const lines = [
"# Slack QA Report",
"",
`- Credential source: \`${params.credentialSource}\``,
`- Channel: \`${params.redactMetadata ? "<redacted>" : params.channelId}\``,
`- Metadata redaction: \`${params.redactMetadata ? "enabled" : "disabled"}\``,
`- Started: ${params.startedAt}`,
`- Finished: ${params.finishedAt}`,
];
if (params.gatewayDebugDirPath) {
lines.push(`- Gateway debug artifacts: \`${params.gatewayDebugDirPath}\``);
}
if (params.cleanupIssues.length > 0) {
lines.push("", "## Cleanup issues", "");
for (const issue of params.cleanupIssues) {
lines.push(`- ${issue}`);
}
}
lines.push("", "## Scenarios", "");
for (const scenario of params.scenarios) {
lines.push(`### ${scenario.title}`, "");
lines.push(`- Status: ${scenario.status}`);
lines.push(`- Details: ${scenario.details}`);
if (scenario.rttMs !== undefined) {
lines.push(`- RTT: ${scenario.rttMs}ms`);
}
lines.push("");
}
return lines.join("\n");
}
export async function runSlackQaLive(params: {
alternateModel?: string;
credentialRole?: string;
credentialSource?: string;
fastMode?: boolean;
outputDir?: string;
primaryModel?: string;
providerMode?: QaProviderModeInput;
repoRoot?: string;
scenarioIds?: string[];
sutAccountId?: string;
}): Promise<SlackQaRunResult> {
const repoRoot = path.resolve(params.repoRoot ?? process.cwd());
const outputDir =
params.outputDir ??
path.join(repoRoot, ".artifacts", "qa-e2e", `slack-${Date.now().toString(36)}`);
await fs.mkdir(outputDir, { recursive: true });
const providerMode = normalizeQaProviderMode(
params.providerMode ?? DEFAULT_QA_LIVE_PROVIDER_MODE,
);
const primaryModel = params.primaryModel?.trim() || defaultQaModelForMode(providerMode);
const alternateModel = params.alternateModel?.trim() || defaultQaModelForMode(providerMode, true);
const sutAccountId = params.sutAccountId?.trim() || "sut";
const scenarios = findScenario(params.scenarioIds);
const credentialLease = await acquireQaCredentialLease({
kind: "slack",
source: params.credentialSource,
role: params.credentialRole,
resolveEnvPayload: () => resolveSlackQaRuntimeEnv(),
parsePayload: parseSlackQaCredentialPayload,
});
const leaseHeartbeat = startQaCredentialLeaseHeartbeat(credentialLease);
const assertLeaseHealthy = () => {
leaseHeartbeat.throwIfFailed();
};
const runtimeEnv = credentialLease.payload;
const redactPublicMetadata = isTruthyOptIn(process.env[QA_REDACT_PUBLIC_METADATA_ENV]);
const includeObservedMessageContent = isTruthyOptIn(process.env[SLACK_QA_CAPTURE_CONTENT_ENV]);
const startedAt = new Date().toISOString();
const observedMessages: SlackObservedMessage[] = [];
const scenarioResults: SlackQaScenarioResult[] = [];
const cleanupIssues: string[] = [];
const gatewayDebugDirPath = path.join(outputDir, "gateway-debug");
let preservedGatewayDebugArtifacts = false;
try {
const [driverIdentity, sutIdentity] = await Promise.all([
getSlackIdentity(runtimeEnv.driverBotToken),
getSlackIdentity(runtimeEnv.sutBotToken),
]);
if (driverIdentity.userId === sutIdentity.userId) {
throw new Error("Slack QA requires two distinct bots for driver and SUT.");
}
const driverClient = createSlackWriteClient(runtimeEnv.driverBotToken, { timeout: 15_000 });
const sutReadClient = createSlackWebClient(runtimeEnv.sutBotToken, { timeout: 15_000 });
const gatewayHarness = await startQaLiveLaneGateway({
repoRoot,
transport: {
requiredPluginIds: [],
createGatewayConfig: () => ({}),
},
transportBaseUrl: "http://127.0.0.1:0",
providerMode,
primaryModel,
alternateModel,
fastMode: params.fastMode,
controlUiEnabled: false,
mutateConfig: (cfg) =>
buildSlackQaConfig(cfg, {
channelId: runtimeEnv.channelId,
driverBotUserId: driverIdentity.userId,
sutAccountId,
sutAppToken: runtimeEnv.sutAppToken,
sutBotToken: runtimeEnv.sutBotToken,
}),
});
try {
await waitForSlackChannelRunning(gatewayHarness.gateway, sutAccountId);
assertLeaseHealthy();
for (const scenario of scenarios) {
assertLeaseHealthy();
const scenarioRun = scenario.buildRun(sutIdentity.userId);
const requestStartedAt = new Date();
try {
const sent = await sendSlackChannelMessage({
channelId: runtimeEnv.channelId,
client: driverClient,
text: scenarioRun.input,
});
if (scenarioRun.expectReply) {
const reply = await waitForSlackScenarioReply({
channelId: runtimeEnv.channelId,
client: sutReadClient,
matchText: scenarioRun.matchText,
observedMessages,
observationScenarioId: scenario.id,
observationScenarioTitle: scenario.title,
sentTs: sent.ts,
sutIdentity,
timeoutMs: scenario.timeoutMs,
});
const responseObservedAt = new Date(reply.observedAt);
const rttMs = responseObservedAt.getTime() - requestStartedAt.getTime();
scenarioResults.push({
id: scenario.id,
title: scenario.title,
status: "pass",
details: `reply matched in ${rttMs}ms`,
rttMs,
requestStartedAt: requestStartedAt.toISOString(),
responseObservedAt: responseObservedAt.toISOString(),
});
} else {
await waitForSlackNoReply({
channelId: runtimeEnv.channelId,
client: sutReadClient,
matchText: scenarioRun.matchText,
observedMessages,
observationScenarioId: scenario.id,
observationScenarioTitle: scenario.title,
sentTs: sent.ts,
sutIdentity,
timeoutMs: scenario.timeoutMs,
});
scenarioResults.push({
id: scenario.id,
title: scenario.title,
status: "pass",
details: "no reply",
});
}
} catch (error) {
const result = {
id: scenario.id,
title: scenario.title,
status: "fail" as const,
details: formatErrorMessage(error),
};
scenarioResults.push(result);
preservedGatewayDebugArtifacts = true;
await gatewayHarness.gateway
.stop({ keepTemp: true, preserveToDir: gatewayDebugDirPath })
.catch((stopError) => {
appendLiveLaneIssue(cleanupIssues, "gateway debug preservation failed", stopError);
});
break;
}
}
} finally {
if (!preservedGatewayDebugArtifacts) {
await gatewayHarness.stop().catch((error) => {
appendLiveLaneIssue(cleanupIssues, "gateway stop failed", error);
});
}
}
} catch (error) {
cleanupIssues.push(
buildLiveLaneArtifactsError({
heading: "Slack QA failed before scenario completion.",
details: [formatErrorMessage(error)],
artifacts: {
gatewayDebug: gatewayDebugDirPath,
},
}),
);
preservedGatewayDebugArtifacts = true;
await fs.mkdir(gatewayDebugDirPath, { recursive: true }).catch(() => {});
scenarioResults.push({
id: "slack-canary",
title: "Slack canary echo",
status: "fail",
details: formatErrorMessage(error),
});
} finally {
try {
await leaseHeartbeat.stop();
} catch (error) {
appendLiveLaneIssue(cleanupIssues, "credential heartbeat stop failed", error);
}
try {
await credentialLease.release();
} catch (error) {
appendLiveLaneIssue(cleanupIssues, "credential release failed", error);
}
}
const finishedAt = new Date().toISOString();
const reportPath = path.join(outputDir, "slack-qa-report.md");
const summaryPath = path.join(outputDir, "slack-qa-summary.json");
const observedMessagesPath = path.join(outputDir, "slack-qa-observed-messages.json");
const passed = scenarioResults.filter((entry) => entry.status === "pass").length;
const failed = scenarioResults.filter((entry) => entry.status === "fail").length;
const summary: SlackQaSummary = {
credentials: {
source: credentialLease.source,
kind: credentialLease.kind,
role: credentialLease.role,
credentialId: redactPublicMetadata ? undefined : credentialLease.credentialId,
ownerId: redactPublicMetadata ? undefined : credentialLease.ownerId,
},
channelId: redactPublicMetadata ? "<redacted>" : runtimeEnv.channelId,
startedAt,
finishedAt,
cleanupIssues,
counts: {
total: scenarioResults.length,
passed,
failed,
},
scenarios: scenarioResults,
};
await fs.writeFile(
observedMessagesPath,
`${JSON.stringify(
toObservedSlackArtifacts({
messages: observedMessages,
includeContent: includeObservedMessageContent,
redactMetadata: redactPublicMetadata,
}),
null,
2,
)}\n`,
);
await fs.writeFile(summaryPath, `${JSON.stringify(summary, null, 2)}\n`);
await fs.writeFile(
reportPath,
`${renderSlackQaMarkdown({
channelId: runtimeEnv.channelId,
cleanupIssues,
credentialSource: credentialLease.source,
finishedAt,
gatewayDebugDirPath: preservedGatewayDebugArtifacts ? gatewayDebugDirPath : undefined,
redactMetadata: redactPublicMetadata,
scenarios: scenarioResults,
startedAt,
})}\n`,
);
return {
outputDir,
reportPath,
summaryPath,
observedMessagesPath,
gatewayDebugDirPath: preservedGatewayDebugArtifacts ? gatewayDebugDirPath : undefined,
scenarios: scenarioResults,
};
}
export const __testing = {
findScenario,
parseSlackQaCredentialPayload,
resolveSlackQaRuntimeEnv,
SLACK_QA_STANDARD_SCENARIO_IDS,
};

View File

@@ -37,6 +37,7 @@
"openclaw/plugin-sdk/ssrf-runtime": ["../dist/plugin-sdk/src/plugin-sdk/ssrf-runtime.d.ts"],
"@openclaw/qa-channel/api.js": ["../dist/plugin-sdk/extensions/qa-channel/api.d.ts"],
"@openclaw/discord/api.js": ["../dist/plugin-sdk/extensions/discord/api.d.ts"],
"@openclaw/slack/api.js": ["../dist/plugin-sdk/extensions/slack/api.d.ts"],
"@openclaw/*.js": ["../packages/plugin-sdk/dist/extensions/*.d.ts", "../extensions/*"],
"@openclaw/*": ["../packages/plugin-sdk/dist/extensions/*", "../extensions/*"],
"@openclaw/plugin-sdk/*": ["../dist/plugin-sdk/src/plugin-sdk/*.d.ts"]