mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-16 19:51:11 +00:00
134 lines
5.1 KiB
TypeScript
134 lines
5.1 KiB
TypeScript
import { afterEach, beforeAll, describe, expect, it, vi } from "vitest";
|
|
import type { AuthProfileStore } from "../agents/auth-profiles.js";
|
|
import type { OpenClawConfig } from "../config/config.js";
|
|
import { createEmptyPluginRegistry } from "../plugins/registry.js";
|
|
import { setActivePluginRegistry } from "../plugins/runtime.js";
|
|
|
|
vi.mock("../channels/plugins/bootstrap-registry.js", async () => {
|
|
const nextcloudTalkSecrets =
|
|
await import("../../extensions/nextcloud-talk/src/secret-contract.ts");
|
|
return {
|
|
getBootstrapChannelPlugin: (id: string) =>
|
|
id === "nextcloud-talk"
|
|
? {
|
|
secrets: {
|
|
collectRuntimeConfigAssignments: nextcloudTalkSecrets.collectRuntimeConfigAssignments,
|
|
},
|
|
}
|
|
: undefined,
|
|
getBootstrapChannelSecrets: (id: string) =>
|
|
id === "nextcloud-talk"
|
|
? {
|
|
collectRuntimeConfigAssignments: nextcloudTalkSecrets.collectRuntimeConfigAssignments,
|
|
}
|
|
: undefined,
|
|
};
|
|
});
|
|
|
|
function asConfig(value: unknown): OpenClawConfig {
|
|
return value as OpenClawConfig;
|
|
}
|
|
|
|
let clearConfigCache: typeof import("../config/config.js").clearConfigCache;
|
|
let clearRuntimeConfigSnapshot: typeof import("../config/config.js").clearRuntimeConfigSnapshot;
|
|
let clearSecretsRuntimeSnapshot: typeof import("./runtime.js").clearSecretsRuntimeSnapshot;
|
|
let prepareSecretsRuntimeSnapshot: typeof import("./runtime.js").prepareSecretsRuntimeSnapshot;
|
|
|
|
function loadAuthStoreWithProfiles(profiles: AuthProfileStore["profiles"]): AuthProfileStore {
|
|
return {
|
|
version: 1,
|
|
profiles,
|
|
};
|
|
}
|
|
|
|
describe("secrets runtime snapshot nextcloud talk file precedence", () => {
|
|
beforeAll(async () => {
|
|
({ clearConfigCache, clearRuntimeConfigSnapshot } = await import("../config/config.js"));
|
|
({ clearSecretsRuntimeSnapshot, prepareSecretsRuntimeSnapshot } = await import("./runtime.js"));
|
|
});
|
|
|
|
afterEach(() => {
|
|
setActivePluginRegistry(createEmptyPluginRegistry());
|
|
clearSecretsRuntimeSnapshot();
|
|
clearRuntimeConfigSnapshot();
|
|
clearConfigCache();
|
|
});
|
|
|
|
it("treats top-level Nextcloud Talk botSecret and apiPassword refs as active when file paths are configured", async () => {
|
|
const snapshot = await prepareSecretsRuntimeSnapshot({
|
|
config: asConfig({
|
|
channels: {
|
|
"nextcloud-talk": {
|
|
botSecret: { source: "env", provider: "default", id: "NEXTCLOUD_BOT_SECRET" },
|
|
botSecretFile: "/tmp/missing-nextcloud-bot-secret-file",
|
|
apiUser: "bot-user",
|
|
apiPassword: { source: "env", provider: "default", id: "NEXTCLOUD_API_PASSWORD" },
|
|
apiPasswordFile: "/tmp/missing-nextcloud-api-password-file",
|
|
},
|
|
},
|
|
}),
|
|
env: {
|
|
NEXTCLOUD_BOT_SECRET: "resolved-nextcloud-bot-secret",
|
|
NEXTCLOUD_API_PASSWORD: "resolved-nextcloud-api-password",
|
|
},
|
|
agentDirs: ["/tmp/openclaw-agent-main"],
|
|
loadAuthStore: () => loadAuthStoreWithProfiles({}),
|
|
});
|
|
|
|
expect(snapshot.config.channels?.["nextcloud-talk"]?.botSecret).toBe(
|
|
"resolved-nextcloud-bot-secret",
|
|
);
|
|
expect(snapshot.config.channels?.["nextcloud-talk"]?.apiPassword).toBe(
|
|
"resolved-nextcloud-api-password",
|
|
);
|
|
expect(snapshot.warnings.map((warning) => warning.path)).not.toContain(
|
|
"channels.nextcloud-talk.botSecret",
|
|
);
|
|
expect(snapshot.warnings.map((warning) => warning.path)).not.toContain(
|
|
"channels.nextcloud-talk.apiPassword",
|
|
);
|
|
});
|
|
|
|
it("treats account-level Nextcloud Talk botSecret and apiPassword refs as active when file paths are configured", async () => {
|
|
const snapshot = await prepareSecretsRuntimeSnapshot({
|
|
config: asConfig({
|
|
channels: {
|
|
"nextcloud-talk": {
|
|
accounts: {
|
|
work: {
|
|
botSecret: { source: "env", provider: "default", id: "NEXTCLOUD_WORK_BOT_SECRET" },
|
|
botSecretFile: "/tmp/missing-nextcloud-work-bot-secret-file",
|
|
apiPassword: {
|
|
source: "env",
|
|
provider: "default",
|
|
id: "NEXTCLOUD_WORK_API_PASSWORD",
|
|
},
|
|
apiPasswordFile: "/tmp/missing-nextcloud-work-api-password-file",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}),
|
|
env: {
|
|
NEXTCLOUD_WORK_BOT_SECRET: "resolved-nextcloud-work-bot-secret",
|
|
NEXTCLOUD_WORK_API_PASSWORD: "resolved-nextcloud-work-api-password",
|
|
},
|
|
agentDirs: ["/tmp/openclaw-agent-main"],
|
|
loadAuthStore: () => loadAuthStoreWithProfiles({}),
|
|
});
|
|
|
|
expect(snapshot.config.channels?.["nextcloud-talk"]?.accounts?.work?.botSecret).toBe(
|
|
"resolved-nextcloud-work-bot-secret",
|
|
);
|
|
expect(snapshot.config.channels?.["nextcloud-talk"]?.accounts?.work?.apiPassword).toBe(
|
|
"resolved-nextcloud-work-api-password",
|
|
);
|
|
expect(snapshot.warnings.map((warning) => warning.path)).not.toContain(
|
|
"channels.nextcloud-talk.accounts.work.botSecret",
|
|
);
|
|
expect(snapshot.warnings.map((warning) => warning.path)).not.toContain(
|
|
"channels.nextcloud-talk.accounts.work.apiPassword",
|
|
);
|
|
});
|
|
});
|