mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-01 22:30:21 +00:00
* Secrets: harden exec SecretRef validation and reload LKG coverage * Tests: harden exec fast-exit stdin regression case * Tests: align lifecycle daemon test formatting with oxfmt 0.36
25 lines
407 B
TypeScript
25 lines
407 B
TypeScript
export const VALID_EXEC_SECRET_REF_IDS = [
|
|
"vault/openai/api-key",
|
|
"vault:secret/mykey",
|
|
"providers/openai/apiKey",
|
|
"a..b/c",
|
|
"a/.../b",
|
|
"a/.well-known/key",
|
|
`a/${"b".repeat(254)}`,
|
|
] as const;
|
|
|
|
export const INVALID_EXEC_SECRET_REF_IDS = [
|
|
"",
|
|
" ",
|
|
"a/../b",
|
|
"a/./b",
|
|
"../b",
|
|
"./b",
|
|
"a/..",
|
|
"a/.",
|
|
"/absolute/path",
|
|
"bad id",
|
|
"a\\b",
|
|
`a${"b".repeat(256)}`,
|
|
] as const;
|