92 lines
2.7 KiB
TypeScript
92 lines
2.7 KiB
TypeScript
import { afterEach, describe, expect, it } from "vitest";
|
|
import fs from "node:fs/promises";
|
|
import os from "node:os";
|
|
import path from "node:path";
|
|
import { testEnvironment } from "@paperclipai/adapter-claude-local/server";
|
|
|
|
const ORIGINAL_ANTHROPIC = process.env.ANTHROPIC_API_KEY;
|
|
|
|
afterEach(() => {
|
|
if (ORIGINAL_ANTHROPIC === undefined) {
|
|
delete process.env.ANTHROPIC_API_KEY;
|
|
} else {
|
|
process.env.ANTHROPIC_API_KEY = ORIGINAL_ANTHROPIC;
|
|
}
|
|
});
|
|
|
|
describe("claude_local environment diagnostics", () => {
|
|
it("returns a warning (not an error) when ANTHROPIC_API_KEY is set in host environment", async () => {
|
|
process.env.ANTHROPIC_API_KEY = "sk-test-host";
|
|
|
|
const result = await testEnvironment({
|
|
companyId: "company-1",
|
|
adapterType: "claude_local",
|
|
config: {
|
|
command: process.execPath,
|
|
cwd: process.cwd(),
|
|
},
|
|
});
|
|
|
|
expect(result.status).toBe("warn");
|
|
expect(
|
|
result.checks.some(
|
|
(check) =>
|
|
check.code === "claude_anthropic_api_key_overrides_subscription" &&
|
|
check.level === "warn",
|
|
),
|
|
).toBe(true);
|
|
expect(result.checks.some((check) => check.level === "error")).toBe(false);
|
|
});
|
|
|
|
it("returns a warning (not an error) when ANTHROPIC_API_KEY is set in adapter env", async () => {
|
|
delete process.env.ANTHROPIC_API_KEY;
|
|
|
|
const result = await testEnvironment({
|
|
companyId: "company-1",
|
|
adapterType: "claude_local",
|
|
config: {
|
|
command: process.execPath,
|
|
cwd: process.cwd(),
|
|
env: {
|
|
ANTHROPIC_API_KEY: "sk-test-config",
|
|
},
|
|
},
|
|
});
|
|
|
|
expect(result.status).toBe("warn");
|
|
expect(
|
|
result.checks.some(
|
|
(check) =>
|
|
check.code === "claude_anthropic_api_key_overrides_subscription" &&
|
|
check.level === "warn",
|
|
),
|
|
).toBe(true);
|
|
expect(result.checks.some((check) => check.level === "error")).toBe(false);
|
|
});
|
|
|
|
it("creates a missing working directory when cwd is absolute", async () => {
|
|
const cwd = path.join(
|
|
os.tmpdir(),
|
|
`paperclip-claude-local-cwd-${Date.now()}-${Math.random().toString(16).slice(2)}`,
|
|
"workspace",
|
|
);
|
|
|
|
await fs.rm(path.dirname(cwd), { recursive: true, force: true });
|
|
|
|
const result = await testEnvironment({
|
|
companyId: "company-1",
|
|
adapterType: "claude_local",
|
|
config: {
|
|
command: process.execPath,
|
|
cwd,
|
|
},
|
|
});
|
|
|
|
expect(result.checks.some((check) => check.code === "claude_cwd_valid")).toBe(true);
|
|
expect(result.checks.some((check) => check.level === "error")).toBe(false);
|
|
const stats = await fs.stat(cwd);
|
|
expect(stats.isDirectory()).toBe(true);
|
|
await fs.rm(path.dirname(cwd), { recursive: true, force: true });
|
|
});
|
|
});
|