39 lines
1.5 KiB
TypeScript
39 lines
1.5 KiB
TypeScript
import { describe, expect, it } from "vitest";
|
|
import { findRoutedCommand } from "./routes.js";
|
|
|
|
describe("program routes", () => {
|
|
it("matches status route and preserves plugin loading", () => {
|
|
const route = findRoutedCommand(["status"]);
|
|
expect(route).not.toBeNull();
|
|
expect(route?.loadPlugins).toBe(true);
|
|
});
|
|
|
|
it("returns false when status timeout flag value is missing", async () => {
|
|
const route = findRoutedCommand(["status"]);
|
|
expect(route).not.toBeNull();
|
|
await expect(route?.run(["node", "openclaw", "status", "--timeout"])).resolves.toBe(false);
|
|
});
|
|
|
|
it("returns false for sessions route when --store value is missing", async () => {
|
|
const route = findRoutedCommand(["sessions"]);
|
|
expect(route).not.toBeNull();
|
|
await expect(route?.run(["node", "openclaw", "sessions", "--store"])).resolves.toBe(false);
|
|
});
|
|
|
|
it("does not match unknown routes", () => {
|
|
expect(findRoutedCommand(["definitely-not-real"])).toBeNull();
|
|
});
|
|
|
|
it("returns false for config get route when path argument is missing", async () => {
|
|
const route = findRoutedCommand(["config", "get"]);
|
|
expect(route).not.toBeNull();
|
|
await expect(route?.run(["node", "openclaw", "config", "get", "--json"])).resolves.toBe(false);
|
|
});
|
|
|
|
it("returns false for config unset route when path argument is missing", async () => {
|
|
const route = findRoutedCommand(["config", "unset"]);
|
|
expect(route).not.toBeNull();
|
|
await expect(route?.run(["node", "openclaw", "config", "unset"])).resolves.toBe(false);
|
|
});
|
|
});
|