mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
a52d56f613
Summary: - Moved /test/client and /test/common to core. - Moved two files (CircularArray and RecentItems) from app/common to core/app/common. - Moved resetOrg test to gen-server. - `testrun.sh` is now invoking common and client test from core. - Added missing packages to core's package.json (and revealed underscore as it is used in the main app). - Removed Coord.js as it is not used anywhere. Test Plan: Existing tests Reviewers: paulfitz Reviewed By: paulfitz Subscribers: paulfitz Differential Revision: https://phab.getgrist.com/D3590
111 lines
3.5 KiB
TypeScript
111 lines
3.5 KiB
TypeScript
import {InactivityTimer} from 'app/common/InactivityTimer';
|
|
import {delay} from 'bluebird';
|
|
import {assert} from 'chai';
|
|
import * as sinon from 'sinon';
|
|
|
|
|
|
describe("InactivityTimer", function() {
|
|
|
|
let spy: sinon.SinonSpy, timer: InactivityTimer;
|
|
|
|
beforeEach(() => {
|
|
spy = sinon.spy();
|
|
timer = new InactivityTimer(spy, 100);
|
|
});
|
|
|
|
it("if no activity, should trigger when time elapses after ping", async function() {
|
|
timer.ping();
|
|
assert(spy.callCount === 0);
|
|
await delay(150);
|
|
assert.equal(spy.callCount, 1);
|
|
});
|
|
|
|
it("disableUntilFinish should clear timeout, and set it back after promise resolved", async function() {
|
|
timer.ping();
|
|
timer.disableUntilFinish(delay(100)); // eslint-disable-line @typescript-eslint/no-floating-promises
|
|
await delay(150);
|
|
assert.equal(spy.callCount, 0);
|
|
await delay(100);
|
|
assert.equal(spy.callCount, 1);
|
|
});
|
|
|
|
it("should not trigger during async monitoring", async function() {
|
|
timer.disableUntilFinish(delay(300)); // eslint-disable-line @typescript-eslint/no-floating-promises
|
|
|
|
// do not triggers after a ping
|
|
timer.ping();
|
|
await delay(150);
|
|
assert.equal(spy.callCount, 0);
|
|
|
|
// nor after an async monitored call
|
|
timer.disableUntilFinish(delay(0)); // eslint-disable-line @typescript-eslint/no-floating-promises
|
|
await delay(150);
|
|
assert.equal(spy.callCount, 0);
|
|
|
|
// finally triggers callback
|
|
await delay(150);
|
|
assert.equal(spy.callCount, 1);
|
|
});
|
|
|
|
it("should support disabling", async function() {
|
|
timer.disable();
|
|
assert.equal(timer.isEnabled(), false);
|
|
|
|
// While disabled, ping doesn't trigger anything.
|
|
timer.ping();
|
|
assert.equal(timer.isScheduled(), false);
|
|
await delay(200);
|
|
assert.equal(spy.callCount, 0);
|
|
|
|
// When enabled, it triggers as usual.
|
|
timer.enable();
|
|
assert.equal(timer.isEnabled(), true);
|
|
assert.equal(timer.isScheduled(), true);
|
|
await delay(150);
|
|
assert.equal(spy.callCount, 1);
|
|
spy.resetHistory();
|
|
|
|
// When enabled, ping and disableUntilFinish both trigger the callback.
|
|
timer.disableUntilFinish(delay(50)).catch(() => null);
|
|
timer.disableUntilFinish(delay(150)).catch(() => null);
|
|
await delay(100);
|
|
assert.equal(spy.callCount, 0);
|
|
assert.equal(timer.isScheduled(), false);
|
|
await delay(100);
|
|
assert.equal(timer.isScheduled(), true);
|
|
assert.equal(spy.callCount, 0);
|
|
await delay(100);
|
|
assert.equal(spy.callCount, 1);
|
|
spy.resetHistory();
|
|
|
|
// When disabled, nothing is triggered.
|
|
timer.disableUntilFinish(delay(50)).catch(() => null);
|
|
timer.disableUntilFinish(delay(150)).catch(() => null);
|
|
await delay(100);
|
|
assert.equal(spy.callCount, 0);
|
|
assert.equal(timer.isEnabled(), true);
|
|
assert.equal(timer.isScheduled(), false);
|
|
timer.disable();
|
|
timer.ping();
|
|
timer.disableUntilFinish(delay(150)).catch(() => null);
|
|
assert.equal(timer.isEnabled(), false);
|
|
assert.equal(timer.isScheduled(), false);
|
|
|
|
// Nothing called even after disableUntilFinished have resumed.
|
|
await delay(200);
|
|
assert.equal(spy.callCount, 0);
|
|
assert.equal(timer.isScheduled(), false);
|
|
|
|
// Re-enabling will schedule after a new delay.
|
|
timer.enable();
|
|
assert.equal(timer.isEnabled(), true);
|
|
assert.equal(timer.isScheduled(), true);
|
|
await delay(50);
|
|
assert.equal(spy.callCount, 0);
|
|
await delay(150);
|
|
assert.equal(spy.callCount, 1);
|
|
assert.equal(timer.isEnabled(), true);
|
|
assert.equal(timer.isScheduled(), false);
|
|
});
|
|
});
|