File size: 2,839 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 | import { describe, expect, it } from "vitest";
import type { OpenClawConfig } from "../config/config.js";
import { collectCommandSecretAssignmentsFromSnapshot } from "./command-config.js";
describe("collectCommandSecretAssignmentsFromSnapshot", () => {
it("returns assignments from the active runtime snapshot for configured refs", () => {
const sourceConfig = {
talk: {
apiKey: { source: "env", provider: "default", id: "TALK_API_KEY" },
},
} as unknown as OpenClawConfig;
const resolvedConfig = {
talk: {
apiKey: "talk-key", // pragma: allowlist secret
},
} as unknown as OpenClawConfig;
const result = collectCommandSecretAssignmentsFromSnapshot({
sourceConfig,
resolvedConfig,
commandName: "memory status",
targetIds: new Set(["talk.apiKey"]),
});
expect(result.assignments).toEqual([
{
path: "talk.apiKey",
pathSegments: ["talk", "apiKey"],
value: "talk-key",
},
]);
});
it("throws when configured refs are unresolved in the snapshot", () => {
const sourceConfig = {
talk: {
apiKey: { source: "env", provider: "default", id: "TALK_API_KEY" },
},
} as unknown as OpenClawConfig;
const resolvedConfig = {
talk: {},
} as unknown as OpenClawConfig;
expect(() =>
collectCommandSecretAssignmentsFromSnapshot({
sourceConfig,
resolvedConfig,
commandName: "memory search",
targetIds: new Set(["talk.apiKey"]),
}),
).toThrow(/memory search: talk\.apiKey is unresolved in the active runtime snapshot/);
});
it("skips unresolved refs that are marked inactive by runtime warnings", () => {
const sourceConfig = {
agents: {
defaults: {
memorySearch: {
remote: {
apiKey: { source: "env", provider: "default", id: "DEFAULT_MEMORY_KEY" },
},
},
},
},
} as unknown as OpenClawConfig;
const resolvedConfig = {
agents: {
defaults: {
memorySearch: {
remote: {
apiKey: { source: "env", provider: "default", id: "DEFAULT_MEMORY_KEY" },
},
},
},
},
} as unknown as OpenClawConfig;
const result = collectCommandSecretAssignmentsFromSnapshot({
sourceConfig,
resolvedConfig,
commandName: "memory search",
targetIds: new Set(["agents.defaults.memorySearch.remote.apiKey"]),
inactiveRefPaths: new Set(["agents.defaults.memorySearch.remote.apiKey"]),
});
expect(result.assignments).toEqual([]);
expect(result.diagnostics).toEqual([
"agents.defaults.memorySearch.remote.apiKey: secret ref is configured on an inactive surface; skipping command-time assignment.",
]);
});
});
|