Files
openclaw/src/secrets/target-registry-pattern.test.ts
T
Peter Steinberger edecdbd05e refactor(config): config-surface reduction tranche 3 — product consolidations (review request) (#111527)
* refactor(config): consolidate media model lists

* refactor(config): unify memory configuration

* refactor(config): consolidate TTS ownership

* refactor(config): move typing policy to agents

* refactor(config): retire product-level config surfaces

* refactor(config): share scoped tool policy type

* chore(config): refresh generated baselines

* fix(config): honor agent typing overrides

* fix(config): migrate sibling config consumers

* refactor(infra): keep base64url decoder private

* fix(config): strip invalid legacy TTS values

* chore(config): refresh rebased baseline hash

* fix(doctor): route legacy messages.tts.realtime voice to talk during tts move

* refactor(config): polish final layout names

* refactor(config): freeze retired tuning defaults

* feat(config): add fast mode default symmetry

* refactor(config): key agent entries by id

* docs(config): update final layout reference

* test(config): cover final layout migrations

* chore(config): refresh final layout baselines

* fix(config): align final layout runtime readers

* fix(config): align remaining readers

* fix(config): stabilize final layout migrations

* fix(config): finalize config projection proof

* fix(config): address final layout review

* docs(release): preserve historical config names

* fix(config): complete keyed agent migration

* fix(config): close final migration gaps

* fix(config): finish full-branch review

* fix(config): complete runtime secret detection

* fix(config): close final review findings

* fix(config): finish canonical docs and heartbeat migration

* fix(config): integrate latest main after rebase

* refactor(env): isolate test-only controls

* refactor(env): isolate build and development controls

* refactor(env): collapse process identity indirection

* refactor(env): remove duplicate config and temp aliases

* docs(env): define the operator-facing allowlist

* ci(env): ratchet production variable count

* fix(env): remove stale provider helper import

* fix(env): make ratchet sorting explicit

* test(env): keep test seam in dead-code audit

* test(env): cover ratchet growth and boundary; document surface budgets

* docs(config): document tier-eval consolidations

* docs(config): clarify speech preference ownership

* test(memory): align retired tuning fixtures

* refactor(memory): freeze engine heuristics

* refactor(config): apply tier-eval tranche

* refactor(tts): move persona shaping to providers

* refactor(compaction): move prompt policy to providers

* test(config): align hookified prompt fixtures

* chore(deadcode): classify test-only exports

* chore(github): remove unused spawn helper

* chore(deadcode): classify queue diagnostics

* chore(deadcode): remove unused lane snapshot export

* chore(plugin-sdk): ratchet consolidated surface

* fix(config): integrate latest main after rebase
2026-07-21 20:28:43 -07:00

160 lines
4.7 KiB
TypeScript

/** Tests secret target registry pattern compile/match/expand behavior. */
import { describe, expect, it } from "vitest";
import {
compileTargetRegistryEntry,
expandPathTokens,
matchPathTokens,
materializePathTokens,
} from "./target-registry-pattern.js";
function compilePattern(pathPattern: string, refPathPattern?: string) {
return compileTargetRegistryEntry({
id: "test.pattern",
targetType: "test.pattern",
configFile: "openclaw.json",
pathPattern,
...(refPathPattern ? { refPathPattern } : {}),
secretShape: refPathPattern ? "sibling_ref" : "secret_input",
expectedResolvedValue: "string",
includeInPlan: true,
includeInConfigure: true,
includeInAudit: true,
});
}
describe("target registry pattern helpers", () => {
it("matches wildcard and array tokens with stable capture ordering", () => {
const tokens = compilePattern("agents.list[].memory.search.providers.*.apiKey").pathTokens;
const match = matchPathTokens(
["agents", "list", "2", "memory", "search", "providers", "openai", "apiKey"],
tokens,
);
expect(match).toEqual({
captures: ["2", "openai"],
});
expect(
matchPathTokens(
["agents", "list", "x", "memory", "search", "providers", "openai", "apiKey"],
tokens,
),
).toBeNull();
expect(
matchPathTokens(
["agents", "list", "02", "memory", "search", "providers", "openai", "apiKey"],
tokens,
),
).toBeNull();
expect(
matchPathTokens(
["agents", "list", "+2", "memory", "search", "providers", "openai", "apiKey"],
tokens,
),
).toBeNull();
expect(
matchPathTokens(
["agents", "list", "4294967294", "memory", "search", "providers", "openai", "apiKey"],
tokens,
),
).toBeNull();
});
it("materializes sibling ref paths from wildcard and array captures", () => {
const refTokens = compilePattern(
"agents.list[].memory.search.providers.*.apiKey",
"agents.list[].memory.search.providers.*.apiKeyRef",
).refPathTokens;
expect(refTokens).toBeDefined();
expect(materializePathTokens(refTokens ?? [], ["1", "anthropic"])).toEqual([
"agents",
"list",
"1",
"memory",
"search",
"providers",
"anthropic",
"apiKeyRef",
]);
expect(materializePathTokens(refTokens ?? [], ["anthropic"])).toBeNull();
expect(materializePathTokens(refTokens ?? [], ["01", "anthropic"])).toBeNull();
expect(materializePathTokens(refTokens ?? [], ["+1", "anthropic"])).toBeNull();
expect(materializePathTokens(refTokens ?? [], ["4294967294", "anthropic"])).toBeNull();
});
it("matches two wildcard captures in five-segment header paths", () => {
const tokens = compilePattern("models.providers.*.headers.*").pathTokens;
const match = matchPathTokens(
["models", "providers", "openai", "headers", "x-api-key"],
tokens,
);
expect(match).toEqual({
captures: ["openai", "x-api-key"],
});
});
it("expands wildcard and array patterns over config objects", () => {
const root = {
agents: {
entries: {
main: { memory: { search: { remote: { apiKey: "a" } } } },
ops: { memory: { search: { remote: { apiKey: "b" } } } },
},
},
talk: {
providers: {
openai: { apiKey: "oa" }, // pragma: allowlist secret
anthropic: { apiKey: "an" }, // pragma: allowlist secret
},
},
};
const arrayMatches = expandPathTokens(
root,
compilePattern("agents.entries.*.memory.search.remote.apiKey").pathTokens,
);
expect(
arrayMatches.map((entry) => ({
segments: entry.segments.join("."),
captures: entry.captures,
value: entry.value,
})),
).toEqual([
{
segments: "agents.entries.main.memory.search.remote.apiKey",
captures: ["main"],
value: "a",
},
{
segments: "agents.entries.ops.memory.search.remote.apiKey",
captures: ["ops"],
value: "b",
},
]);
const wildcardMatches = expandPathTokens(
root,
compilePattern("talk.providers.*.apiKey").pathTokens,
);
expect(
wildcardMatches
.map((entry) => ({
segments: entry.segments.join("."),
captures: entry.captures,
value: entry.value,
}))
.toSorted((left, right) => left.segments.localeCompare(right.segments)),
).toEqual([
{
segments: "talk.providers.anthropic.apiKey",
captures: ["anthropic"],
value: "an",
},
{
segments: "talk.providers.openai.apiKey",
captures: ["openai"],
value: "oa",
},
]);
});
});