Files
openclaw/src/utils/utils-misc.test.ts
Peter Steinberger 1e7510ae10 docs: continue inline comment pass (#88849)
Adds broad inline comments and JSDoc for CLI, cron, outbound/channel, plugin SDK, ACP, shared helpers, net policy, and related utility contracts. Proof: git diff --check on latest exact head plus focused cron tests passed; CI had no failing checks observed before merge attempt.
2026-05-31 22:32:28 -04:00

103 lines
3.6 KiB
TypeScript

import { describe, expect, it } from "vitest";
import { z } from "zod";
import { asBoolean, parseBooleanValue } from "./boolean.js";
import { chunkItems } from "./chunk-items.js";
import { splitShellArgs } from "./shell-argv.js";
import { safeParseJsonWithSchema, safeParseWithSchema } from "./zod-parse.js";
describe("asBoolean", () => {
it("accepts booleans only", () => {
expect(asBoolean(true)).toBe(true);
expect(asBoolean(false)).toBe(false);
expect(asBoolean("true")).toBeUndefined();
expect(asBoolean(1)).toBeUndefined();
});
});
describe("parseBooleanValue", () => {
it("handles boolean inputs", () => {
expect(parseBooleanValue(true)).toBe(true);
expect(parseBooleanValue(false)).toBe(false);
});
it("parses default truthy/falsy strings", () => {
expect(parseBooleanValue("true")).toBe(true);
expect(parseBooleanValue("1")).toBe(true);
expect(parseBooleanValue("yes")).toBe(true);
expect(parseBooleanValue("on")).toBe(true);
expect(parseBooleanValue("false")).toBe(false);
expect(parseBooleanValue("0")).toBe(false);
expect(parseBooleanValue("no")).toBe(false);
expect(parseBooleanValue("off")).toBe(false);
});
it("respects custom truthy/falsy lists", () => {
expect(
parseBooleanValue("on", {
truthy: ["true"],
falsy: ["false"],
}),
).toBeUndefined();
expect(
parseBooleanValue("yes", {
truthy: ["yes"],
falsy: ["no"],
}),
).toBe(true);
});
it("returns undefined for unsupported values", () => {
expect(parseBooleanValue("")).toBeUndefined();
expect(parseBooleanValue("maybe")).toBeUndefined();
expect(parseBooleanValue(1)).toBeUndefined();
});
});
describe("splitShellArgs", () => {
it("splits whitespace and respects quotes", () => {
expect(splitShellArgs(`qmd --foo "bar baz"`)).toEqual(["qmd", "--foo", "bar baz"]);
expect(splitShellArgs(`qmd --foo 'bar baz'`)).toEqual(["qmd", "--foo", "bar baz"]);
});
it("supports backslash escapes inside double quotes", () => {
expect(splitShellArgs(String.raw`echo "a\"b"`)).toEqual(["echo", `a"b`]);
expect(splitShellArgs(String.raw`echo "\$HOME"`)).toEqual(["echo", "$HOME"]);
});
it("returns null for unterminated quotes", () => {
expect(splitShellArgs(`echo "oops`)).toBeNull();
expect(splitShellArgs(`echo 'oops`)).toBeNull();
});
it("stops at unquoted shell comments but keeps quoted hashes literal", () => {
expect(splitShellArgs(`echo hi # comment && whoami`)).toEqual(["echo", "hi"]);
expect(splitShellArgs(`echo "hi # still-literal"`)).toEqual(["echo", "hi # still-literal"]);
expect(splitShellArgs(`echo hi#tail`)).toEqual(["echo", "hi#tail"]);
});
});
describe("chunkItems", () => {
it("splits items into fixed-size chunks", () => {
expect(chunkItems([1, 2, 3, 4, 5], 2)).toEqual([[1, 2], [3, 4], [5]]);
});
it("keeps one row when the requested size is not positive", () => {
expect(chunkItems([1, 2, 3], 0)).toEqual([[1, 2, 3]]);
});
});
describe("zod parse helpers", () => {
const schema = z.object({ name: z.string() });
it("returns parsed data for schema-valid values", () => {
expect(safeParseWithSchema(schema, { name: "Ada" })).toEqual({ name: "Ada" });
expect(safeParseJsonWithSchema(schema, `{"name":"Ada"}`)).toEqual({ name: "Ada" });
});
it("returns null for schema failures or invalid JSON", () => {
expect(safeParseWithSchema(schema, { name: 1 })).toBeNull();
expect(safeParseJsonWithSchema(schema, `{"name":1}`)).toBeNull();
expect(safeParseJsonWithSchema(schema, `{`)).toBeNull();
});
});