Skip to content

Commit c04bb29

Browse files
fix: don't crash if GitHub API call for rulesetId option fails (#1953)
## PR Checklist - [x] Addresses an existing open issue: fixes #1952 - [x] That issue was marked as [`status: accepting prs`](https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22) - [x] Steps in [CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/create-typescript-app/blob/main/.github/CONTRIBUTING.md) were taken ## Overview A nice exercise of the input testers. 🎁
1 parent d2fc614 commit c04bb29

File tree

5 files changed

+68
-19
lines changed

5 files changed

+68
-19
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
"@vitest/eslint-plugin": "1.1.31",
8080
"all-contributors-cli": "6.26.1",
8181
"bingo-stratum-testers": "0.5.1",
82-
"bingo-testers": "0.5.1",
82+
"bingo-testers": "0.5.2",
8383
"console-fail-test": "0.5.0",
8484
"cspell": "8.17.3",
8585
"eslint": "9.20.1",

pnpm-lock.yaml

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/base.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import lazyValue from "lazy-value";
99
import npmUser from "npm-user";
1010
import { z } from "zod";
1111

12-
import { inputFromOctokit } from "./inputs/inputFromGitHub.js";
12+
import { inputFromOctokit } from "./inputs/inputFromOctokit.js";
1313
import { parsePackageAuthor } from "./options/parsePackageAuthor.js";
1414
import { readDefaultsFromReadme } from "./options/readDefaultsFromReadme.js";
1515
import { readDescription } from "./options/readDescription.js";
@@ -175,9 +175,9 @@ export const base = createBase({
175175
owner: await owner(),
176176
repo: await repository(),
177177
},
178-
})) as { id: string; name: string }[];
178+
})) as undefined | { id: string; name: string }[];
179179

180-
return rulesets.find(
180+
return rulesets?.find(
181181
(ruleset) => ruleset.name === "Branch protection for main",
182182
)?.id;
183183
});

src/inputs/inputFromOctokit.test.ts

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
import { createMockFetchers, testInput } from "bingo-testers";
2+
import { describe, expect, it, vi } from "vitest";
3+
4+
import { inputFromOctokit } from "./inputFromOctokit.js";
5+
6+
describe("inputFromOctokit", () => {
7+
it("returns data when the request resolves", async () => {
8+
const data = JSON.stringify({ found: true });
9+
10+
const actual = await testInput(inputFromOctokit, {
11+
args: {
12+
endpoint: "GET /repos/{owner}/{repo}/rulesets",
13+
options: {},
14+
},
15+
fetchers: createMockFetchers(
16+
vi.fn().mockResolvedValueOnce(
17+
// eslint-disable-next-line n/no-unsupported-features/node-builtins
18+
new Response(data),
19+
),
20+
),
21+
});
22+
23+
expect(actual).toEqual(data);
24+
});
25+
26+
it("returns undefined when the request rejects", async () => {
27+
const actual = await testInput(inputFromOctokit, {
28+
args: {
29+
endpoint: "GET /repos/{owner}/{repo}/rulesets",
30+
options: {},
31+
},
32+
fetchers: createMockFetchers(
33+
vi.fn().mockResolvedValueOnce(
34+
// eslint-disable-next-line n/no-unsupported-features/node-builtins
35+
new Response("", {
36+
status: 404,
37+
statusText: "Not found.",
38+
}),
39+
),
40+
),
41+
});
42+
43+
expect(actual).toBe(undefined);
44+
});
45+
});

src/inputs/inputFromGitHub.ts src/inputs/inputFromOctokit.ts

+11-7
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,17 @@ export const inputFromOctokit = createInput({
1010
// This will require smart types around GitHub endpoints, similar to:
1111
// https://github.com/JoshuaKGoldberg/bingo/issues/65
1212
async produce({ args, fetchers }): Promise<unknown> {
13-
const response = await fetchers.octokit.request(args.endpoint, {
14-
headers: {
15-
"X-GitHub-Api-Version": "2022-11-28",
16-
},
17-
...args.options,
18-
});
13+
try {
14+
const response = await fetchers.octokit.request(args.endpoint, {
15+
headers: {
16+
"X-GitHub-Api-Version": "2022-11-28",
17+
},
18+
...args.options,
19+
});
1920

20-
return response.data;
21+
return response.data;
22+
} catch {
23+
return undefined;
24+
}
2125
},
2226
});

0 commit comments

Comments
 (0)