All checks were successful
CI / test (pull_request) Successful in 42s
Add the two PR commands that touch content and the local worktree:
- `pr diff <n>` fetches the raw diff from the `.diff` endpoint (forcing a
text response, which the JSON-defaulting client would otherwise discard),
truncates at 4000 chars with separate `truncated`/`original_length` fields
and a prepended `--full` suggestion; `--full` returns the raw diff.
- `pr checkout <n>` reads the PR head branch from the PR fetch and fetches
`refs/pull/{n}/head` from origin (uniform for same-repo and fork PRs, ADR
0011), three-cased on local branch state so re-checkout is idempotent and
divergent local commits fail with `GIT_ERROR` rather than being discarded.
Introduces the `GIT_ERROR` mapping (`runGit`) carrying git's first stderr
line plus a remediation help line, and widens the PR 404 classifier so a
`.diff` path still resolves to `PR_NOT_FOUND`.
135 lines
4.0 KiB
TypeScript
135 lines
4.0 KiB
TypeScript
import { readFileSync } from "node:fs";
|
|
import { createServer, type IncomingMessage, type Server } from "node:http";
|
|
|
|
export interface FixtureRoute {
|
|
method: string;
|
|
/** Exact pathname to match, e.g. "/api/v1/repos/o/r/issues". */
|
|
path: string;
|
|
/** Query params that must all be present with these exact values. */
|
|
query?: Record<string, string>;
|
|
status?: number;
|
|
headers?: Record<string, string>;
|
|
/** Inline JSON body; mutually exclusive with `fixture`. */
|
|
body?: unknown;
|
|
/** Name of a JSON file in test/fixtures to serve as the body. */
|
|
fixture?: string;
|
|
/**
|
|
* A verbatim, non-JSON response body (e.g. a raw `.diff`). Served as-is with a
|
|
* `text/plain` content type, bypassing the JSON encoding the other fields get.
|
|
*/
|
|
raw?: string;
|
|
}
|
|
|
|
export interface RecordedRequest {
|
|
method: string;
|
|
path: string;
|
|
query: Record<string, string>;
|
|
headers: Record<string, string>;
|
|
/** Parsed JSON request body; undefined when the request carried none. */
|
|
body?: unknown;
|
|
}
|
|
|
|
export interface FixtureServer {
|
|
url: string;
|
|
requests: RecordedRequest[];
|
|
close: () => Promise<void>;
|
|
}
|
|
|
|
function loadBody(route: FixtureRoute): unknown {
|
|
if (route.fixture !== undefined) {
|
|
return JSON.parse(
|
|
readFileSync(new URL(`./fixtures/${route.fixture}`, import.meta.url), "utf8"),
|
|
);
|
|
}
|
|
return route.body ?? {};
|
|
}
|
|
|
|
function matches(route: FixtureRoute, request: RecordedRequest): boolean {
|
|
if (route.method !== request.method || route.path !== request.path) {
|
|
return false;
|
|
}
|
|
for (const [key, value] of Object.entries(route.query ?? {})) {
|
|
if (request.query[key] !== value) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
/** Collect the request stream, parsing it as JSON when it carried a payload. */
|
|
async function readRequestBody(req: IncomingMessage): Promise<unknown> {
|
|
const chunks: Buffer[] = [];
|
|
for await (const chunk of req) {
|
|
chunks.push(chunk as Buffer);
|
|
}
|
|
if (chunks.length === 0) {
|
|
return undefined;
|
|
}
|
|
const raw = Buffer.concat(chunks).toString("utf8");
|
|
if (!raw) {
|
|
return undefined;
|
|
}
|
|
try {
|
|
return JSON.parse(raw);
|
|
} catch {
|
|
return raw;
|
|
}
|
|
}
|
|
|
|
export async function startFixtureServer(routes: FixtureRoute[]): Promise<FixtureServer> {
|
|
const requests: RecordedRequest[] = [];
|
|
const server: Server = createServer((req, res) => {
|
|
const url = new URL(req.url ?? "/", "http://fixture");
|
|
const recorded: RecordedRequest = {
|
|
method: req.method ?? "GET",
|
|
path: url.pathname,
|
|
query: Object.fromEntries(url.searchParams),
|
|
headers: Object.fromEntries(
|
|
Object.entries(req.headers).map(([k, v]) => [k, Array.isArray(v) ? v.join(",") : (v ?? "")]),
|
|
),
|
|
};
|
|
requests.push(recorded);
|
|
void readRequestBody(req).then((body) => {
|
|
recorded.body = body;
|
|
const route = routes.find((candidate) => matches(candidate, recorded));
|
|
if (!route) {
|
|
res.writeHead(599, { "content-type": "application/json" });
|
|
res.end(
|
|
JSON.stringify({
|
|
message: `no fixture route matched ${recorded.method} ${recorded.path} ${JSON.stringify(recorded.query)}`,
|
|
}),
|
|
);
|
|
return;
|
|
}
|
|
if (route.raw !== undefined) {
|
|
res.writeHead(route.status ?? 200, {
|
|
"content-type": "text/plain",
|
|
...route.headers,
|
|
});
|
|
res.end(route.raw);
|
|
return;
|
|
}
|
|
res.writeHead(route.status ?? 200, {
|
|
"content-type": "application/json",
|
|
...route.headers,
|
|
});
|
|
res.end(JSON.stringify(loadBody(route)));
|
|
});
|
|
});
|
|
await new Promise<void>((resolve) => {
|
|
server.listen(0, "127.0.0.1", resolve);
|
|
});
|
|
const address = server.address();
|
|
if (address === null || typeof address === "string") {
|
|
throw new Error("fixture server has no address");
|
|
}
|
|
return {
|
|
url: `http://127.0.0.1:${address.port}`,
|
|
requests,
|
|
close: () =>
|
|
new Promise<void>((resolve, reject) => {
|
|
server.close((error) => (error ? reject(error) : resolve()));
|
|
}),
|
|
};
|
|
}
|