mirror of
https://github.com/denoland/std.git
synced 2024-11-22 04:59:05 +00:00
403f226a20
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
461 lines
13 KiB
TypeScript
461 lines
13 KiB
TypeScript
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
|
|
|
/** This module is browser compatible. */
|
|
|
|
import { ascend, RBTree } from "../collections/rb_tree.ts";
|
|
import { DelayOptions } from "../async/delay.ts";
|
|
import { _internals } from "./_time.ts";
|
|
|
|
/** 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;
|
|
}
|
|
|
|
interface FakeDate extends Date {
|
|
date: Date;
|
|
}
|
|
|
|
function FakeDate(this: void): string;
|
|
function FakeDate(this: FakeDate): void;
|
|
function FakeDate(
|
|
this: FakeDate,
|
|
value: string | number | Date,
|
|
): void;
|
|
function FakeDate(
|
|
this: FakeDate,
|
|
year: number,
|
|
month: number,
|
|
date?: number,
|
|
hours?: number,
|
|
minutes?: number,
|
|
seconds?: number,
|
|
ms?: number,
|
|
): void;
|
|
function FakeDate(
|
|
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 _internals.Date(...(args as []));
|
|
} else {
|
|
return new _internals.Date(args[0]).toString();
|
|
}
|
|
}
|
|
|
|
FakeDate.parse = Date.parse;
|
|
FakeDate.UTC = Date.UTC;
|
|
FakeDate.now = () => time?.now ?? _internals.Date.now();
|
|
Object.getOwnPropertyNames(Date.prototype).forEach((name: string) => {
|
|
const propName: keyof Date = name as keyof Date;
|
|
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 Date = name as unknown as keyof Date;
|
|
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,
|
|
);
|
|
};
|
|
});
|
|
|
|
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;
|
|
|
|
function fakeSetTimeout(
|
|
// 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 setTimer(callback, delay, args, false);
|
|
}
|
|
|
|
function fakeClearTimeout(id?: number): void {
|
|
if (!time) throw new TimeError("no fake time");
|
|
if (typeof id === "number" && dueNodes.has(id)) {
|
|
dueNodes.delete(id);
|
|
}
|
|
}
|
|
|
|
function fakeSetInterval(
|
|
// 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 setTimer(callback, delay, args, true);
|
|
}
|
|
|
|
function fakeClearInterval(id?: number): void {
|
|
if (!time) throw new TimeError("no fake time");
|
|
if (typeof id === "number" && dueNodes.has(id)) {
|
|
dueNodes.delete(id);
|
|
}
|
|
}
|
|
|
|
function setTimer(
|
|
// deno-lint-ignore no-explicit-any
|
|
callback: (...args: any[]) => void,
|
|
delay = 0,
|
|
args: unknown[],
|
|
repeat = false,
|
|
): number {
|
|
const id: number = timerId.next().value;
|
|
delay = Math.max(repeat ? 1 : 0, Math.floor(delay));
|
|
const due: number = now + delay;
|
|
let dueNode: DueNode | null = dueTree.find({ due } as DueNode);
|
|
if (dueNode === null) {
|
|
dueNode = { due, timers: [] };
|
|
dueTree.insert(dueNode);
|
|
}
|
|
dueNode.timers.push({
|
|
id,
|
|
callback,
|
|
args,
|
|
delay,
|
|
due,
|
|
repeat,
|
|
});
|
|
dueNodes.set(id, dueNode);
|
|
return id;
|
|
}
|
|
|
|
function overrideGlobals(): void {
|
|
globalThis.Date = FakeDate as DateConstructor;
|
|
globalThis.setTimeout = fakeSetTimeout;
|
|
globalThis.clearTimeout = fakeClearTimeout;
|
|
globalThis.setInterval = fakeSetInterval;
|
|
globalThis.clearInterval = fakeClearInterval;
|
|
}
|
|
|
|
function restoreGlobals(): void {
|
|
globalThis.Date = _internals.Date;
|
|
globalThis.setTimeout = _internals.setTimeout;
|
|
globalThis.clearTimeout = _internals.clearTimeout;
|
|
globalThis.setInterval = _internals.setInterval;
|
|
globalThis.clearInterval = _internals.clearInterval;
|
|
}
|
|
|
|
function* timerIdGen() {
|
|
let i = 1;
|
|
while (true) yield i++;
|
|
}
|
|
|
|
let startedAt: number;
|
|
let now: number;
|
|
let initializedAt: number;
|
|
let advanceRate: number;
|
|
let advanceFrequency: number;
|
|
let advanceIntervalId: number | undefined;
|
|
let timerId: Generator<number>;
|
|
let dueNodes: Map<number, DueNode>;
|
|
let dueTree: RBTree<DueNode>;
|
|
|
|
/**
|
|
* Overrides the real Date object and timer functions with fake ones that can be
|
|
* controlled through the fake time instance.
|
|
*
|
|
* ```ts
|
|
* // https://deno.land/std@$STD_VERSION/testing/mock_examples/interval_test.ts
|
|
* import {
|
|
* assertSpyCalls,
|
|
* spy,
|
|
* } from "https://deno.land/std@$STD_VERSION/testing/mock.ts";
|
|
* import { FakeTime } from "https://deno.land/std@$STD_VERSION/testing/time.ts";
|
|
* import { secondInterval } from "https://deno.land/std@$STD_VERSION/testing/mock_examples/interval.ts";
|
|
*
|
|
* Deno.test("secondInterval calls callback every second and stops after being cleared", () => {
|
|
* const time = new FakeTime();
|
|
*
|
|
* try {
|
|
* const cb = spy();
|
|
* const intervalId = secondInterval(cb);
|
|
* assertSpyCalls(cb, 0);
|
|
* time.tick(500);
|
|
* assertSpyCalls(cb, 0);
|
|
* time.tick(500);
|
|
* assertSpyCalls(cb, 1);
|
|
* time.tick(3500);
|
|
* assertSpyCalls(cb, 4);
|
|
*
|
|
* clearInterval(intervalId);
|
|
* time.tick(1000);
|
|
* assertSpyCalls(cb, 4);
|
|
* } finally {
|
|
* time.restore();
|
|
* }
|
|
* });
|
|
* ```
|
|
*/
|
|
export class FakeTime {
|
|
constructor(
|
|
start?: number | string | Date | null,
|
|
options?: FakeTimeOptions,
|
|
) {
|
|
if (time) time.restore();
|
|
initializedAt = _internals.Date.now();
|
|
startedAt = start instanceof Date
|
|
? start.valueOf()
|
|
: typeof start === "number"
|
|
? Math.floor(start)
|
|
: typeof start === "string"
|
|
? (new Date(start)).valueOf()
|
|
: initializedAt;
|
|
if (Number.isNaN(startedAt)) throw new TimeError("invalid start");
|
|
now = startedAt;
|
|
|
|
timerId = timerIdGen();
|
|
dueNodes = new Map();
|
|
dueTree = new RBTree(
|
|
(a: DueNode, b: DueNode) => ascend(a.due, b.due),
|
|
);
|
|
|
|
overrideGlobals();
|
|
time = this;
|
|
|
|
advanceRate = Math.max(
|
|
0,
|
|
options?.advanceRate ? options.advanceRate : 0,
|
|
);
|
|
advanceFrequency = Math.max(
|
|
0,
|
|
options?.advanceFrequency ? options.advanceFrequency : 10,
|
|
);
|
|
advanceIntervalId = advanceRate > 0
|
|
? _internals.setInterval.call(null, () => {
|
|
this.tick(advanceRate * advanceFrequency);
|
|
}, advanceFrequency)
|
|
: undefined;
|
|
}
|
|
|
|
/** Restores real time. */
|
|
static restore(): void {
|
|
if (!time) throw new TimeError("time already restored");
|
|
time.restore();
|
|
}
|
|
|
|
/**
|
|
* 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;
|
|
restoreGlobals();
|
|
try {
|
|
result = await callback.apply(null, args);
|
|
} finally {
|
|
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 now;
|
|
}
|
|
set now(value: number) {
|
|
if (value < now) throw new Error("time cannot go backwards");
|
|
let dueNode: DueNode | null = dueTree.min();
|
|
while (dueNode && dueNode.due <= value) {
|
|
const timer: Timer | undefined = dueNode.timers.shift();
|
|
if (timer && dueNodes.has(timer.id)) {
|
|
now = timer.due;
|
|
if (timer.repeat) {
|
|
const due: number = timer.due + timer.delay;
|
|
let dueNode: DueNode | null = dueTree.find({ due } as DueNode);
|
|
if (dueNode === null) {
|
|
dueNode = { due, timers: [] };
|
|
dueTree.insert(dueNode);
|
|
}
|
|
dueNode.timers.push({ ...timer, due });
|
|
dueNodes.set(timer.id, dueNode);
|
|
} else {
|
|
dueNodes.delete(timer.id);
|
|
}
|
|
timer.callback.apply(null, timer.args);
|
|
} else if (!timer) {
|
|
dueTree.remove(dueNode);
|
|
dueNode = dueTree.min();
|
|
}
|
|
}
|
|
now = value;
|
|
}
|
|
|
|
/** The initial amount of milliseconds elapsed since January 1, 1970 00:00:00 UTC for the fake time. */
|
|
get start(): number {
|
|
return startedAt;
|
|
}
|
|
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 = 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 (!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 (!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;
|
|
restoreGlobals();
|
|
if (advanceIntervalId) clearInterval(advanceIntervalId);
|
|
}
|
|
}
|