2021-04-09 17:39:48 +05:30
|
|
|
/*
|
|
|
|
Copyright 2020 Bruno Windels <bruno@windels.cloud>
|
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import {ConnectionError} from "../matrix/error.js";
|
2021-11-16 16:14:13 +05:30
|
|
|
import type {Timeout} from "../platform/web/dom/Clock.js"
|
2021-11-17 20:27:23 +05:30
|
|
|
import type {IAbortable} from "./AbortableOperation";
|
2021-04-09 17:39:48 +05:30
|
|
|
|
2021-11-16 16:14:13 +05:30
|
|
|
type TimeoutCreator = (ms: number) => Timeout;
|
2021-04-09 17:39:48 +05:30
|
|
|
|
2021-11-17 20:27:23 +05:30
|
|
|
export function abortOnTimeout(createTimeout: TimeoutCreator, timeoutAmount: number, requestResult: IAbortable, responsePromise: Promise<Response>) {
|
2021-04-09 17:39:48 +05:30
|
|
|
const timeout = createTimeout(timeoutAmount);
|
|
|
|
// abort request if timeout finishes first
|
|
|
|
let timedOut = false;
|
|
|
|
timeout.elapsed().then(
|
|
|
|
() => {
|
|
|
|
timedOut = true;
|
|
|
|
requestResult.abort();
|
|
|
|
},
|
|
|
|
() => {} // ignore AbortError when timeout is aborted
|
|
|
|
);
|
|
|
|
// abort timeout if request finishes first
|
|
|
|
return responsePromise.then(
|
|
|
|
response => {
|
|
|
|
timeout.abort();
|
|
|
|
return response;
|
|
|
|
},
|
|
|
|
err => {
|
|
|
|
timeout.abort();
|
|
|
|
// map error to TimeoutError
|
|
|
|
if (err.name === "AbortError" && timedOut) {
|
|
|
|
throw new ConnectionError(`Request timed out after ${timeoutAmount}ms`, true);
|
|
|
|
} else {
|
|
|
|
throw err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
// because impunity only takes one entrypoint currently,
|
|
|
|
// these tests aren't run by yarn test as that does not
|
|
|
|
// include platform specific code,
|
|
|
|
// and this file is only included by platform specific code,
|
|
|
|
// see how to run in package.json and replace src/main.js with this file.
|
2021-04-09 18:46:43 +05:30
|
|
|
import {Clock as MockClock} from "../mocks/Clock.js";
|
|
|
|
import {Request as MockRequest} from "../mocks/Request.js";
|
2021-04-09 17:39:48 +05:30
|
|
|
import {AbortError} from "../matrix/error.js";
|
|
|
|
export function tests() {
|
|
|
|
return {
|
|
|
|
"ConnectionError on timeout": async assert => {
|
2021-04-09 18:46:43 +05:30
|
|
|
const clock = new MockClock();
|
|
|
|
const request = new MockRequest();
|
|
|
|
const promise = abortOnTimeout(clock.createTimeout, 10000, request, request.response());
|
2021-04-09 17:39:48 +05:30
|
|
|
clock.elapse(10000);
|
|
|
|
await assert.rejects(promise, ConnectionError);
|
|
|
|
assert(request.aborted);
|
|
|
|
},
|
|
|
|
"Abort is canceled once response resolves": async assert => {
|
2021-04-09 18:46:43 +05:30
|
|
|
const clock = new MockClock();
|
|
|
|
const request = new MockRequest();
|
|
|
|
const promise = abortOnTimeout(clock.createTimeout, 10000, request, request.response());
|
2021-04-09 17:39:48 +05:30
|
|
|
request.resolve(5);
|
|
|
|
clock.elapse(10000);
|
|
|
|
assert(!request.aborted);
|
|
|
|
assert.equal(await promise, 5);
|
|
|
|
},
|
|
|
|
"AbortError from request is not mapped to ConnectionError": async assert => {
|
2021-04-09 18:46:43 +05:30
|
|
|
const clock = new MockClock();
|
|
|
|
const request = new MockRequest();
|
|
|
|
const promise = abortOnTimeout(clock.createTimeout, 10000, request, request.response());
|
2021-04-09 17:39:48 +05:30
|
|
|
request.reject(new AbortError());
|
|
|
|
assert(!request.aborted);
|
|
|
|
assert.rejects(promise, AbortError);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|