Some checks failed
build-packages / resolve bundled mosh-client (push) Has been cancelled
build-packages / resolve bundled et-client (push) Has been cancelled
build-packages / build-macos (push) Has been cancelled
build-packages / build-windows (push) Has been cancelled
build-packages / build-linux-x64 (push) Has been cancelled
build-packages / build-linux-arm64 (push) Has been cancelled
build-packages / release (push) Has been cancelled
build-packages / update Nix release metadata (push) Has been cancelled
build-packages / bump homebrew tap (push) Has been cancelled
test / lint-and-test (push) Has been cancelled
AI automation / Route event (push) Has been cancelled
AI automation / Hand reopened issue to maintainers (push) Has been cancelled
AI automation / Clean source issue state (push) Has been cancelled
AI automation / Reconcile handoffs (push) Has been cancelled
AI automation / Classify issue (push) Has been cancelled
AI automation / Claude Code smoke (push) Has been cancelled
AI automation / Review issue follow-up (push) Has been cancelled
AI automation / Publish issue follow-up (push) Has been cancelled
AI automation / Implement with Claude Code (push) Has been cancelled
AI automation / Publish implement PR (push) Has been cancelled
AI automation / Continue queued issue comments (push) Has been cancelled
AI automation / Codex review loop (push) Has been cancelled
AI automation / Publish Codex fix (push) Has been cancelled
AI automation / Clear Codex dispatch marker (push) Has been cancelled
AI automation / Own PR re-request Codex (push) Has been cancelled
AI automation / External PR re-request Codex (push) Has been cancelled
AI automation / Poll Codex reaction / retry (push) Has been cancelled
build-et-binaries / build-linux-x64 (push) Has been cancelled
build-et-binaries / build-linux-arm64 (push) Has been cancelled
build-et-binaries / build-macos-universal (push) Has been cancelled
build-et-binaries / build-windows-x64 (push) Has been cancelled
build-et-binaries / release (push) Has been cancelled
69 lines
2.3 KiB
JavaScript
69 lines
2.3 KiB
JavaScript
"use strict";
|
|
|
|
const assert = require("node:assert/strict");
|
|
const test = require("node:test");
|
|
|
|
const { PluginCredentialCatalog } = require("./credentialCatalog.cjs");
|
|
|
|
function encrypted(value) {
|
|
return `enc:v1:${Buffer.from(`cipher:${value}`).toString("base64")}`;
|
|
}
|
|
|
|
test("Vault credential catalog keeps only encrypted opaque references and decrypts on lease consumption", async () => {
|
|
const catalog = new PluginCredentialCatalog({
|
|
safeStorage: {
|
|
isEncryptionAvailable: () => true,
|
|
getSelectedStorageBackend: () => "keychain",
|
|
decryptString: (value) => value.toString().replace(/^cipher:/u, ""),
|
|
},
|
|
});
|
|
assert.equal(catalog.update([{
|
|
id: "credential-reference-0001",
|
|
ciphertext: encrypted("correct horse battery staple"),
|
|
}]), 1);
|
|
await catalog.assertReference({ kind: "credential", id: "credential-reference-0001" });
|
|
assert.equal(
|
|
await catalog.resolve({ kind: "credential", id: "credential-reference-0001" }),
|
|
"correct horse battery staple",
|
|
);
|
|
await assert.rejects(
|
|
catalog.assertReference({ kind: "credential", id: "credential-reference-missing" }),
|
|
/not found/i,
|
|
);
|
|
assert.throws(() => catalog.update([{
|
|
id: "credential-reference-0002",
|
|
ciphertext: "plaintext-secret",
|
|
}]), /OS-backed encryption/i);
|
|
});
|
|
|
|
test("Vault credential catalog fails closed when secure storage is unavailable", async () => {
|
|
let encryptionAvailable = true;
|
|
let backend = "keychain";
|
|
const catalog = new PluginCredentialCatalog({
|
|
safeStorage: {
|
|
isEncryptionAvailable: () => encryptionAvailable,
|
|
getSelectedStorageBackend: () => backend,
|
|
decryptString: (value) => value.toString().replace(/^cipher:/u, ""),
|
|
},
|
|
});
|
|
const entry = {
|
|
id: "credential-reference-0001",
|
|
ciphertext: encrypted("secret"),
|
|
};
|
|
assert.equal(catalog.update([entry]), 1);
|
|
backend = "basic_text";
|
|
assert.throws(() => catalog.update([entry]), /unavailable/i);
|
|
await assert.rejects(
|
|
catalog.assertReference({ kind: "credential", id: "credential-reference-0001" }),
|
|
/not found/i,
|
|
);
|
|
|
|
backend = "keychain";
|
|
encryptionAvailable = false;
|
|
assert.throws(() => catalog.update([entry]), /unavailable/i);
|
|
await assert.rejects(
|
|
catalog.resolve({ kind: "credential", id: "credential-reference-0001" }),
|
|
/unavailable|not found/i,
|
|
);
|
|
});
|