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
106 lines
3.3 KiB
TypeScript
106 lines
3.3 KiB
TypeScript
import assert from 'node:assert/strict';
|
|
import { describe, it } from 'node:test';
|
|
import {
|
|
planPluginSyncCredential,
|
|
pluginSyncSecretStoreKeys,
|
|
syncConfigurationSchemaWithoutSecretRequirements,
|
|
} from './pluginSyncCredential.ts';
|
|
|
|
describe('planPluginSyncCredential', () => {
|
|
it('extracts all secret keys and strips them from configuration', () => {
|
|
const plan = planPluginSyncCredential({
|
|
endpoint: 'https://dav.example',
|
|
username: 'alice',
|
|
password: 's3cret',
|
|
token: 'also-secret',
|
|
});
|
|
assert.equal(plan.plaintextSecret, 's3cret');
|
|
assert.equal(plan.extractedFrom, 'password');
|
|
assert.equal(plan.secrets.length, 2);
|
|
assert.deepEqual(
|
|
plan.secrets.map((entry) => ({ key: entry.key, value: entry.value })),
|
|
[
|
|
{ key: 'password', value: 's3cret' },
|
|
{ key: 'token', value: 'also-secret' },
|
|
],
|
|
);
|
|
assert.deepEqual(plan.configuration, {
|
|
endpoint: 'https://dav.example',
|
|
username: 'alice',
|
|
});
|
|
});
|
|
|
|
it('extracts writeOnly schema fields that are not well-known names', () => {
|
|
const plan = planPluginSyncCredential(
|
|
{
|
|
endpoint: 'https://dav.example',
|
|
appPassword: 'hidden',
|
|
},
|
|
{
|
|
configurationSchema: {
|
|
type: 'object',
|
|
additionalProperties: false,
|
|
properties: {
|
|
endpoint: { type: 'string' },
|
|
appPassword: { type: 'string', writeOnly: true },
|
|
},
|
|
required: ['endpoint', 'appPassword'],
|
|
},
|
|
},
|
|
);
|
|
assert.equal(plan.secrets.length, 1);
|
|
assert.equal(plan.secrets[0]?.key, 'appPassword');
|
|
assert.equal(plan.secrets[0]?.secretKey, 'sync-credential:appPassword');
|
|
assert.deepEqual(plan.configuration, { endpoint: 'https://dav.example' });
|
|
});
|
|
|
|
it('passes through non-object configs unchanged', () => {
|
|
assert.deepEqual(planPluginSyncCredential(null), {
|
|
configuration: null,
|
|
secrets: [],
|
|
secretKey: 'sync-credential',
|
|
});
|
|
assert.deepEqual(planPluginSyncCredential('x'), {
|
|
configuration: 'x',
|
|
secrets: [],
|
|
secretKey: 'sync-credential',
|
|
});
|
|
});
|
|
|
|
it('leaves configs without secrets alone', () => {
|
|
const configuration = { endpoint: 'https://dav.example', username: 'alice' };
|
|
assert.deepEqual(planPluginSyncCredential(configuration), {
|
|
configuration,
|
|
secrets: [],
|
|
secretKey: 'sync-credential',
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('syncConfigurationSchemaWithoutSecretRequirements', () => {
|
|
it('drops known secret keys and writeOnly fields from required', () => {
|
|
const schema = {
|
|
type: 'object',
|
|
additionalProperties: false,
|
|
properties: {
|
|
endpoint: { type: 'string' },
|
|
password: { type: 'string' },
|
|
appPassword: { type: 'string', writeOnly: true },
|
|
},
|
|
required: ['endpoint', 'password', 'appPassword'],
|
|
};
|
|
assert.deepEqual(syncConfigurationSchemaWithoutSecretRequirements(schema), {
|
|
...schema,
|
|
required: ['endpoint'],
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('pluginSyncSecretStoreKeys', () => {
|
|
it('includes primary and secondary credential keys', () => {
|
|
assert.ok(pluginSyncSecretStoreKeys().includes('sync-credential'));
|
|
assert.ok(pluginSyncSecretStoreKeys().includes('sync-credential:token'));
|
|
assert.ok(pluginSyncSecretStoreKeys(['appPassword']).includes('sync-credential:appPassword'));
|
|
});
|
|
});
|