File size: 5,123 Bytes
fc93158 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 | import { describe, expect, it, test } from "vitest";
import {
applyOpenClawManifestInstallCommonFields,
getFrontmatterString,
normalizeStringList,
parseFrontmatterBool,
parseOpenClawManifestInstallBase,
resolveOpenClawManifestBlock,
resolveOpenClawManifestInstall,
resolveOpenClawManifestOs,
resolveOpenClawManifestRequires,
} from "./frontmatter.js";
describe("shared/frontmatter", () => {
test("normalizeStringList handles strings, arrays, and non-list values", () => {
expect(normalizeStringList("a, b,,c")).toEqual(["a", "b", "c"]);
expect(normalizeStringList([" a ", "", "b", 42])).toEqual(["a", "b", "42"]);
expect(normalizeStringList(null)).toEqual([]);
});
test("getFrontmatterString extracts strings only", () => {
expect(getFrontmatterString({ a: "b" }, "a")).toBe("b");
expect(getFrontmatterString({ a: 1 }, "a")).toBeUndefined();
});
test("parseFrontmatterBool respects explicit values and fallback", () => {
expect(parseFrontmatterBool("true", false)).toBe(true);
expect(parseFrontmatterBool("false", true)).toBe(false);
expect(parseFrontmatterBool(undefined, true)).toBe(true);
expect(parseFrontmatterBool("maybe", false)).toBe(false);
});
test("resolveOpenClawManifestBlock reads current manifest keys and custom metadata fields", () => {
expect(
resolveOpenClawManifestBlock({
frontmatter: {
metadata: "{ openclaw: { foo: 1, bar: 'baz' } }",
},
}),
).toEqual({ foo: 1, bar: "baz" });
expect(
resolveOpenClawManifestBlock({
frontmatter: {
pluginMeta: "{ openclaw: { foo: 2 } }",
},
key: "pluginMeta",
}),
).toEqual({ foo: 2 });
});
test("resolveOpenClawManifestBlock returns undefined for invalid input", () => {
expect(resolveOpenClawManifestBlock({ frontmatter: {} })).toBeUndefined();
expect(
resolveOpenClawManifestBlock({ frontmatter: { metadata: "not-json5" } }),
).toBeUndefined();
expect(resolveOpenClawManifestBlock({ frontmatter: { metadata: "123" } })).toBeUndefined();
expect(resolveOpenClawManifestBlock({ frontmatter: { metadata: "[]" } })).toBeUndefined();
expect(
resolveOpenClawManifestBlock({ frontmatter: { metadata: "{ nope: { a: 1 } }" } }),
).toBeUndefined();
});
it("normalizes manifest requirement and os lists", () => {
expect(
resolveOpenClawManifestRequires({
requires: {
bins: "bun, node",
anyBins: [" ffmpeg ", ""],
env: ["OPENCLAW_TOKEN", " OPENCLAW_URL "],
config: null,
},
}),
).toEqual({
bins: ["bun", "node"],
anyBins: ["ffmpeg"],
env: ["OPENCLAW_TOKEN", "OPENCLAW_URL"],
config: [],
});
expect(resolveOpenClawManifestRequires({})).toBeUndefined();
expect(resolveOpenClawManifestOs({ os: [" darwin ", "linux", ""] })).toEqual([
"darwin",
"linux",
]);
});
it("parses and applies install common fields", () => {
const parsed = parseOpenClawManifestInstallBase(
{
type: " Brew ",
id: "brew.git",
label: "Git",
bins: [" git ", "git"],
},
["brew", "npm"],
);
expect(parsed).toEqual({
raw: {
type: " Brew ",
id: "brew.git",
label: "Git",
bins: [" git ", "git"],
},
kind: "brew",
id: "brew.git",
label: "Git",
bins: ["git", "git"],
});
expect(parseOpenClawManifestInstallBase({ kind: "bad" }, ["brew"])).toBeUndefined();
expect(
applyOpenClawManifestInstallCommonFields<{
extra: boolean;
id?: string;
label?: string;
bins?: string[];
}>({ extra: true }, parsed!),
).toEqual({
extra: true,
id: "brew.git",
label: "Git",
bins: ["git", "git"],
});
});
it("prefers explicit kind, ignores invalid common fields, and leaves missing ones untouched", () => {
const parsed = parseOpenClawManifestInstallBase(
{
kind: " npm ",
type: "brew",
id: 42,
label: null,
bins: [" ", ""],
},
["brew", "npm"],
);
expect(parsed).toEqual({
raw: {
kind: " npm ",
type: "brew",
id: 42,
label: null,
bins: [" ", ""],
},
kind: "npm",
});
expect(
applyOpenClawManifestInstallCommonFields(
{ id: "keep", label: "Keep", bins: ["bun"] },
parsed!,
),
).toEqual({
id: "keep",
label: "Keep",
bins: ["bun"],
});
});
it("maps install entries through the parser and filters rejected specs", () => {
expect(
resolveOpenClawManifestInstall(
{
install: [{ id: "keep" }, { id: "drop" }, "bad"],
},
(entry) => {
if (
typeof entry === "object" &&
entry !== null &&
(entry as { id?: string }).id === "keep"
) {
return { id: "keep" };
}
return undefined;
},
),
).toEqual([{ id: "keep" }]);
});
});
|