This repository has been archived by the owner on Apr 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
time.ts
477 lines (442 loc) · 13.5 KB
/
time.ts
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
/** This module is browser compatible. */
import { applyMixins, ascend, DelayOptions, RBTree } from "./time_deps.ts";
export type NativeDate = Date;
export type NativeDateConstructor = DateConstructor;
export const NativeDate: NativeDateConstructor = Date;
export const NativeTime = {
setTimeout,
clearTimeout,
setInterval,
clearInterval,
};
/** An error related to faking time. */
export class TimeError extends Error {
constructor(message: string) {
super(message);
this.name = "TimeError";
}
}
function isFakeDate(instance: unknown): instance is FakeDate {
return instance instanceof FakeDate;
}
export interface FakeDate extends NativeDate {
date: Date;
}
export interface FakeDateConstructor extends NativeDateConstructor {
new (): FakeDate;
new (value: string | number | NativeDate): FakeDate;
new (
year: number,
month: number,
date?: number,
hours?: number,
minutes?: number,
seconds?: number,
ms?: number,
): FakeDate;
(): string;
readonly prototype: FakeDate;
parse(s: string): number;
UTC(
year: number,
month: number,
date?: number,
hours?: number,
minutes?: number,
seconds?: number,
ms?: number,
): number;
now(): number;
}
function FakeDateConstructor(this: void): string;
function FakeDateConstructor(this: FakeDate): void;
function FakeDateConstructor(
this: FakeDate,
value: string | number | NativeDate,
): void;
function FakeDateConstructor(
this: FakeDate,
year: number,
month: number,
date?: number,
hours?: number,
minutes?: number,
seconds?: number,
ms?: number,
): void;
function FakeDateConstructor(
this: FakeDate | void,
// deno-lint-ignore no-explicit-any
...args: any[]
): string | void {
if (args.length === 0) args.push(FakeDate.now());
if (isFakeDate(this)) {
this.date = new NativeDate(...(args as []));
} else {
return new NativeDate(args[0]).toString();
}
}
class FakeDateMixin {
declare date: NativeDate;
static now(): number {
return time?.now ?? NativeDate.now();
}
[Symbol.toPrimitive](hint: "default"): string;
[Symbol.toPrimitive](hint: "string"): string;
[Symbol.toPrimitive](hint: "number"): number;
[Symbol.toPrimitive](_hint: string): string | number {
return this.date[Symbol.toPrimitive].apply(
this.date,
Array.from(arguments) as [string],
);
}
}
applyMixins(FakeDateConstructor, [FakeDateMixin]);
export const FakeDate: FakeDateConstructor =
FakeDateConstructor as FakeDateConstructor;
FakeDate.parse = Date.parse;
FakeDate.UTC = Date.UTC;
Object.getOwnPropertyNames(Date.prototype).forEach((name: string) => {
const propName: keyof NativeDate = name as keyof NativeDate;
FakeDate.prototype[propName] = function (
this: FakeDate,
// deno-lint-ignore no-explicit-any
...args: any[]
// deno-lint-ignore no-explicit-any
): any {
// deno-lint-ignore no-explicit-any
return (this.date[propName] as (...args: any[]) => any).apply(
this.date,
args,
);
};
});
Object.getOwnPropertySymbols(Date.prototype).forEach((name: symbol) => {
const propName: keyof NativeDate = name as unknown as keyof NativeDate;
FakeDate.prototype[propName] = function (
this: FakeDate,
// deno-lint-ignore no-explicit-any
...args: any[]
// deno-lint-ignore no-explicit-any
): any {
// deno-lint-ignore no-explicit-any
return (this.date[propName] as (...args: any[]) => any).apply(
this.date,
args,
);
};
});
function* timerId() {
let i = 1;
while (true) yield i++;
}
interface Timer {
id: number;
// deno-lint-ignore no-explicit-any
callback: (...args: any[]) => void;
delay: number;
args: unknown[];
due: number;
repeat: boolean;
}
export interface FakeTimeOptions {
/**
* The rate relative to real time at which fake time is updated.
* By default time only moves forward through calling tick or setting now.
* Set to 1 to have the fake time automatically tick foward at the same rate in milliseconds as real time.
*/
advanceRate: number;
/**
* The frequency in milliseconds at which fake time is updated.
* If advanceRate is set, we will update the time every 10 milliseconds by default.
*/
advanceFrequency?: number;
}
interface DueNode {
due: number;
timers: Timer[];
}
let time: FakeTime | undefined = undefined;
/**
* Overrides the real Date object and timer functions with fake ones that can be
* controlled through the fake time instance.
*
* @deprecated Use https://deno.land/std/testing/time.ts instead.
*/
export class FakeTime {
private _now: number;
private _start: number;
private initializedAt: number;
private advanceRate: number;
private advanceFrequency: number;
private advanceIntervalId?: number;
private timerId: Generator<number>;
private dueNodes: Map<number, DueNode>;
private dueTree: RBTree<DueNode>;
constructor(
start?: number | string | NativeDate | null,
options?: FakeTimeOptions,
) {
if (time) time.restore();
this.initializedAt = NativeDate.now();
this._start = start instanceof NativeDate
? start.valueOf()
: typeof start === "number"
? Math.floor(start)
: typeof start === "string"
? (new Date(start)).valueOf()
: this.initializedAt;
if (Number.isNaN(this._start)) throw new TimeError("invalid start");
this._now = this._start;
this.timerId = timerId();
this.dueNodes = new Map();
this.dueTree = new RBTree(
(a: DueNode, b: DueNode) => ascend(a.due, b.due),
);
this.overrideGlobals();
time = this;
this.advanceRate = Math.max(
0,
options?.advanceRate ? options.advanceRate : 0,
);
this.advanceFrequency = Math.max(
0,
options?.advanceFrequency ? options.advanceFrequency : 10,
);
if (this.advanceRate > 0) {
this.advanceIntervalId = NativeTime.setInterval.call(null, () => {
this.tick(this.advanceRate * this.advanceFrequency);
}, this.advanceFrequency);
}
}
static restore(): void {
if (!time) throw new TimeError("time already restored");
time.restore();
}
static setTimeout(
// deno-lint-ignore no-explicit-any
callback: (...args: any[]) => void,
delay = 0,
// deno-lint-ignore no-explicit-any
...args: any[]
): number {
if (!time) throw new TimeError("no fake time");
return time.setTimer(callback, delay, args, false);
}
static clearTimeout(id?: number): void {
if (!time) throw new TimeError("no fake time");
if (typeof id === "number" && time.dueNodes.has(id)) {
time.dueNodes.delete(id);
}
}
static setInterval(
// deno-lint-ignore no-explicit-any
callback: (...args: any[]) => unknown,
delay = 0,
// deno-lint-ignore no-explicit-any
...args: any[]
): number {
if (!time) throw new TimeError("no fake time");
return time.setTimer(callback, delay, args, true);
}
static clearInterval(id?: number): void {
if (!time) throw new TimeError("no fake time");
if (typeof id === "number" && time.dueNodes.has(id)) {
time.dueNodes.delete(id);
}
}
private overrideGlobals(): void {
globalThis.Date = FakeDate;
globalThis.setTimeout = FakeTime.setTimeout as typeof NativeTime.setTimeout;
globalThis.clearTimeout = FakeTime.clearTimeout;
globalThis.setInterval = FakeTime
.setInterval as typeof NativeTime.setInterval;
globalThis.clearInterval = FakeTime.clearInterval;
}
private restoreGlobals(): void {
globalThis.Date = NativeDate;
globalThis.setTimeout = NativeTime.setTimeout;
globalThis.clearTimeout = NativeTime.clearTimeout;
globalThis.setInterval = NativeTime.setInterval;
globalThis.clearInterval = NativeTime.clearInterval;
}
private setTimer(
// deno-lint-ignore no-explicit-any
callback: (...args: any[]) => void,
delay = 0,
args: unknown[],
repeat = false,
): number {
const id: number = this.timerId.next().value;
delay = Math.max(repeat ? 1 : 0, Math.floor(delay));
const due: number = this.now + delay;
let dueNode: DueNode | null = this.dueTree.find({ due } as DueNode);
if (dueNode === null) {
dueNode = { due, timers: [] };
this.dueTree.insert(dueNode);
}
dueNode.timers.push({
id,
callback,
args,
delay,
due,
repeat,
});
this.dueNodes.set(id, dueNode);
return id;
}
/**
* Restores real time temporarily until callback returns and resolves.
*/
static async restoreFor<T>(
// deno-lint-ignore no-explicit-any
callback: (...args: any[]) => Promise<T> | T,
// deno-lint-ignore no-explicit-any
...args: any[]
): Promise<T> {
if (!time) throw new TimeError("no fake time");
let result: T;
time.restoreGlobals();
try {
result = await callback.apply(null, args);
} finally {
time.overrideGlobals();
}
return result;
}
/**
* The amount of milliseconds elapsed since January 1, 1970 00:00:00 UTC for the fake time.
* When set, it will call any functions waiting to be called between the current and new fake time.
* If the timer callback throws, time will stop advancing forward beyond that timer.
*/
get now(): number {
return this._now;
}
set now(value: number) {
if (value < this._now) throw new Error("time cannot go backwards");
let dueNode: DueNode | null = this.dueTree.min();
while (dueNode && dueNode.due <= value) {
const timer: Timer | undefined = dueNode.timers.shift();
if (timer && this.dueNodes.has(timer.id)) {
this._now = timer.due;
if (timer.repeat) {
const due: number = timer.due + timer.delay;
let dueNode: DueNode | null = this.dueTree.find({ due } as DueNode);
if (dueNode === null) {
dueNode = { due, timers: [] };
this.dueTree.insert(dueNode);
}
dueNode.timers.push({ ...timer, due });
this.dueNodes.set(timer.id, dueNode);
} else {
this.dueNodes.delete(timer.id);
}
timer.callback.apply(null, timer.args);
} else if (!timer) {
this.dueTree.remove(dueNode);
dueNode = this.dueTree.min();
}
}
this._now = value;
}
/** The initial amount of milliseconds elapsed since January 1, 1970 00:00:00 UTC for the fake time. */
get start(): number {
return this._start;
}
set start(value: number) {
throw new Error("cannot change start time after initialization");
}
/** Resolves after the given number of milliseconds using real time. */
async delay(ms: number, options: DelayOptions = {}): Promise<void> {
const { signal } = options;
if (signal?.aborted) {
return Promise.reject(
new DOMException("Delay was aborted.", "AbortError"),
);
}
return await new Promise((resolve, reject) => {
let timer: number | null = null;
const abort = () =>
FakeTime
.restoreFor(() => {
if (timer) clearTimeout(timer);
})
.then(() =>
reject(new DOMException("Delay was aborted.", "AbortError"))
);
const done = () => {
signal?.removeEventListener("abort", abort);
resolve();
};
FakeTime.restoreFor(() => setTimeout(done, ms))
.then((id) => timer = id);
signal?.addEventListener("abort", abort, { once: true });
});
}
/** Runs all pending microtasks. */
async runMicrotasks(): Promise<void> {
await this.delay(0);
}
/**
* Adds the specified number of milliseconds to the fake time.
* This will call any functions waiting to be called between the current and new fake time.
*/
tick(ms = 0): void {
this.now += ms;
}
/**
* Runs all pending microtasks then adds the specified number of milliseconds to the fake time.
* This will call any functions waiting to be called between the current and new fake time.
*/
async tickAsync(ms = 0): Promise<void> {
await this.runMicrotasks();
this.now += ms;
}
/**
* Advances time to when the next scheduled timer is due.
* If there are no pending timers, time will not be changed.
* Returns true when there is a scheduled timer and false when there is not.
*/
next(): boolean {
const next = this.dueTree.min();
if (next) this.now = next.due;
return !!next;
}
/**
* Runs all pending microtasks then advances time to when the next scheduled timer is due.
* If there are no pending timers, time will not be changed.
*/
async nextAsync(): Promise<boolean> {
await this.runMicrotasks();
return this.next();
}
/**
* Advances time forward to the next due timer until there are no pending timers remaining.
* If the timers create additional timers, they will be run too. If there is an interval,
* time will keep advancing forward until the interval is cleared.
*/
runAll(): void {
while (!this.dueTree.isEmpty()) {
this.next();
}
}
/**
* Advances time forward to the next due timer until there are no pending timers remaining.
* If the timers create additional timers, they will be run too. If there is an interval,
* time will keep advancing forward until the interval is cleared.
* Runs all pending microtasks before each timer.
*/
async runAllAsync(): Promise<void> {
while (!this.dueTree.isEmpty()) {
await this.nextAsync();
}
}
/** Restores time related global functions to their original state. */
restore(): void {
if (!time) throw new TimeError("time already restored");
time = undefined;
this.restoreGlobals();
if (this.advanceIntervalId) clearInterval(this.advanceIntervalId);
}
}