Skip to content

Commit db79164

Browse files
authoredJul 13, 2022
feat: special handling for AbortError (#442)
1 parent f845b7c commit db79164

File tree

3 files changed

+50
-0
lines changed

3 files changed

+50
-0
lines changed
 

‎README.md

+2
Original file line numberDiff line numberDiff line change
@@ -419,6 +419,8 @@ If an error occurs, the promise is rejected with an `error` object containing 3
419419
- `error.request` The request options such as `method`, `url` and `data`
420420
- `error.response` The http response object with `url`, `headers`, and `data`
421421

422+
If the error is due to an `AbortSignal` being used, the resulting `AbortError` is bubbled up to the caller.
423+
422424
## `request.defaults()`
423425

424426
Override or set default options. Example:

‎src/fetch-wrapper.ts

+1
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ export default function fetchWrapper(
127127
})
128128
.catch((error) => {
129129
if (error instanceof RequestError) throw error;
130+
else if (error.name === "AbortError") throw error;
130131

131132
throw new RequestError(error.message, 500, {
132133
request: requestOptions,

‎test/request.test.ts

+47
Original file line numberDiff line numberDiff line change
@@ -1011,4 +1011,51 @@ x//0u+zd/R/QRUzLOw4N72/Hu+UG6MNt5iDZFCtapRaKt6OvSBwy8w==
10111011
expect(mock.done()).toBe(true);
10121012
});
10131013
});
1014+
1015+
it("bubbles up AbortError if the request is aborted", () => {
1016+
// AbortSignal and AbortController do not exist on
1017+
// Node < 15. The main parts of their API have been
1018+
// reproduced in the mocks below.
1019+
class AbortSignal {
1020+
abort = () => {
1021+
const e = new Error("");
1022+
e.name = "AbortError";
1023+
throw e;
1024+
};
1025+
1026+
addEventListener = () => {};
1027+
}
1028+
1029+
class AbortController {
1030+
abort = () => {
1031+
this.signal.abort();
1032+
};
1033+
signal = new AbortSignal();
1034+
}
1035+
const abortController = new AbortController();
1036+
const mock = fetchMock.sandbox().post(
1037+
"https://api.github.com/repos/octokit-fixture-org/release-assets/releases/tags/v1.0.0",
1038+
new Promise(() => {
1039+
abortController.abort();
1040+
})
1041+
);
1042+
1043+
return request("POST /repos/{owner}/{repo}/releases/tags/{tag}", {
1044+
owner: "octokit-fixture-org",
1045+
repo: "release-assets",
1046+
tag: "v1.0.0",
1047+
request: {
1048+
fetch: mock,
1049+
signal: abortController.signal,
1050+
},
1051+
headers: {
1052+
"content-type": "text/plain",
1053+
},
1054+
data: stringToArrayBuffer("Hello, world!\n"),
1055+
name: "test-upload.txt",
1056+
label: "test",
1057+
}).catch((error) => {
1058+
expect(error.name).toEqual("AbortError");
1059+
});
1060+
});
10141061
});

0 commit comments

Comments
 (0)
Please sign in to comment.