1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
import { SYSTEM_TICK_INTERVAL, SystemTickFeed } from "lib/SystemTickFeed.jsm";
import { actionTypes as at } from "common/Actions.sys.mjs";
import { GlobalOverrider } from "test/unit/utils";
describe("System Tick Feed", () => {
let globals;
let instance;
let clock;
beforeEach(() => {
globals = new GlobalOverrider();
clock = sinon.useFakeTimers();
instance = new SystemTickFeed();
instance.store = {
getState() {
return {};
},
dispatch() {},
};
});
afterEach(() => {
globals.restore();
clock.restore();
});
it("should create a SystemTickFeed", () => {
assert.instanceOf(instance, SystemTickFeed);
});
it("should fire SYSTEM_TICK events at configured interval", () => {
globals.set("ChromeUtils", {
idleDispatch: f => f(),
});
let expectation = sinon
.mock(instance.store)
.expects("dispatch")
.twice()
.withExactArgs({ type: at.SYSTEM_TICK });
instance.onAction({ type: at.INIT });
clock.tick(SYSTEM_TICK_INTERVAL * 2);
expectation.verify();
});
it("should not fire SYSTEM_TICK events after UNINIT", () => {
let expectation = sinon.mock(instance.store).expects("dispatch").never();
instance.onAction({ type: at.UNINIT });
clock.tick(SYSTEM_TICK_INTERVAL * 2);
expectation.verify();
});
it("should not fire SYSTEM_TICK events while the user is away", () => {
let expectation = sinon.mock(instance.store).expects("dispatch").never();
instance.onAction({ type: at.INIT });
instance._idleService = { idleTime: SYSTEM_TICK_INTERVAL + 1 };
clock.tick(SYSTEM_TICK_INTERVAL * 3);
expectation.verify();
instance.onAction({ type: at.UNINIT });
});
it("should fire SYSTEM_TICK immediately when the user is active again", () => {
globals.set("ChromeUtils", {
idleDispatch: f => f(),
});
let expectation = sinon
.mock(instance.store)
.expects("dispatch")
.once()
.withExactArgs({ type: at.SYSTEM_TICK });
instance.onAction({ type: at.INIT });
instance._idleService = { idleTime: SYSTEM_TICK_INTERVAL + 1 };
clock.tick(SYSTEM_TICK_INTERVAL * 3);
instance.observe();
expectation.verify();
instance.onAction({ type: at.UNINIT });
});
});
|