Improve OpenCode auth diagnostics for model lookup failures

This commit is contained in:
Dotta
2026-03-05 07:29:31 -06:00
parent 9454f76c0c
commit 3ae112acff
3 changed files with 127 additions and 14 deletions

View File

@@ -29,4 +29,70 @@ describe("opencode_local environment diagnostics", () => {
expect(stats.isDirectory()).toBe(true);
await fs.rm(path.dirname(cwd), { recursive: true, force: true });
});
it("treats an empty OPENAI_API_KEY override as missing", async () => {
const cwd = await fs.mkdtemp(path.join(os.tmpdir(), "paperclip-opencode-env-empty-key-"));
const originalOpenAiKey = process.env.OPENAI_API_KEY;
process.env.OPENAI_API_KEY = "sk-host-value";
try {
const result = await testEnvironment({
companyId: "company-1",
adapterType: "opencode_local",
config: {
command: process.execPath,
cwd,
env: {
OPENAI_API_KEY: "",
},
},
});
const missingCheck = result.checks.find((check) => check.code === "opencode_openai_api_key_missing");
expect(missingCheck).toBeTruthy();
expect(missingCheck?.hint).toContain("empty");
} finally {
if (originalOpenAiKey === undefined) {
delete process.env.OPENAI_API_KEY;
} else {
process.env.OPENAI_API_KEY = originalOpenAiKey;
}
await fs.rm(cwd, { recursive: true, force: true });
}
});
it("classifies ProviderModelNotFoundError probe output as auth-required warning", async () => {
const cwd = await fs.mkdtemp(path.join(os.tmpdir(), "paperclip-opencode-env-probe-cwd-"));
const binDir = await fs.mkdtemp(path.join(os.tmpdir(), "paperclip-opencode-env-probe-bin-"));
const fakeOpencode = path.join(binDir, "opencode");
const script = [
"#!/bin/sh",
"echo 'ProviderModelNotFoundError: ProviderModelNotFoundError' 1>&2",
"echo 'data: { providerID: \"openai\", modelID: \"gpt-5.3-codex\", suggestions: [] }' 1>&2",
"exit 1",
"",
].join("\n");
try {
await fs.writeFile(fakeOpencode, script, "utf8");
await fs.chmod(fakeOpencode, 0o755);
const result = await testEnvironment({
companyId: "company-1",
adapterType: "opencode_local",
config: {
command: fakeOpencode,
cwd,
},
});
const authCheck = result.checks.find((check) => check.code === "opencode_hello_probe_auth_required");
expect(authCheck).toBeTruthy();
expect(authCheck?.level).toBe("warn");
expect(result.status).toBe("warn");
} finally {
await fs.rm(cwd, { recursive: true, force: true });
await fs.rm(binDir, { recursive: true, force: true });
}
});
});