mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
(core) Add timeouts to prevent ActiveDoc bad state during shutdown.
Summary: Add two shutdown-related timeouts. 1. One is to limit the duration of any work that happens once shutdown begins. In particular, waiting for an update to current time could block indefinitely if the data engine is unresponsive. Such awaits are now limited to 5 seconds. 2. The other is to allow documents to get shutdown for inactivity even when some work takes forever. Certain work (e.g. applying user actions) generally prevents a document from shutting down while it's pending. This prevention is now limited to 5 minutes. Shutting down a doc while something is pending may break some assumptions, and lead to errors. The timeout is long to let us assume that the work is stuck, and that errors are better than waiting forever. Other changes: - Periodic ActiveDoc work (intervals) is now started when a doc finishes loading rather than in the constructor. The difference only showed up in tests which makes the intervals much shorter. - Move timeoutReached() utility function to gutil, and use it for isLongerThan(), since they are basically identical. Also makes sure that the timer in these is cleared in all cases. - Remove duplicate waitForIt implementation (previously had a copy in both test/server and core/test/server). - Change testUtil.captureLog to pass messages to its callback, to allow asserts on messages within the callback. Test Plan: Added new unittests for the new shutdowns, including a replication of a bad state that was possible during shutdown. Reviewers: paulfitz Reviewed By: paulfitz Subscribers: paulfitz Differential Revision: https://phab.getgrist.com/D4040
This commit is contained in:
@@ -124,6 +124,23 @@ describe('gutil2', function() {
|
||||
});
|
||||
});
|
||||
|
||||
describe("timeoutReached", function() {
|
||||
const DELAY_1 = 20;
|
||||
const DELAY_2 = 2 * DELAY_1;
|
||||
it("should return true for timed out promise", async function() {
|
||||
assert.isTrue(await gutil.timeoutReached(DELAY_1, delay(DELAY_2)));
|
||||
assert.isTrue(await gutil.timeoutReached(DELAY_1, delay(DELAY_2).then(() => { throw new Error("test error"); })));
|
||||
});
|
||||
|
||||
it("should return false for promise that completes before timeout", async function() {
|
||||
assert.isFalse(await gutil.timeoutReached(DELAY_2, delay(DELAY_1)));
|
||||
assert.isFalse(await gutil.timeoutReached(DELAY_2, delay(DELAY_1)
|
||||
.then(() => { throw new Error("test error"); })));
|
||||
assert.isFalse(await gutil.timeoutReached(DELAY_2, Promise.resolve('foo')));
|
||||
assert.isFalse(await gutil.timeoutReached(DELAY_2, Promise.reject('bar')));
|
||||
});
|
||||
});
|
||||
|
||||
describe("isValidHex", function() {
|
||||
it('should work correctly', async function() {
|
||||
assert.equal(gutil.isValidHex('#FF00FF'), true);
|
||||
|
||||
Reference in New Issue
Block a user