feat: add issue create and comment (task 0004)
All checks were successful
CI / test (pull_request) Successful in 24s
CI / test (push) Successful in 28s

Introduce the first mutations, along with the shared machinery the later
issue and PR mutation slices reuse.

- `issue create` with --title/--body/--body-file/--assignee/--label/
  --milestone/--fields, emitting `issue: { number, title, state, url }`
- `issue comment <n>`, echoing the created comment from the POST response
  with the body cleaned and truncated at 800 chars
- body-source resolution (--body vs --body-file), label and milestone
  name->ID lookup, repeatable flags, and the `joined`/`selectExtraFields`
  field extractors

Label lookup pages until exhausted, since a repo with more labels than one
page would otherwise fail to resolve a valid name. The end-to-end tier seeds
a mixed-case label and milestone and passes both in a different case, so the
case-insensitive lookup is verified against live Gitea rather than only
against fixtures.
This commit was merged in pull request #3.
This commit is contained in:
2026-07-11 20:39:01 -04:00
parent 5e66b4d746
commit f82414a933
13 changed files with 1328 additions and 41 deletions

View File

@@ -22,6 +22,14 @@ export interface E2EInstance {
openTitles: string[];
/** Title of the single seeded closed issue. */
closedTitle: string;
/**
* A label seeded in mixed case. The mutation tier passes it in a *different*
* case, so the case-insensitive name→id lookup is exercised against live Gitea
* rather than only against fixtures.
*/
labelName: string;
/** A milestone seeded in mixed case, for the same reason as {@link labelName}. */
milestoneTitle: string;
}
const USERNAME = "e2e-admin";
@@ -188,7 +196,55 @@ export async function provisionInstance(baseUrl: string): Promise<E2EInstance> {
state: "closed",
});
return { baseUrl: normalized, owner: USERNAME, repo, token, openTitles, closedTitle };
const labelName = "E2E-Bug";
await apiRequest(normalized, "POST", `/repos/${USERNAME}/${repo}/labels`, token, {
name: labelName,
color: "#ff0000",
});
const milestoneTitle = "E2E-Milestone";
await apiRequest(normalized, "POST", `/repos/${USERNAME}/${repo}/milestones`, token, {
title: milestoneTitle,
});
return {
baseUrl: normalized,
owner: USERNAME,
repo,
token,
openTitles,
closedTitle,
labelName,
milestoneTitle,
};
}
/** Fetch a single issue as Gitea returns it, for verifying what a mutation wrote. */
export async function fetchIssue(
instance: E2EInstance,
number: number,
): Promise<Record<string, unknown>> {
const res = await apiRequest(
instance.baseUrl,
"GET",
`/repos/${instance.owner}/${instance.repo}/issues/${number}`,
instance.token,
);
return (await res.json()) as Record<string, unknown>;
}
/** Fetch an issue's comments as Gitea returns them. */
export async function fetchComments(
instance: E2EInstance,
number: number,
): Promise<Record<string, unknown>[]> {
const res = await apiRequest(
instance.baseUrl,
"GET",
`/repos/${instance.owner}/${instance.repo}/issues/${number}/comments`,
instance.token,
);
return (await res.json()) as Record<string, unknown>[];
}
/**