@botbuddy/cli 1.9.0 → 1.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"schema_version":1,"source_version":"1.9.0","source_identity":"70b96a360d9dd5bd637dc6378a4cae6542cb0a508990f28d26c842946e6fb694"}
|
package/src/test-lane.mjs
CHANGED
|
@@ -26,12 +26,19 @@ import { callToolJson } from "./api.mjs";
|
|
|
26
26
|
export const EXIT_TEST = Object.freeze({ ...EXIT, TIMEOUT: 2 });
|
|
27
27
|
export const WAITS_URL = "https://app.bot-buddy.ai/waits";
|
|
28
28
|
const KNOWN_RUNNERS = new Set(["playwright", "generic"]);
|
|
29
|
+
// BOT-1549: mirror of the DB enum public.test_lane_kind (BOT-1547) and
|
|
30
|
+
// supabase/functions/_shared/test-adapters.ts LANE_KINDS. A lane declares its
|
|
31
|
+
// kind in .botbuddy/lanes.json; an unknown value (config or --lane-kind) is a
|
|
32
|
+
// hard, named failure — never a guessed default (gate 9).
|
|
33
|
+
export const LANE_KINDS = Object.freeze(["smoke", "regression", "diagnostics", "e2e", "unit", "integration", "other"]);
|
|
34
|
+
const LANE_KIND_SET = new Set(LANE_KINDS);
|
|
29
35
|
|
|
30
36
|
export function parseTestArgs(argv, { env = process.env } = {}) {
|
|
31
37
|
const opts = {
|
|
32
38
|
sessionId: env.BOTBUDDY_SESSION_ID ?? null,
|
|
33
39
|
environment: "local",
|
|
34
40
|
ticket: null, pr: null, repo: null,
|
|
41
|
+
laneKind: null,
|
|
35
42
|
wait: false, json: false,
|
|
36
43
|
};
|
|
37
44
|
const errors = [];
|
|
@@ -49,6 +56,7 @@ export function parseTestArgs(argv, { env = process.env } = {}) {
|
|
|
49
56
|
case "--ticket": opts.ticket = value(flag, i); i++; break;
|
|
50
57
|
case "--pr": { const raw = value(flag, i); i++; opts.pr = raw == null ? null : Number(raw); if (raw != null && !Number.isInteger(opts.pr)) errors.push("--pr must be an integer"); break; }
|
|
51
58
|
case "--repo": opts.repo = value(flag, i); i++; break;
|
|
59
|
+
case "--lane-kind": opts.laneKind = value(flag, i); i++; break;
|
|
52
60
|
case "--wait": opts.wait = true; break;
|
|
53
61
|
case "--json": opts.json = true; break;
|
|
54
62
|
default:
|
|
@@ -88,7 +96,12 @@ export function resolveLane(laneName, { cwd = process.cwd(), readFileImpl = read
|
|
|
88
96
|
const lane = lanes[laneName];
|
|
89
97
|
if (!Array.isArray(lane.command) || lane.command.length === 0) return { ok: false, error: "invalid", path, root, detail: `lane "${laneName}" has no command` };
|
|
90
98
|
if (!KNOWN_RUNNERS.has(lane.runner)) return { ok: false, error: "invalid", path, root, detail: `lane "${laneName}" runner must be playwright|generic` };
|
|
91
|
-
|
|
99
|
+
// BOT-1549: an optional per-lane `kind` must be a known lane_kind — a bad
|
|
100
|
+
// value is rejected here, never coerced or defaulted (gate 9).
|
|
101
|
+
if (lane.kind != null && !LANE_KIND_SET.has(lane.kind)) {
|
|
102
|
+
return { ok: false, error: "invalid", path, root, detail: `lane "${laneName}" lane_kind must be one of ${LANE_KINDS.join("|")} (got "${lane.kind}")` };
|
|
103
|
+
}
|
|
104
|
+
return { ok: true, appSlug: config.app_slug ?? null, lane, laneKind: lane.kind ?? null, path, root };
|
|
92
105
|
}
|
|
93
106
|
|
|
94
107
|
// Best-effort git/gh context. Every field falls back to null — never fabricated
|
|
@@ -151,8 +164,18 @@ export async function launchTestLane(argv, {
|
|
|
151
164
|
if (resolved.error === "missing") process.stderr.write(`botbuddy test: no lane config — create ${resolved.path}\n`);
|
|
152
165
|
else if (resolved.error === "unknown") process.stderr.write(`botbuddy test: unknown lane "${laneName}". Available: ${resolved.available.join(", ") || "(none)"}\n`);
|
|
153
166
|
else process.stderr.write(`botbuddy test: invalid lane config (${resolved.detail}) at ${resolved.path}\n`);
|
|
154
|
-
return { exitCode: EXIT_TEST.INVALID, line: JSON.stringify({ outcome: "rejected", error: resolved.error, path: resolved.path }) };
|
|
167
|
+
return { exitCode: EXIT_TEST.INVALID, line: JSON.stringify({ outcome: "rejected", error: resolved.error, path: resolved.path, detail: resolved.detail }) };
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
// BOT-1549: resolve the effective lane kind — a --lane-kind flag overrides
|
|
171
|
+
// the lane's config kind for this run. An invalid flag value is rejected
|
|
172
|
+
// before any run is created (gate 9), mirroring the config-side check.
|
|
173
|
+
if (opts.laneKind != null && !LANE_KIND_SET.has(opts.laneKind)) {
|
|
174
|
+
const detail = `invalid lane_kind: --lane-kind must be one of ${LANE_KINDS.join("|")} (got "${opts.laneKind}")`;
|
|
175
|
+
process.stderr.write(`botbuddy test: ${detail}\n`);
|
|
176
|
+
return { exitCode: EXIT_TEST.INVALID, line: JSON.stringify({ outcome: "rejected", error: "invalid", detail }) };
|
|
155
177
|
}
|
|
178
|
+
const laneKind = opts.laneKind ?? resolved.laneKind ?? null;
|
|
156
179
|
|
|
157
180
|
const git = gitInfo({ cwd, ticket: opts.ticket, pr: opts.pr, repo: opts.repo });
|
|
158
181
|
const sha7 = (git.sha ?? "").slice(0, 7) || "nosha";
|
|
@@ -167,6 +190,8 @@ export async function launchTestLane(argv, {
|
|
|
167
190
|
commit_sha: git.sha ?? undefined, branch_name: git.branch ?? undefined,
|
|
168
191
|
pr_number: git.prNumber ?? undefined, pr_url: git.prUrl ?? undefined,
|
|
169
192
|
source_kind: "cli-lane", source_id: laneRunId,
|
|
193
|
+
// BOT-1549: stamp the resolved lane kind on the run; absent ⇒ omitted (NULL).
|
|
194
|
+
lane_kind: laneKind ?? undefined,
|
|
170
195
|
};
|
|
171
196
|
const created = await call("create_test_run", createArgs);
|
|
172
197
|
const testRunId = created?.ok && !created.isError ? created.data?.id ?? null : null;
|
|
@@ -183,6 +208,15 @@ export async function launchTestLane(argv, {
|
|
|
183
208
|
|
|
184
209
|
// Step 3: launch the lane under the durable worker, telemetry env in the child.
|
|
185
210
|
const childEnv = { BOTBUDDY_LANE: laneName };
|
|
211
|
+
// BOT-1549: carry the lane kind to the child so uploaded executions
|
|
212
|
+
// (test-ingest / playwright-upload) can stamp lane_kind too. ALWAYS set the
|
|
213
|
+
// key: runWorker spawns the child with `{ ...process.env, ...child_env }`
|
|
214
|
+
// (run.mjs), so a bare `if (laneKind)` would let a stale BOTBUDDY_LANE_KIND
|
|
215
|
+
// already in the environment leak into the child even though this run's
|
|
216
|
+
// lane_kind is NULL — making child-uploaded executions disagree with their
|
|
217
|
+
// run (Codex P2). Setting "" when there is no effective kind deterministically
|
|
218
|
+
// clears any inherited value; empty ⇒ unset by parseLaneKind's contract.
|
|
219
|
+
childEnv.BOTBUDDY_LANE_KIND = laneKind ?? "";
|
|
186
220
|
if (testRunId) { childEnv.BOTBUDDY_TEST_RUN_ID = testRunId; childEnv.BOTBUDDY_TEST_RUN_EVENTS = eventsPath; }
|
|
187
221
|
const testRun = testRunId
|
|
188
222
|
? { test_run_id: testRunId, events_path: eventsPath, lane: laneName, runner: resolved.lane.runner, git_sha: git.sha ?? null, branch: git.branch ?? null }
|
|
@@ -248,7 +282,7 @@ function laneList(cwd) {
|
|
|
248
282
|
}
|
|
249
283
|
|
|
250
284
|
function testHelp() {
|
|
251
|
-
console.log(`botbuddy test <lane> [--session-id <uuid>] [--environment local] [--ticket <KEY>] [--pr <n>] [--repo <owner/repo>] [--wait] [--json] [-- <extra args>]
|
|
285
|
+
console.log(`botbuddy test <lane> [--session-id <uuid>] [--environment local] [--ticket <KEY>] [--pr <n>] [--repo <owner/repo>] [--lane-kind <${LANE_KINDS.join("|")}>] [--wait] [--json] [-- <extra args>]
|
|
252
286
|
botbuddy test list List the lanes configured in .botbuddy/lanes.json
|
|
253
287
|
botbuddy test help Show this help
|
|
254
288
|
|