mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-12 16:21:11 +00:00
62 lines
1.8 KiB
TypeScript
62 lines
1.8 KiB
TypeScript
import { describe, expect, it, vi } from "vitest";
|
|
import type { OpenClawConfig } from "../config/config.js";
|
|
import { runHeartbeatOnce } from "./heartbeat-runner.js";
|
|
import { installHeartbeatRunnerTestRuntime } from "./heartbeat-runner.test-harness.js";
|
|
import { seedMainSessionStore, withTempHeartbeatSandbox } from "./heartbeat-runner.test-utils.js";
|
|
|
|
// Avoid pulling optional runtime deps during isolated runs.
|
|
vi.mock("jiti", () => ({ createJiti: () => () => ({}) }));
|
|
|
|
installHeartbeatRunnerTestRuntime({ includeSlack: true });
|
|
|
|
describe("runHeartbeatOnce", () => {
|
|
it("uses the delivery target as sender when lastTo differs", async () => {
|
|
await withTempHeartbeatSandbox(
|
|
async ({ tmpDir, storePath, replySpy }) => {
|
|
const cfg: OpenClawConfig = {
|
|
agents: {
|
|
defaults: {
|
|
workspace: tmpDir,
|
|
heartbeat: {
|
|
every: "5m",
|
|
target: "slack",
|
|
to: "C0A9P2N8QHY",
|
|
},
|
|
},
|
|
},
|
|
session: { store: storePath },
|
|
};
|
|
|
|
await seedMainSessionStore(storePath, cfg, {
|
|
lastChannel: "telegram",
|
|
lastProvider: "telegram",
|
|
lastTo: "1644620762",
|
|
});
|
|
|
|
replySpy.mockImplementation(async (ctx: { To?: string; From?: string }) => {
|
|
expect(ctx.To).toBe("C0A9P2N8QHY");
|
|
expect(ctx.From).toBe("C0A9P2N8QHY");
|
|
return { text: "ok" };
|
|
});
|
|
|
|
const sendSlack = vi.fn().mockResolvedValue({
|
|
messageId: "m1",
|
|
channelId: "C0A9P2N8QHY",
|
|
});
|
|
|
|
await runHeartbeatOnce({
|
|
cfg,
|
|
deps: {
|
|
sendSlack,
|
|
getQueueSize: () => 0,
|
|
nowMs: () => 0,
|
|
},
|
|
});
|
|
|
|
expect(sendSlack).toHaveBeenCalled();
|
|
},
|
|
{ prefix: "openclaw-hb-" },
|
|
);
|
|
});
|
|
});
|