mirror of
https://github.com/moltbot/moltbot.git
synced 2026-05-13 15:47:28 +00:00
Summary: - The branch adds an opt-in Feishu top-level group-send fallback for withdrawn or missing normal quoted thread replies, plus regression coverage, a changelog entry, and CI/lint typing and baseline refreshes. - Reproducibility: yes. at source level. Current main hard-errors withdrawn/not-found Feishu reply targets when `replyInThread` is true, and the existing regression test asserts that no top-level create fallback occurs. Automerge notes: - PR branch already contained follow-up commit before automerge: fix(feishu): fall back from missing thread replies - PR branch already contained follow-up commit before automerge: fix(clawsweeper): address review for automerge-openclaw-openclaw-8030… - PR branch already contained follow-up commit before automerge: fix(clawsweeper): reconcile automerge-openclaw-openclaw-80306 with ma… - PR branch already contained follow-up commit before automerge: fix(ci): satisfy stricter lint and test types - PR branch already contained follow-up commit before automerge: fix(ci): align Node 24 test typing Validation: - ClawSweeper review passed for head93146f9d13. - Required merge gates passed before the squash merge. Prepared head SHA:93146f9d13Review: https://github.com/openclaw/openclaw/pull/80306#issuecomment-4415604729 Co-authored-by: Peter Steinberger <steipete@gmail.com> Co-authored-by: clawsweeper <274271284+clawsweeper[bot]@users.noreply.github.com>
53 lines
1.9 KiB
TypeScript
53 lines
1.9 KiB
TypeScript
import { spawnSync } from "node:child_process";
|
|
import fs from "node:fs/promises";
|
|
import path from "node:path";
|
|
import { withTempHome } from "openclaw/plugin-sdk/test-env";
|
|
import { describe, expect, it } from "vitest";
|
|
|
|
describe("cli json stdout contract", () => {
|
|
it("keeps `update status --json` stdout parseable even with legacy doctor preflight inputs", async () => {
|
|
await withTempHome(
|
|
async (tempHome) => {
|
|
const legacyDir = path.join(tempHome, ".clawdbot");
|
|
await fs.mkdir(legacyDir, { recursive: true });
|
|
await fs.writeFile(path.join(legacyDir, "clawdbot.json"), "{}", "utf8");
|
|
|
|
const env = {
|
|
...process.env,
|
|
HOME: tempHome,
|
|
USERPROFILE: tempHome,
|
|
OPENCLAW_TEST_FAST: "1",
|
|
};
|
|
delete env.OPENCLAW_HOME;
|
|
delete env.OPENCLAW_STATE_DIR;
|
|
delete env.OPENCLAW_CONFIG_PATH;
|
|
delete env.VITEST;
|
|
|
|
const entry = path.resolve(process.cwd(), "src/entry.ts");
|
|
const result = spawnSync(
|
|
process.execPath,
|
|
["--import", "tsx", entry, "update", "status", "--json", "--timeout", "1"],
|
|
{ cwd: process.cwd(), env, encoding: "utf8" },
|
|
);
|
|
|
|
expect(result.status).toBe(0);
|
|
const stdout = result.stdout.trim();
|
|
expect(stdout.length).toBeGreaterThan(0);
|
|
const parsed = JSON.parse(stdout) as unknown;
|
|
if (parsed === null || typeof parsed !== "object" || Array.isArray(parsed)) {
|
|
throw new Error(`Expected JSON object stdout, got: ${stdout}`);
|
|
}
|
|
expect(Object.keys(parsed).toSorted((a, b) => a.localeCompare(b))).toEqual([
|
|
"availability",
|
|
"channel",
|
|
"update",
|
|
]);
|
|
expect(stdout).not.toContain("Doctor warnings");
|
|
expect(stdout).not.toContain("Doctor changes");
|
|
expect(stdout).not.toContain("Config invalid");
|
|
},
|
|
{ prefix: "openclaw-json-e2e-" },
|
|
);
|
|
});
|
|
});
|