mirror of
https://github.com/anthropics/claude-code-action.git
synced 2026-08-03 09:48:31 +08:00
* test: cover prepareContext validation error branches create-prompt.test.ts exercised only happy paths; the ~20 validation guards in prepareContext (missing PR_NUMBER, unsupported event type, unsupported issue action, missing claude branch, etc.) had no coverage. Adds a "prepareContext validation errors" block asserting the thrown messages for the reachable guards, using the existing createMockContext helper. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> * test: cover comments/common link and body builders `src/github/operations/comments/common.ts` had no direct test coverage, though its exports are live code used by create-initial.ts and update-with-branch.ts. This adds unit tests for all four exports: SPINNER_HTML, createJobRunLink, createBranchLink, and createCommentBody. Assertions are built from the imported GITHUB_SERVER_URL so they hold on GHES as well as github.com. Pure test additions — no production changes. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
75 lines
2.7 KiB
TypeScript
75 lines
2.7 KiB
TypeScript
import { describe, test, expect } from "bun:test";
|
|
import {
|
|
SPINNER_HTML,
|
|
createJobRunLink,
|
|
createBranchLink,
|
|
createCommentBody,
|
|
} from "../src/github/operations/comments/common";
|
|
import { GITHUB_SERVER_URL } from "../src/github/api/config";
|
|
|
|
describe("comments/common", () => {
|
|
describe("createJobRunLink", () => {
|
|
test("builds a markdown link to the workflow run", () => {
|
|
const result = createJobRunLink("anthropics", "claude-code-action", "42");
|
|
expect(result).toBe(
|
|
`[View job run](${GITHUB_SERVER_URL}/anthropics/claude-code-action/actions/runs/42)`,
|
|
);
|
|
});
|
|
|
|
test("honors GITHUB_SERVER_URL (GHES) rather than hardcoding github.com", () => {
|
|
// The link is built from the configured server URL, so it must point at
|
|
// whatever GITHUB_SERVER_URL resolves to (github.com by default, a GHES
|
|
// host in enterprise setups).
|
|
expect(createJobRunLink("o", "r", "1")).toContain(GITHUB_SERVER_URL);
|
|
});
|
|
});
|
|
|
|
describe("createBranchLink", () => {
|
|
test("builds a leading-newline markdown link to the branch tree", () => {
|
|
const result = createBranchLink(
|
|
"anthropics",
|
|
"claude-code-action",
|
|
"feature/x",
|
|
);
|
|
expect(result).toBe(
|
|
`\n[View branch](${GITHUB_SERVER_URL}/anthropics/claude-code-action/tree/feature/x)`,
|
|
);
|
|
});
|
|
|
|
test("prefixes the link with a newline so it renders on its own line", () => {
|
|
expect(createBranchLink("o", "r", "main").startsWith("\n")).toBe(true);
|
|
});
|
|
});
|
|
|
|
describe("createCommentBody", () => {
|
|
test("includes the spinner, the working message, and the job run link", () => {
|
|
const jobRunLink = createJobRunLink("o", "r", "7");
|
|
const body = createCommentBody(jobRunLink);
|
|
|
|
expect(body).toContain(SPINNER_HTML);
|
|
expect(body).toContain("Claude Code is working…");
|
|
expect(body).toContain(jobRunLink);
|
|
});
|
|
|
|
test("omits the branch link when none is provided (defaults to empty)", () => {
|
|
const body = createCommentBody(createJobRunLink("o", "r", "7"));
|
|
expect(body).not.toContain("View branch");
|
|
// No trailing branch content: body ends with the job run link.
|
|
expect(body.endsWith(")")).toBe(true);
|
|
});
|
|
|
|
test("appends the branch link when provided", () => {
|
|
const jobRunLink = createJobRunLink("o", "r", "7");
|
|
const branchLink = createBranchLink("o", "r", "feature/x");
|
|
const body = createCommentBody(jobRunLink, branchLink);
|
|
|
|
expect(body).toContain(jobRunLink);
|
|
expect(body).toContain(branchLink);
|
|
// The branch link (with its leading newline) comes after the job run link.
|
|
expect(body.indexOf(branchLink)).toBeGreaterThan(
|
|
body.indexOf(jobRunLink),
|
|
);
|
|
});
|
|
});
|
|
});
|