mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-13 18:21:27 +00:00
141 lines
3.3 KiB
TypeScript
141 lines
3.3 KiB
TypeScript
import { NON_ENV_SECRETREF_MARKER } from "openclaw/plugin-sdk/provider-auth-runtime";
|
|
import { afterEach, describe, expect, it, vi } from "vitest";
|
|
import {
|
|
isXaiToolEnabled,
|
|
resolveFallbackXaiAuth,
|
|
resolveFallbackXaiApiKey,
|
|
resolveXaiToolApiKey,
|
|
} from "./tool-auth-shared.js";
|
|
|
|
describe("xai tool auth helpers", () => {
|
|
afterEach(() => {
|
|
vi.unstubAllEnvs();
|
|
});
|
|
|
|
it("prefers plugin web search keys over legacy grok keys", () => {
|
|
expect(
|
|
resolveFallbackXaiApiKey({
|
|
plugins: {
|
|
entries: {
|
|
xai: {
|
|
config: {
|
|
webSearch: {
|
|
apiKey: "plugin-key", // pragma: allowlist secret
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
tools: {
|
|
web: {
|
|
search: {
|
|
grok: {
|
|
apiKey: "legacy-key", // pragma: allowlist secret
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}),
|
|
).toBe("plugin-key");
|
|
});
|
|
|
|
it("returns source metadata and managed markers for fallback auth", () => {
|
|
expect(
|
|
resolveFallbackXaiAuth({
|
|
plugins: {
|
|
entries: {
|
|
xai: {
|
|
config: {
|
|
webSearch: {
|
|
apiKey: { source: "file", provider: "vault", id: "/xai/tool-key" },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}),
|
|
).toEqual({
|
|
apiKey: NON_ENV_SECRETREF_MARKER,
|
|
source: "plugins.entries.xai.config.webSearch.apiKey",
|
|
});
|
|
|
|
expect(
|
|
resolveFallbackXaiAuth({
|
|
tools: {
|
|
web: {
|
|
search: {
|
|
grok: {
|
|
apiKey: "legacy-key", // pragma: allowlist secret
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}),
|
|
).toEqual({
|
|
apiKey: "legacy-key",
|
|
source: "tools.web.search.grok.apiKey",
|
|
});
|
|
});
|
|
|
|
it("falls back to runtime, then source config, then env for tool auth", () => {
|
|
vi.stubEnv("XAI_API_KEY", "env-key");
|
|
|
|
expect(
|
|
resolveXaiToolApiKey({
|
|
runtimeConfig: {
|
|
plugins: {
|
|
entries: {
|
|
xai: {
|
|
config: {
|
|
webSearch: {
|
|
apiKey: "runtime-key", // pragma: allowlist secret
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
sourceConfig: {
|
|
plugins: {
|
|
entries: {
|
|
xai: {
|
|
config: {
|
|
webSearch: {
|
|
apiKey: "source-key", // pragma: allowlist secret
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}),
|
|
).toBe("runtime-key");
|
|
|
|
expect(
|
|
resolveXaiToolApiKey({
|
|
sourceConfig: {
|
|
plugins: {
|
|
entries: {
|
|
xai: {
|
|
config: {
|
|
webSearch: {
|
|
apiKey: "source-key", // pragma: allowlist secret
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}),
|
|
).toBe("source-key");
|
|
|
|
expect(resolveXaiToolApiKey({})).toBe("env-key");
|
|
});
|
|
|
|
it("honors explicit disabled flags before auth fallback", () => {
|
|
vi.stubEnv("XAI_API_KEY", "env-key");
|
|
expect(isXaiToolEnabled({ enabled: false })).toBe(false);
|
|
expect(isXaiToolEnabled({ enabled: true })).toBe(true);
|
|
});
|
|
});
|