mirror of
https://github.com/farcasclaudiu/openclaw.git
synced 2026-06-28 09:01:32 +03:00
perf(cli): slim route-first bootstrap with lazy route handlers
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
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();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user