playwright/tests/library/clock.spec.ts

1728 lines
52 KiB
TypeScript
Raw Normal View History

/**
* Copyright (c) Microsoft Corporation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { test, expect } from '@playwright/test';
import { createClock as rawCreateClock, install as rawInstall } from '../../packages/playwright-core/src/server/injected/clock';
import type { InstallConfig, ClockController, ClockMethods } from '../../packages/playwright-core/src/server/injected/clock';
2024-06-11 09:42:15 -07:00
const createClock = (now?: number): ClockController & ClockMethods => {
const { clock, api } = rawCreateClock(globalThis);
clock.setSystemTime(now || 0);
for (const key of Object.keys(api))
clock[key] = api[key];
return clock as ClockController & ClockMethods;
};
type ClockFixtures = {
clock: ClockController & ClockMethods;
2024-06-11 09:42:15 -07:00
now: number | undefined;
install: (now?: number) => ClockController & ClockMethods;
installEx: (config?: InstallConfig) => { clock: ClockController, api: ClockMethods, originals: ClockMethods };
};
const it = test.extend<ClockFixtures>({
2024-06-11 09:42:15 -07:00
clock: async ({ now }, use) => {
const clock = createClock(now);
await use(clock);
},
now: undefined,
install: async ({}, use) => {
let clockObject: ClockController & ClockMethods;
2024-06-11 09:42:15 -07:00
const install = (now?: number) => {
const { clock, api } = rawInstall(globalThis);
if (now)
clock.setSystemTime(now);
for (const key of Object.keys(api))
clock[key] = api[key];
clockObject = clock as ClockController & ClockMethods;
return clockObject;
};
await use(install);
clockObject?.uninstall();
},
installEx: async ({}, use) => {
let clock: ClockController;
await use((config?: InstallConfig) => {
const result = rawInstall(globalThis, config);
clock = result.clock;
return result;
});
clock?.uninstall();
},
});
it.describe('setTimeout', () => {
it('throws if no arguments', async ({ clock }) => {
expect(() => {
// @ts-expect-error
clock.setTimeout();
}).toThrow();
});
it('does not throw if |undefined| or |null| is passed as a callback', async ({ clock }) => {
const timerId1 = clock.setTimeout(undefined, 10);
const timerId2 = clock.setTimeout(null, 10);
await clock.runFor(10);
expect(timerId1).toBeGreaterThan(0);
expect(timerId2).toBeGreaterThan(timerId1);
});
it('returns numeric id or object with numeric id', async ({ clock }) => {
const result = clock.setTimeout(() => { }, 10);
expect(result).toEqual(expect.any(Number));
});
it('returns unique id', async ({ clock }) => {
const id1 = clock.setTimeout(() => { }, 10);
const id2 = clock.setTimeout(() => { }, 10);
expect(id2).not.toBe(id1);
});
it('starts id from a large number', async ({ clock }) => {
const timer = clock.setTimeout(() => { }, 10);
expect(timer).toBeGreaterThanOrEqual(1e12);
});
it('sets timers on instance', async ({ clock }) => {
const clock1 = createClock();
const clock2 = createClock();
const stubs = [createStub(), createStub()];
clock1.setTimeout(stubs[0], 100);
clock2.setTimeout(stubs[1], 100);
2024-06-11 09:42:15 -07:00
await clock2.runFor(200);
expect(stubs[0].called).toBeFalsy();
expect(stubs[1].called).toBeTruthy();
});
it('parses numeric string times', async ({ clock }) => {
let evalCalled = false;
clock.setTimeout(() => {
evalCalled = true;
// @ts-expect-error
}, '10');
2024-06-11 09:42:15 -07:00
await clock.runFor(10);
expect(evalCalled).toBeTruthy();
});
it('parses no-numeric string times', async ({ clock }) => {
let evalCalled = false;
clock.setTimeout(() => {
evalCalled = true;
// @ts-expect-error
}, 'string');
2024-06-11 09:42:15 -07:00
await clock.runFor(10);
expect(evalCalled).toBeTruthy();
});
it('passes setTimeout parameters', async ({ clock }) => {
const stub = createStub();
clock.setTimeout(stub, 2, 'the first', 'the second');
2024-06-11 09:42:15 -07:00
await clock.runFor(3);
expect(stub.calledWithExactly('the first', 'the second')).toBeTruthy();
});
it('calls correct timeout on recursive tick', async ({ clock }) => {
const stub = createStub();
const recurseCallback = () => {
2024-06-11 09:42:15 -07:00
void clock.runFor(100);
};
clock.setTimeout(recurseCallback, 50);
clock.setTimeout(stub, 100);
2024-06-11 09:42:15 -07:00
await clock.runFor(50);
expect(stub.called).toBeTruthy();
});
it('does not depend on this', async ({ clock }) => {
const stub = createStub();
clock.setTimeout(stub, 100);
2024-06-11 09:42:15 -07:00
await clock.runFor(100);
expect(stub.called).toBeTruthy();
});
it('is not influenced by forward system clock changes', async ({ clock }) => {
const stub = createStub();
clock.setTimeout(stub, 5000);
2024-06-11 09:42:15 -07:00
await clock.runFor(1000);
clock.setSystemTime(new clock.Date().getTime() + 1000);
await clock.runFor(3990);
expect(stub.callCount).toBe(0);
2024-06-11 09:42:15 -07:00
await clock.runFor(20);
expect(stub.callCount).toBe(1);
});
it('is not influenced by backward system clock changes', async ({ clock }) => {
const stub = createStub();
clock.setTimeout(stub, 5000);
2024-06-11 09:42:15 -07:00
await clock.runFor(1000);
clock.setSystemTime(new clock.Date().getTime() - 1000);
await clock.runFor(3990);
expect(stub.callCount).toBe(0);
2024-06-11 09:42:15 -07:00
await clock.runFor(20);
expect(stub.callCount).toBe(1);
});
it.describe('use of eval when not in node', () => {
it.beforeEach(() => {
globalThis.evalCalled = false;
});
it.afterEach(() => {
delete globalThis.evalCalled.evalCalled;
});
it('evals non-function callbacks', async ({ clock }) => {
clock.setTimeout('globalThis.evalCalled = true', 10);
2024-06-11 09:42:15 -07:00
await clock.runFor(10);
expect(globalThis.evalCalled).toBeTruthy();
});
it('only evals on global scope', async ({ clock }) => {
const x = 15;
try {
clock.setTimeout('x', x);
2024-06-11 09:42:15 -07:00
await clock.runFor(x);
expect(true).toBeFalsy();
} catch (e) {
expect(e).toBeInstanceOf(ReferenceError);
}
});
});
});
2024-06-11 09:42:15 -07:00
it.describe('runFor', () => {
it('triggers immediately without specified delay', async ({ clock }) => {
const stub = createStub();
clock.setTimeout(stub);
2024-06-11 09:42:15 -07:00
await clock.runFor(0);
expect(stub.called).toBeTruthy();
});
it('does not trigger without sufficient delay', async ({ clock }) => {
const stub = createStub();
clock.setTimeout(stub, 100);
2024-06-11 09:42:15 -07:00
await clock.runFor(10);
expect(stub.called).toBeFalsy();
});
it('triggers after sufficient delay', async ({ clock }) => {
const stub = createStub();
clock.setTimeout(stub, 100);
2024-06-11 09:42:15 -07:00
await clock.runFor(100);
expect(stub.called).toBeTruthy();
});
it('triggers simultaneous timers', async ({ clock }) => {
const spies = [createStub(), createStub()];
clock.setTimeout(spies[0], 100);
clock.setTimeout(spies[1], 100);
2024-06-11 09:42:15 -07:00
await clock.runFor(100);
expect(spies[0].called).toBeTruthy();
expect(spies[1].called).toBeTruthy();
});
it('triggers multiple simultaneous timers', async ({ clock }) => {
const spies = [createStub(), createStub(), createStub(), createStub()];
clock.setTimeout(spies[0], 100);
clock.setTimeout(spies[1], 100);
clock.setTimeout(spies[2], 99);
clock.setTimeout(spies[3], 100);
2024-06-11 09:42:15 -07:00
await clock.runFor(100);
expect(spies[0].called).toBeTruthy();
expect(spies[1].called).toBeTruthy();
expect(spies[2].called).toBeTruthy();
expect(spies[3].called).toBeTruthy();
});
it('triggers multiple simultaneous timers with zero callAt', async ({ clock }) => {
const spies = [
createStub(() => {
clock.setTimeout(spies[1], 0);
}),
createStub(),
createStub(),
];
// First spy calls another setTimeout with delay=0
clock.setTimeout(spies[0], 0);
clock.setTimeout(spies[2], 10);
2024-06-11 09:42:15 -07:00
await clock.runFor(10);
expect(spies[0].called).toBeTruthy();
expect(spies[1].called).toBeTruthy();
expect(spies[2].called).toBeTruthy();
});
it('waits after setTimeout was called', async ({ clock }) => {
2024-06-11 09:42:15 -07:00
await clock.runFor(100);
const stub = createStub();
clock.setTimeout(stub, 150);
2024-06-11 09:42:15 -07:00
await clock.runFor(50);
expect(stub.called).toBeFalsy();
2024-06-11 09:42:15 -07:00
await clock.runFor(100);
expect(stub.called).toBeTruthy();
});
it('mini integration test', async ({ clock }) => {
const stubs = [createStub(), createStub(), createStub()];
clock.setTimeout(stubs[0], 100);
clock.setTimeout(stubs[1], 120);
2024-06-11 09:42:15 -07:00
await clock.runFor(10);
await clock.runFor(89);
expect(stubs[0].called).toBeFalsy();
expect(stubs[1].called).toBeFalsy();
clock.setTimeout(stubs[2], 20);
2024-06-11 09:42:15 -07:00
await clock.runFor(1);
expect(stubs[0].called).toBeTruthy();
expect(stubs[1].called).toBeFalsy();
expect(stubs[2].called).toBeFalsy();
2024-06-11 09:42:15 -07:00
await clock.runFor(19);
expect(stubs[1].called).toBeFalsy();
expect(stubs[2].called).toBeTruthy();
2024-06-11 09:42:15 -07:00
await clock.runFor(1);
expect(stubs[1].called).toBeTruthy();
});
it('triggers even when some throw', async ({ clock }) => {
const stubs = [createStub().throws(), createStub()];
clock.setTimeout(stubs[0], 100);
clock.setTimeout(stubs[1], 120);
2024-06-11 09:42:15 -07:00
await expect(clock.runFor(120)).rejects.toThrow();
expect(stubs[0].called).toBeTruthy();
expect(stubs[1].called).toBeTruthy();
});
it('calls function with global object or null (strict mode) as this', async ({ clock }) => {
const stub = createStub().throws();
clock.setTimeout(stub, 100);
2024-06-11 09:42:15 -07:00
await expect(clock.runFor(100)).rejects.toThrow();
expect(stub.calledOn(global) || stub.calledOn(null)).toBeTruthy();
});
it('triggers in the order scheduled', async ({ clock }) => {
const spies = [createStub(), createStub()];
clock.setTimeout(spies[0], 13);
clock.setTimeout(spies[1], 11);
2024-06-11 09:42:15 -07:00
await clock.runFor(15);
expect(spies[1].calledBefore(spies[0])).toBeTruthy();
});
it('creates updated Date while ticking', async ({ clock }) => {
const spy = createStub();
clock.setInterval(() => {
spy(new clock.Date().getTime());
}, 10);
2024-06-11 09:42:15 -07:00
await clock.runFor(100);
expect(spy.callCount).toBe(10);
expect(spy.calledWith(10)).toBeTruthy();
expect(spy.calledWith(20)).toBeTruthy();
expect(spy.calledWith(30)).toBeTruthy();
expect(spy.calledWith(40)).toBeTruthy();
expect(spy.calledWith(50)).toBeTruthy();
expect(spy.calledWith(60)).toBeTruthy();
expect(spy.calledWith(70)).toBeTruthy();
expect(spy.calledWith(80)).toBeTruthy();
expect(spy.calledWith(90)).toBeTruthy();
expect(spy.calledWith(100)).toBeTruthy();
});
it('fires timer in intervals of 13', async ({ clock }) => {
const spy = createStub();
clock.setInterval(spy, 13);
2024-06-11 09:42:15 -07:00
await clock.runFor(500);
expect(spy.callCount).toBe(38);
});
it('fires timer in intervals of "13"', async ({ clock }) => {
const spy = createStub();
// @ts-expect-error
clock.setInterval(spy, '13');
2024-06-11 09:42:15 -07:00
await clock.runFor(500);
expect(spy.callCount).toBe(38);
});
it('fires timers in correct order', async ({ clock }) => {
const spy13 = createStub();
const spy10 = createStub();
clock.setInterval(() => {
spy13(new clock.Date().getTime());
}, 13);
clock.setInterval(() => {
spy10(new clock.Date().getTime());
}, 10);
2024-06-11 09:42:15 -07:00
await clock.runFor(500);
expect(spy13.callCount).toBe(38);
expect(spy10.callCount).toBe(50);
expect(spy13.calledWith(416)).toBeTruthy();
expect(spy10.calledWith(320)).toBeTruthy();
});
it('triggers timeouts and intervals in the order scheduled', async ({ clock }) => {
const spies = [createStub(), createStub()];
clock.setInterval(spies[0], 10);
clock.setTimeout(spies[1], 50);
2024-06-11 09:42:15 -07:00
await clock.runFor(100);
expect(spies[0].calledBefore(spies[1])).toBeTruthy();
expect(spies[0].callCount).toBe(10);
expect(spies[1].callCount).toBe(1);
});
it('does not fire canceled intervals', async ({ clock }) => {
// eslint-disable-next-line prefer-const
let id;
const callback = createStub(() => {
if (callback.callCount === 3)
clock.clearInterval(id);
});
id = clock.setInterval(callback, 10);
2024-06-11 09:42:15 -07:00
await clock.runFor(100);
expect(callback.callCount).toBe(3);
});
it('throws for negative minutes', async ({ clock }) => {
const spy = createStub();
clock.setInterval(spy, 10000);
2024-06-11 09:42:15 -07:00
await expect(clock.runFor(-7)).rejects.toThrow();
expect(spy.callCount).toBe(0);
});
it('fires nested setTimeout calls properly', async ({ clock }) => {
let i = 0;
const callback = () => {
++i;
clock.setTimeout(() => {
callback();
}, 100);
};
callback();
2024-06-11 09:42:15 -07:00
await clock.runFor(1000);
expect(i).toBe(11);
});
it('does not silently catch errors', async ({ clock }) => {
const callback = () => {
throw new Error('oh no!');
};
clock.setTimeout(callback, 1000);
2024-06-11 09:42:15 -07:00
await expect(clock.runFor(1000)).rejects.toThrow();
});
it('is not influenced by forward system clock changes', async ({ clock }) => {
const callback = () => {
2024-06-11 09:42:15 -07:00
clock.setSystemTime(new clock.Date().getTime() + 1000);
};
const stub = createStub();
clock.setTimeout(callback, 1000);
clock.setTimeout(stub, 2000);
2024-06-11 09:42:15 -07:00
await clock.runFor(1990);
expect(stub.callCount).toBe(0);
2024-06-11 09:42:15 -07:00
await clock.runFor(20);
expect(stub.callCount).toBe(1);
});
it('is not influenced by forward system clock changes 2', async ({ clock }) => {
const callback = () => {
2024-06-11 09:42:15 -07:00
clock.setSystemTime(new clock.Date().getTime() - 1000);
};
const stub = createStub();
clock.setTimeout(callback, 1000);
clock.setTimeout(stub, 2000);
2024-06-11 09:42:15 -07:00
await clock.runFor(1990);
expect(stub.callCount).toBe(0);
2024-06-11 09:42:15 -07:00
await clock.runFor(20);
expect(stub.callCount).toBe(1);
});
it('is not influenced by forward system clock changes when an error is thrown', async ({ clock }) => {
const callback = () => {
2024-06-11 09:42:15 -07:00
clock.setSystemTime(new clock.Date().getTime() + 1000);
throw new Error();
};
const stub = createStub();
clock.setTimeout(callback, 1000);
clock.setTimeout(stub, 2000);
2024-06-11 09:42:15 -07:00
await expect(clock.runFor(1990)).rejects.toThrow();
expect(stub.callCount).toBe(0);
2024-06-11 09:42:15 -07:00
await clock.runFor(20);
expect(stub.callCount).toBe(1);
});
it('is not influenced by forward system clock changes when an error is thrown 2', async ({ clock }) => {
const callback = () => {
2024-06-11 09:42:15 -07:00
clock.setSystemTime(new clock.Date().getTime() - 1000);
throw new Error();
};
const stub = createStub();
clock.setTimeout(callback, 1000);
clock.setTimeout(stub, 2000);
2024-06-11 09:42:15 -07:00
await expect(clock.runFor(1990)).rejects.toThrow();
expect(stub.callCount).toBe(0);
2024-06-11 09:42:15 -07:00
await clock.runFor(20);
expect(stub.callCount).toBe(1);
});
it('throws on negative ticks', async ({ clock }) => {
2024-06-11 09:42:15 -07:00
await expect(clock.runFor(-500)).rejects.toThrow('Negative ticks are not supported');
});
it('creates updated Date while ticking promises', async ({ clock }) => {
const spy = createStub();
clock.setInterval(() => {
void Promise.resolve().then(() => {
spy(new clock.Date().getTime());
});
}, 10);
2024-06-11 09:42:15 -07:00
await clock.runFor(100);
expect(spy.callCount).toBe(10);
expect(spy.calledWith(10)).toBeTruthy();
expect(spy.calledWith(20)).toBeTruthy();
expect(spy.calledWith(30)).toBeTruthy();
expect(spy.calledWith(40)).toBeTruthy();
expect(spy.calledWith(50)).toBeTruthy();
expect(spy.calledWith(60)).toBeTruthy();
expect(spy.calledWith(70)).toBeTruthy();
expect(spy.calledWith(80)).toBeTruthy();
expect(spy.calledWith(90)).toBeTruthy();
expect(spy.calledWith(100)).toBeTruthy();
});
it('fires promise timers in correct order', async ({ clock }) => {
const spy13 = createStub();
const spy10 = createStub();
clock.setInterval(() => {
void Promise.resolve().then(() => {
spy13(new clock.Date().getTime());
});
}, 13);
clock.setInterval(() => {
void Promise.resolve().then(() => {
spy10(new clock.Date().getTime());
});
}, 10);
2024-06-11 09:42:15 -07:00
await clock.runFor(500);
expect(spy13.callCount).toBe(38);
expect(spy10.callCount).toBe(50);
expect(spy13.calledWith(416)).toBeTruthy();
expect(spy10.calledWith(320)).toBeTruthy();
});
it('does not fire intervals canceled in a promise', async ({ clock }) => {
// ESLint fails to detect this correctly
/* eslint-disable prefer-const */
let id;
const callback = createStub(() => {
if (callback.callCount === 3) {
void Promise.resolve().then(() => {
clock.clearInterval(id);
});
}
});
id = clock.setInterval(callback, 10);
2024-06-11 09:42:15 -07:00
await clock.runFor(100);
expect(callback.callCount).toBe(3);
});
it('fires nested setTimeout calls in user-created promises properly', async ({ clock }) => {
let i = 0;
const callback = () => {
void Promise.resolve().then(() => {
++i;
clock.setTimeout(() => {
void Promise.resolve().then(() => {
callback();
});
}, 100);
});
};
callback();
2024-06-06 19:26:30 -07:00
// Clock API is async.
await new Promise(setImmediate);
2024-06-11 09:42:15 -07:00
await clock.runFor(1000);
expect(i).toBe(11);
});
it('is not influenced by forward system clock changes in promises', async ({ clock }) => {
const callback = () => {
void Promise.resolve().then(() => {
2024-06-11 09:42:15 -07:00
clock.setSystemTime(new clock.Date().getTime() + 1000);
});
};
const stub = createStub();
clock.setTimeout(callback, 1000);
clock.setTimeout(stub, 2000);
2024-06-11 09:42:15 -07:00
await clock.runFor(1990);
expect(stub.callCount).toBe(0);
2024-06-11 09:42:15 -07:00
await clock.runFor(20);
expect(stub.callCount).toBe(1);
});
it('should settle user-created promises', async ({ clock }) => {
const spy = createStub();
clock.setTimeout(() => {
void Promise.resolve().then(spy);
}, 100);
2024-06-11 09:42:15 -07:00
await clock.runFor(100);
expect(spy.called).toBeTruthy();
});
it('should settle chained user-created promises', async ({ clock }) => {
const spies = [createStub(), createStub(), createStub()];
clock.setTimeout(() => {
void Promise.resolve()
.then(spies[0])
.then(spies[1])
.then(spies[2]);
}, 100);
2024-06-11 09:42:15 -07:00
await clock.runFor(100);
expect(spies[0].called).toBeTruthy();
expect(spies[1].called).toBeTruthy();
expect(spies[2].called).toBeTruthy();
});
it('should settle multiple user-created promises', async ({ clock }) => {
const spies = [createStub(), createStub(), createStub()];
clock.setTimeout(() => {
void Promise.resolve().then(spies[0]);
void Promise.resolve().then(spies[1]);
void Promise.resolve().then(spies[2]);
}, 100);
2024-06-11 09:42:15 -07:00
await clock.runFor(100);
2024-06-06 19:26:30 -07:00
expect(spies[0].called).toBeTruthy();
expect(spies[1].called).toBeTruthy();
expect(spies[2].called).toBeTruthy();
});
2024-06-06 19:26:30 -07:00
it('should settle nested user-created promises', async ({ clock }) => {
const spy = createStub();
clock.setTimeout(() => {
void Promise.resolve().then(() => {
void Promise.resolve().then(() => {
void Promise.resolve().then(spy);
});
});
}, 100);
2024-06-11 09:42:15 -07:00
await clock.runFor(100);
2024-06-06 19:26:30 -07:00
expect(spy.called).toBeTruthy();
});
2024-06-06 19:26:30 -07:00
it('should settle user-created promises even if some throw', async ({ clock }) => {
const spies = [createStub(), createStub(), createStub(), createStub()];
2024-06-06 19:26:30 -07:00
clock.setTimeout(() => {
void Promise.reject().then(spies[0]).catch(spies[1]);
void Promise.resolve().then(spies[2]).catch(spies[3]);
}, 100);
2024-06-11 09:42:15 -07:00
await clock.runFor(100);
2024-06-06 19:26:30 -07:00
expect(spies[0].callCount).toBe(0);
expect(spies[1].called).toBeTruthy();
expect(spies[2].called).toBeTruthy();
expect(spies[3].callCount).toBe(0);
});
2024-06-06 19:26:30 -07:00
it('should settle user-created promises before calling more timeouts', async ({ clock }) => {
const spies = [createStub(), createStub()];
2024-06-06 19:26:30 -07:00
clock.setTimeout(() => {
void Promise.resolve().then(spies[0]);
}, 100);
clock.setTimeout(spies[1], 200);
2024-06-11 09:42:15 -07:00
await clock.runFor(200);
expect(spies[0].calledBefore(spies[1])).toBeTruthy();
});
2024-06-06 19:26:30 -07:00
it('should settle local promises before calling timeouts', async ({ clock }) => {
const spies = [createStub(), createStub()];
void Promise.resolve().then(spies[0]);
clock.setTimeout(spies[1], 100);
2024-06-06 19:26:30 -07:00
// Clock API is async.
await new Promise(setImmediate);
2024-06-11 09:42:15 -07:00
await clock.runFor(100);
2024-06-06 19:26:30 -07:00
expect(spies[0].calledBefore(spies[1])).toBeTruthy();
});
2024-06-06 19:26:30 -07:00
it('should settle local nested promises before calling timeouts', async ({ clock }) => {
const spies = [createStub(), createStub()];
2024-06-06 19:26:30 -07:00
void Promise.resolve().then(() => {
void Promise.resolve().then(() => {
void Promise.resolve().then(spies[0]);
});
});
2024-06-06 19:26:30 -07:00
clock.setTimeout(spies[1], 100);
2024-06-06 19:26:30 -07:00
// Clock API is async.
await new Promise(setImmediate);
2024-06-11 09:42:15 -07:00
await clock.runFor(100);
expect(spies[0].calledBefore(spies[1])).toBeTruthy();
});
});
it.describe('clearTimeout', () => {
it('removes timeout', async ({ clock }) => {
const stub = createStub();
const id = clock.setTimeout(stub, 50);
clock.clearTimeout(id);
2024-06-11 09:42:15 -07:00
await clock.runFor(50);
expect(stub.called).toBeFalsy();
});
it('removes interval', async ({ clock }) => {
const stub = createStub();
const id = clock.setInterval(stub, 50);
clock.clearTimeout(id);
2024-06-11 09:42:15 -07:00
await clock.runFor(50);
expect(stub.called).toBeFalsy();
});
it('removes interval with undefined interval', async ({ clock }) => {
const stub = createStub();
const id = clock.setInterval(stub);
clock.clearTimeout(id);
2024-06-11 09:42:15 -07:00
await clock.runFor(50);
expect(stub.called).toBeFalsy();
});
it('ignores null argument', async ({ clock }) => {
clock.clearTimeout(null);
});
});
it.describe('setInterval', () => {
it('throws if no arguments', async ({ clock }) => {
expect(() => {
// @ts-expect-error
clock.setInterval();
}).toThrow();
});
it('does not throw if |undefined| or |null| is passed as a callback', async ({ clock }) => {
const timerId1 = clock.setInterval(undefined, 10);
const timerId2 = clock.setInterval(null, 10);
await clock.runFor(10);
expect(timerId1).toBeGreaterThan(0);
expect(timerId2).toBeGreaterThan(timerId1);
});
it('returns numeric id or object with numeric id', async ({ clock }) => {
const result = clock.setInterval(() => {}, 10);
expect(result).toBeGreaterThan(0);
});
it('returns unique id', async ({ clock }) => {
const id1 = clock.setInterval(() => {}, 10);
const id2 = clock.setInterval(() => {}, 10);
expect(id2).not.toEqual(id1);
});
it('schedules recurring timeout', async ({ clock }) => {
const stub = createStub();
clock.setInterval(stub, 10);
2024-06-11 09:42:15 -07:00
await clock.runFor(99);
expect(stub.callCount).toBe(9);
});
it('is not influenced by forward system clock changes', async ({ clock }) => {
const stub = createStub();
clock.setInterval(stub, 10);
2024-06-11 09:42:15 -07:00
await clock.runFor(11);
expect(stub.callCount).toBe(1);
2024-06-11 09:42:15 -07:00
clock.setSystemTime(new clock.Date().getTime() + 1000);
await clock.runFor(8);
expect(stub.callCount).toBe(1);
2024-06-11 09:42:15 -07:00
await clock.runFor(3);
expect(stub.callCount).toBe(2);
});
it('is not influenced by backward system clock changes', async ({ clock }) => {
const stub = createStub();
clock.setInterval(stub, 10);
2024-06-11 09:42:15 -07:00
await clock.runFor(5);
clock.setSystemTime(new clock.Date().getTime() - 1000);
await clock.runFor(6);
expect(stub.callCount).toBe(1);
2024-06-11 09:42:15 -07:00
await clock.runFor(10);
expect(stub.callCount).toBe(2);
});
it('does not schedule recurring timeout when cleared', async ({ clock }) => {
const stub = createStub(() => {
if (stub.callCount === 3)
clock.clearInterval(id);
});
const id = clock.setInterval(stub, 10);
2024-06-11 09:42:15 -07:00
await clock.runFor(100);
expect(stub.callCount).toBe(3);
});
it('passes setTimeout parameters', async ({ clock }) => {
const stub = createStub();
clock.setInterval(stub, 2, 'the first', 'the second');
2024-06-11 09:42:15 -07:00
await clock.runFor(3);
expect(stub.calledWithExactly('the first', 'the second')).toBeTruthy();
});
});
it.describe('clearInterval', () => {
it('removes interval', async ({ clock }) => {
const stub = createStub();
const id = clock.setInterval(stub, 50);
clock.clearInterval(id);
2024-06-11 09:42:15 -07:00
await clock.runFor(50);
expect(stub.called).toBeFalsy();
});
it('removes interval with undefined interval', async ({ clock }) => {
const stub = createStub();
const id = clock.setInterval(stub);
clock.clearInterval(id);
2024-06-11 09:42:15 -07:00
await clock.runFor(50);
expect(stub.called).toBeFalsy();
});
it('removes timeout', async ({ clock }) => {
const stub = createStub();
const id = clock.setTimeout(stub, 50);
clock.clearInterval(id);
2024-06-11 09:42:15 -07:00
await clock.runFor(50);
expect(stub.called).toBeFalsy();
});
it('ignores null argument', async ({ clock }) => {
clock.clearInterval(null);
});
});
it.describe('date', () => {
it('provides date constructor', async ({ clock }) => {
expect(clock.Date).toEqual(expect.any(Function));
});
it('creates real Date objects', async ({ clock }) => {
const date = new clock.Date();
expect(Date.prototype.isPrototypeOf(date)).toBeTruthy();
});
it('returns date as string when called as function', async ({ clock }) => {
const date = clock.Date();
expect(typeof date).toBe('string');
});
it('creates Date objects representing clock time', async ({ clock }) => {
const date = new clock.Date();
expect(date.getTime()).toBe(new Date(clock.now()).getTime());
});
it('returns date as string representing clock time', async ({ clock }) => {
const date = clock.Date();
expect(date).toBe(new Date(clock.now()).toString());
});
it('listens to ticking clock', async ({ clock }) => {
const date1 = new clock.Date();
2024-06-11 09:42:15 -07:00
await clock.runFor(3);
const date2 = new clock.Date();
expect(date2.getTime() - date1.getTime()).toBe(3);
});
it('listens to system clock changes', async ({ clock }) => {
const date1 = new clock.Date();
2024-06-11 09:42:15 -07:00
clock.setSystemTime(date1.getTime() + 1000);
const date2 = new clock.Date();
expect(date2.getTime() - date1.getTime()).toBe(1000);
});
it('creates regular date when passing timestamp', async ({ clock }) => {
const date = new Date();
const fakeDate = new clock.Date(date.getTime());
expect(fakeDate.getTime()).toBe(date.getTime());
});
it('creates regular date when passing a date as string', async ({ clock }) => {
const date = new Date();
const fakeDate = new clock.Date(date.toISOString());
expect(fakeDate.getTime()).toBe(date.getTime());
});
it('creates regular date when passing a date as RFC 2822 string', async ({ clock }) => {
const date = new Date('Sat Apr 12 2014 12:22:00 GMT+1000');
const fakeDate = new clock.Date('Sat Apr 12 2014 12:22:00 GMT+1000');
expect(fakeDate.getTime()).toBe(date.getTime());
});
it('creates regular date when passing year, month', async ({ clock }) => {
const date = new Date(2010, 4);
const fakeDate = new clock.Date(2010, 4);
expect(fakeDate.getTime()).toBe(date.getTime());
});
it('creates regular date when passing y, m, d', async ({ clock }) => {
const date = new Date(2010, 4, 2);
const fakeDate = new clock.Date(2010, 4, 2);
expect(fakeDate.getTime()).toBe(date.getTime());
});
it('creates regular date when passing y, m, d, h', async ({ clock }) => {
const date = new Date(2010, 4, 2, 12);
const fakeDate = new clock.Date(2010, 4, 2, 12);
expect(fakeDate.getTime()).toBe(date.getTime());
});
it('creates regular date when passing y, m, d, h, m', async ({ clock }) => {
const date = new Date(2010, 4, 2, 12, 42);
const fakeDate = new clock.Date(2010, 4, 2, 12, 42);
expect(fakeDate.getTime()).toBe(date.getTime());
});
it('creates regular date when passing y, m, d, h, m, s', async ({ clock }) => {
const date = new Date(2010, 4, 2, 12, 42, 53);
const fakeDate = new clock.Date(2010, 4, 2, 12, 42, 53);
expect(fakeDate.getTime()).toBe(date.getTime());
});
it('creates regular date when passing y, m, d, h, m, s, ms', async ({ clock }) => {
const date = new Date(2010, 4, 2, 12, 42, 53, 498);
const fakeDate = new clock.Date(2010, 4, 2, 12, 42, 53, 498);
expect(fakeDate.getTime()).toBe(date.getTime());
});
it('returns date as string when calling with arguments', async ({ clock }) => {
// @ts-expect-error
const fakeDateStr = clock.Date(2010, 4, 2, 12, 42, 53, 498);
expect(fakeDateStr).toBe(new clock.Date().toString());
});
it('returns date as string when calling with timestamp', async ({ clock }) => {
// @ts-expect-error
const fakeDateStr = clock.Date(1);
expect(fakeDateStr).toBe(new clock.Date().toString());
});
it('mirrors native Date.prototype', async ({ clock }) => {
expect(clock.Date.prototype).toEqual(Date.prototype);
});
it('supports now method if present', async ({ clock }) => {
expect(typeof clock.Date.now).toEqual(typeof Date.now);
});
it('returns clock.now()', async ({ clock }) => {
const clock_now = clock.Date.now();
const global_now = Date.now();
expect(clock_now).toBeGreaterThanOrEqual(clock.now());
expect(clock_now).toBeLessThanOrEqual(global_now);
});
it('mirrors parse method', async ({ clock }) => {
expect(clock.Date.parse).toEqual(Date.parse);
});
it('mirrors UTC method', async ({ clock }) => {
expect(clock.Date.UTC).toEqual(Date.UTC);
});
it('mirrors toUTCString method', async ({ clock }) => {
expect(clock.Date.prototype.toUTCString).toEqual(Date.prototype.toUTCString);
});
});
it.describe('stubTimers', () => {
2024-06-06 19:26:30 -07:00
it('returns clock object', async ({ install }) => {
const clock = install();
expect(clock).toEqual(expect.any(Object));
2024-06-11 09:42:15 -07:00
expect(clock.runFor).toEqual(expect.any(Function));
});
2024-06-06 19:26:30 -07:00
it('takes an object parameter', async ({ install }) => {
2024-06-11 09:42:15 -07:00
const clock = install();
expect(clock).toEqual(expect.any(Object));
});
2024-06-06 19:26:30 -07:00
it('sets initial timestamp', async ({ install }) => {
2024-06-11 09:42:15 -07:00
const clock = install(1400);
expect(clock.now()).toBe(1400);
});
2024-06-06 19:26:30 -07:00
it('replaces global setTimeout', async ({ install }) => {
const clock = install();
const stub = createStub();
setTimeout(stub, 1000);
2024-06-11 09:42:15 -07:00
await clock.runFor(1000);
expect(stub.called).toBeTruthy();
});
2024-06-06 19:26:30 -07:00
it('global fake setTimeout should return id', async ({ install }) => {
install();
const stub = createStub();
const to = setTimeout(stub, 1000);
expect(to).toEqual(expect.any(Number));
});
2024-06-06 19:26:30 -07:00
it('replaces global clearTimeout', async ({ install }) => {
const clock = install();
const stub = createStub();
clearTimeout(setTimeout(stub, 1000));
2024-06-11 09:42:15 -07:00
await clock.runFor(1000);
expect(stub.called).toBeFalsy();
});
2024-06-06 19:26:30 -07:00
it('replaces global setInterval', async ({ install }) => {
const clock = install();
const stub = createStub();
setInterval(stub, 500);
2024-06-11 09:42:15 -07:00
await clock.runFor(1000);
expect(stub.callCount).toBe(2);
});
2024-06-06 19:26:30 -07:00
it('replaces global clearInterval', async ({ install }) => {
const clock = install();
const stub = createStub();
clearInterval(setInterval(stub, 500));
2024-06-11 09:42:15 -07:00
await clock.runFor(1000);
expect(stub.called).toBeFalsy();
});
2024-06-06 19:26:30 -07:00
it('replaces global performance.now', async ({ install }) => {
const clock = install();
const prev = performance.now();
2024-06-11 09:42:15 -07:00
await clock.runFor(1000);
const next = performance.now();
expect(next).toBe(1000);
expect(prev).toBe(0);
});
it('replace Event.prototype.timeStamp', async ({ install }) => {
it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/31924' });
const clock = install();
await clock.runFor(1000);
const event1 = new Event('foo');
expect(event1.timeStamp).toBe(1000);
await clock.runFor(1000);
const event2 = new Event('foo');
expect(event2.timeStamp).toBe(2000);
expect(event1.timeStamp).toBe(1000);
});
2024-06-06 19:26:30 -07:00
it('uninstalls global performance.now', async ({ install }) => {
const oldNow = performance.now;
const clock = install();
expect(performance.now).toBe(clock.performance.now);
clock.uninstall();
expect(performance.now).toBe(oldNow);
});
2024-06-06 19:26:30 -07:00
it('should let performance.mark still be callable after install() (#136)', async ({ install }) => {
it.skip(nodeMajorVersion < 20);
install();
expect(() => {
performance.mark('a name');
}).not.toThrow();
});
2024-06-06 19:26:30 -07:00
it('should not alter the global performance properties and methods', async ({ install }) => {
it.skip(nodeMajorVersion < 20);
(Performance.prototype as any).someFunc1 = () => {};
(Performance.prototype as any).someFunc2 = () => {};
(Performance.prototype as any).someFunc3 = () => {};
const clock = install();
expect((performance as any).someFunc1).toEqual(expect.any(Function));
expect((performance as any).someFunc2).toEqual(expect.any(Function));
expect((performance as any).someFunc3).toEqual(expect.any(Function));
clock.uninstall();
delete (Performance.prototype as any).someFunc1;
delete (Performance.prototype as any).someFunc2;
delete (Performance.prototype as any).someFunc3;
});
2024-06-06 19:26:30 -07:00
it('should replace the getEntries, getEntriesByX methods with noops that return []', async ({ install }) => {
it.skip(nodeMajorVersion < 20);
const backupDescriptors = Object.getOwnPropertyDescriptors(Performance);
function noop() {
return ['foo'];
}
for (const propName of ['getEntries', 'getEntriesByName', 'getEntriesByType']) {
Object.defineProperty(Performance.prototype, propName, {
writable: true,
});
}
(Performance.prototype as any).getEntries = noop;
(Performance.prototype as any).getEntriesByName = noop;
(Performance.prototype as any).getEntriesByType = noop;
const clock = install();
expect(performance.getEntries()).toEqual([]);
expect((performance as any).getEntriesByName()).toEqual([]);
expect((performance as any).getEntriesByType()).toEqual([]);
clock.uninstall();
expect(performance.getEntries()).toEqual(['foo']);
expect((performance as any).getEntriesByName()).toEqual(['foo']);
expect((performance as any).getEntriesByType()).toEqual(['foo']);
Object.keys(backupDescriptors).forEach(key => {
Object.defineProperty(Performance.prototype, key, backupDescriptors[key]);
});
});
it.fixme('deletes global property on uninstall if it was inherited onto the global object', ({}) => {
// Give the global object an inherited 'setTimeout' method
const proto = { Date,
setTimeout: () => {},
clearTimeout: () => {},
setInterval: () => {},
clearInterval: () => {},
};
const myGlobal = Object.create(proto);
const { clock } = rawInstall(myGlobal, { now: 0, toFake: ['setTimeout'] });
expect(myGlobal.hasOwnProperty('setTimeout')).toBeTruthy();
clock.uninstall();
expect(myGlobal.hasOwnProperty('setTimeout')).toBeFalsy();
});
it('fakes Date constructor', ({ installEx }) => {
const { originals } = installEx({ now: 0 });
const now = new Date();
expect(Date).not.toBe(originals.Date);
expect(now.getTime()).toBe(0);
});
2024-06-06 19:26:30 -07:00
it(`fake Date constructor should mirror Date's properties`, async ({ clock }) => {
expect(Date).not.toBe(clock.Date);
expect(Date.prototype).toEqual(clock.Date.prototype);
});
2024-06-06 19:26:30 -07:00
it('mirrors custom Date properties', async ({ install }) => {
const f = () => {
return '';
};
(Date as any).format = f;
install();
expect((Date as any).format).toEqual(f);
});
it('uninstalls Date constructor', () => {
const { clock, originals } = rawInstall(globalThis, { now: 0 });
clock.uninstall();
expect(Date).toBe(originals.Date);
});
it('fakes provided methods', ({ installEx }) => {
const { originals } = installEx({ now: 0, toFake: ['setTimeout', 'Date'] });
expect(setTimeout).not.toBe(originals.setTimeout);
expect(Date).not.toBe(originals.Date);
});
2024-06-11 09:42:15 -07:00
it('resets faked methods', async ({ }) => {
const { clock, originals } = rawInstall(globalThis, {
now: 0,
toFake: ['setTimeout', 'Date'],
});
clock.uninstall();
expect(setTimeout).toBe(originals.setTimeout);
expect(Date).toBe(originals.Date);
});
it('does not fake methods not provided', ({ installEx }) => {
const { originals } = installEx({
now: 0,
toFake: ['setTimeout', 'Date'],
});
expect(clearTimeout).toBe(originals.clearTimeout);
expect(setInterval).toBe(originals.setInterval);
expect(clearInterval).toBe(originals.clearInterval);
});
});
it.describe('requestAnimationFrame', () => {
it('throws if no arguments', async ({ clock }) => {
expect(() => {
// @ts-expect-error
clock.requestAnimationFrame();
}).toThrow();
});
it('returns numeric id or object with numeric id', async ({ clock }) => {
const result = clock.requestAnimationFrame(() => {});
expect(result).toEqual(expect.any(Number));
});
it('returns unique id', async ({ clock }) => {
const id1 = clock.requestAnimationFrame(() => {});
const id2 = clock.requestAnimationFrame(() => {});
expect(id2).not.toEqual(id1);
});
it('should run every 16ms', async ({ clock }) => {
const stub = createStub();
clock.requestAnimationFrame(stub);
2024-06-11 09:42:15 -07:00
await clock.runFor(15);
expect(stub.callCount).toBe(0);
2024-06-11 09:42:15 -07:00
await clock.runFor(1);
expect(stub.callCount).toBe(1);
});
it('should be called with performance.now() when available', async ({ clock }) => {
const stub = createStub();
clock.requestAnimationFrame(stub);
2024-06-11 09:42:15 -07:00
await clock.runFor(20);
expect(stub.calledWith(16)).toBeTruthy();
});
it('should be called with performance.now() even when performance unavailable', async ({ clock }) => {
const stub = createStub();
clock.requestAnimationFrame(stub);
2024-06-11 09:42:15 -07:00
await clock.runFor(20);
expect(stub.calledWith(16)).toBeTruthy();
});
it('should call callback once', async ({ clock }) => {
const stub = createStub();
clock.requestAnimationFrame(stub);
2024-06-11 09:42:15 -07:00
await clock.runFor(32);
expect(stub.callCount).toBe(1);
});
it('should schedule two callbacks before the next frame at the same time', async ({ clock }) => {
const stub1 = createStub();
const stub2 = createStub();
clock.requestAnimationFrame(stub1);
2024-06-11 09:42:15 -07:00
await clock.runFor(5);
clock.requestAnimationFrame(stub2);
2024-06-11 09:42:15 -07:00
await clock.runFor(11);
expect(stub1.calledWith(16)).toBeTruthy();
expect(stub2.calledWith(16)).toBeTruthy();
});
it('should properly schedule callback for 3rd frame', async ({ clock }) => {
const stub1 = createStub();
const stub2 = createStub();
clock.requestAnimationFrame(stub1);
2024-06-11 09:42:15 -07:00
await clock.runFor(57);
clock.requestAnimationFrame(stub2);
2024-06-11 09:42:15 -07:00
await clock.runFor(10);
expect(stub1.calledWith(16)).toBeTruthy();
expect(stub2.calledWith(64)).toBeTruthy();
});
2024-06-06 19:26:30 -07:00
it('should schedule for next frame if on current frame', async ({ clock }) => {
const stub = createStub();
2024-06-11 09:42:15 -07:00
await clock.runFor(16);
clock.requestAnimationFrame(stub);
2024-06-11 09:42:15 -07:00
await clock.runFor(16);
expect(stub.calledWith(32)).toBeTruthy();
});
});
it.describe('cancelAnimationFrame', () => {
it('removes animation frame', async ({ clock }) => {
const stub = createStub();
const id = clock.requestAnimationFrame(stub);
clock.cancelAnimationFrame(id);
2024-06-11 09:42:15 -07:00
await clock.runFor(16);
expect(stub.called).toBeFalsy();
});
it('does not remove timeout', async ({ clock }) => {
const stub = createStub();
const id = clock.setTimeout(stub, 50);
expect(() => {
clock.cancelAnimationFrame(id);
}).toThrow();
2024-06-11 09:42:15 -07:00
await clock.runFor(50);
expect(stub.called).toBeTruthy();
});
it('does not remove interval', async ({ clock }) => {
const stub = createStub();
const id = clock.setInterval(stub, 50);
expect(() => {
clock.cancelAnimationFrame(id);
}).toThrow();
2024-06-11 09:42:15 -07:00
await clock.runFor(50);
expect(stub.called).toBeTruthy();
});
it('ignores null argument', async ({ clock }) => {
clock.cancelAnimationFrame(null);
});
});
2024-06-11 09:42:15 -07:00
it.describe('fastForward', () => {
it('ignores timers which wouldn\'t be run', async ({ clock }) => {
const stub = createStub();
clock.setTimeout(stub, 1000);
2024-06-11 09:42:15 -07:00
await clock.fastForward(500);
expect(stub.called).toBeFalsy();
});
it('pushes back execution time for skipped timers', async ({ clock }) => {
const stub = createStub();
clock.setTimeout(() => {
stub(clock.Date.now());
}, 1000);
2024-06-11 09:42:15 -07:00
await clock.fastForward(2000);
expect(stub.callCount).toBe(1);
expect(stub.calledWith(2000)).toBeTruthy();
});
it('handles multiple pending timers and types', async ({ clock }) => {
const longTimers = [createStub(), createStub()];
const shortTimers = [createStub(), createStub(), createStub()];
clock.setTimeout(longTimers[0], 2000);
clock.setInterval(longTimers[1], 2500);
clock.setTimeout(shortTimers[0], 250);
clock.setInterval(shortTimers[1], 100);
clock.requestAnimationFrame(shortTimers[2]);
2024-06-11 09:42:15 -07:00
await clock.fastForward(1500);
expect(longTimers[0].called).toBeFalsy();
expect(longTimers[1].called).toBeFalsy();
expect(shortTimers[0].callCount).toBe(1);
expect(shortTimers[1].callCount).toBe(1);
expect(shortTimers[2].callCount).toBe(1);
});
});
it.describe('pauseAt', () => {
it('pause at target time', async ({ clock }) => {
clock.install(0);
await clock.pauseAt(1000);
expect(clock.Date.now()).toBe(1000);
});
it('fire target timers', async ({ clock }) => {
clock.install(0);
const stub = createStub();
clock.setTimeout(stub, 1000);
clock.setTimeout(stub, 1001);
await clock.pauseAt(1000);
expect(stub.callCount).toBe(1);
});
it('returns consumed clicks', async ({ clock }) => {
const now = Date.now();
clock.install(now);
const consumedTicks = await clock.pauseAt(now + 1000 * 60 * 60 * 24);
expect(consumedTicks).toBe(1000 * 60 * 60 * 24);
});
});
it.describe('performance.now()', () => {
it('should start at 0', async ({ clock }) => {
const result = clock.performance.now();
expect(result).toBe(0);
});
it('should run along with clock.tick', async ({ clock }) => {
2024-06-11 09:42:15 -07:00
await clock.runFor(5000);
const result = clock.performance.now();
expect(result).toBe(5000);
});
it('should listen to multiple ticks in performance.now', async ({ clock }) => {
for (let i = 0; i < 10; i++) {
const next = clock.performance.now();
expect(next).toBe(1000 * i);
2024-06-11 09:42:15 -07:00
await clock.runFor(1000);
}
});
it('should run with ticks with timers set', async ({ clock }) => {
clock.setTimeout(() => {
const result = clock.performance.now();
expect(result).toBe(2500);
}, 2500);
2024-06-11 09:42:15 -07:00
await clock.runFor(5000);
});
});
it.describe('requestIdleCallback', () => {
it('throws if no arguments', async ({ clock }) => {
expect(() => {
// @ts-expect-error
clock.requestIdleCallback();
}).toThrow();
});
it('returns numeric id', async ({ clock }) => {
const result = clock.requestIdleCallback(() => {});
expect(result).toEqual(expect.any(Number));
});
it('returns unique id', async ({ clock }) => {
const id1 = clock.requestIdleCallback(() => {});
const id2 = clock.requestIdleCallback(() => {});
expect(id2).not.toEqual(id1);
});
it('runs after all timers', async ({ clock }) => {
const stub = createStub();
clock.requestIdleCallback(stub);
2024-06-11 09:42:15 -07:00
await clock.runFor(1000);
expect(stub.called).toBeTruthy();
const idleCallbackArg = stub.firstCall.args[0];
expect(idleCallbackArg.didTimeout).toBeFalsy();
expect(idleCallbackArg.timeRemaining()).toBe(0);
});
it('runs no later than timeout option even if there are any timers', async ({ clock }) => {
const stub = createStub();
clock.setTimeout(() => {}, 10);
clock.setTimeout(() => {}, 30);
clock.requestIdleCallback(stub, { timeout: 20 });
2024-06-11 09:42:15 -07:00
await clock.runFor(20);
expect(stub.called).toBeTruthy();
});
it(`doesn't runs if there are any timers and no timeout option`, async ({ clock }) => {
const stub = createStub();
clock.setTimeout(() => {}, 30);
clock.requestIdleCallback(stub);
2024-06-11 09:42:15 -07:00
await clock.runFor(35);
expect(stub.called).toBeFalsy();
});
});
it.describe('cancelIdleCallback', () => {
it('removes idle callback', async ({ clock }) => {
const stub = createStub();
const callbackId = clock.requestIdleCallback(stub, { timeout: 0 });
clock.cancelIdleCallback(callbackId);
2024-06-11 09:42:15 -07:00
await clock.runFor(0);
expect(stub.called).toBeFalsy();
});
});
it.describe('Intl API', () => {
function isFirstOfMonth(ianaTimeZone, timestamp?: number) {
return (
new Intl.DateTimeFormat(undefined, { timeZone: ianaTimeZone })
.formatToParts(timestamp)
.find(part => part.type === 'day').value === '1'
);
}
it('Executes formatRange like normal', async ({ clock }) => {
const start = new Date(Date.UTC(2020, 0, 1, 0, 0));
const end = new Date(Date.UTC(2020, 0, 1, 0, 1));
const options: Intl.DateTimeFormatOptions = {
timeZone: 'UTC',
hour12: false,
hour: 'numeric',
minute: 'numeric',
};
expect(
new Intl.DateTimeFormat('en-GB', options).formatRange(start, end),
).toBe('00:0000:01');
});
it('Executes formatRangeToParts like normal', async ({ clock }) => {
const start = new Date(Date.UTC(2020, 0, 1, 0, 0));
const end = new Date(Date.UTC(2020, 0, 1, 0, 1));
const options: Intl.DateTimeFormatOptions = {
timeZone: 'UTC',
hour12: false,
hour: 'numeric',
minute: 'numeric',
};
expect(new Intl.DateTimeFormat('en-GB', options).formatRangeToParts(start, end)).toEqual([
{ type: 'hour', value: '00', source: 'startRange' },
{ type: 'literal', value: ':', source: 'startRange' },
{ type: 'minute', value: '00', source: 'startRange' },
{ type: 'literal', value: '', source: 'shared' },
{ type: 'hour', value: '00', source: 'endRange' },
{ type: 'literal', value: ':', source: 'endRange' },
{ type: 'minute', value: '01', source: 'endRange' },
]);
});
it('Executes resolvedOptions like normal', async ({ clock }) => {
const options: Intl.DateTimeFormatOptions = {
timeZone: 'UTC',
hour12: false,
hour: '2-digit',
minute: '2-digit',
};
expect(new Intl.DateTimeFormat('en-GB', options).resolvedOptions()).toEqual({
locale: 'en-GB',
calendar: 'gregory',
numberingSystem: 'latn',
timeZone: 'UTC',
hour12: false,
hourCycle: 'h23',
hour: '2-digit',
minute: '2-digit',
});
});
it('formatToParts via isFirstOfMonth -> Returns true when passed a timestamp argument that is first of the month', async ({ clock }) => {
// June 1 04:00 UTC - Toronto is June 1 00:00
expect(isFirstOfMonth('America/Toronto', Date.UTC(2022, 5, 1, 4))).toBeTruthy();
});
it('formatToParts via isFirstOfMonth -> Returns false when passed a timestamp argument that is not first of the month', async ({ clock }) => {
// June 1 00:00 UTC - Toronto is May 31 20:00
expect(isFirstOfMonth('America/Toronto', Date.UTC(2022, 5, 1))).toBeFalsy();
});
it('formatToParts via isFirstOfMonth -> Returns true when passed no timestamp and system time is first of the month', async ({ install }) => {
// June 1 04:00 UTC - Toronto is June 1 00:00
2024-06-11 09:42:15 -07:00
install(Date.UTC(2022, 5, 1, 4));
expect(isFirstOfMonth('America/Toronto')).toBeTruthy();
});
it('formatToParts via isFirstOfMonth -> Returns false when passed no timestamp and system time is not first of the month', async ({ install }) => {
// June 1 00:00 UTC - Toronto is May 31 20:00
2024-06-11 09:42:15 -07:00
install(Date.UTC(2022, 5, 1));
expect(isFirstOfMonth('America/Toronto')).toBeFalsy();
});
it('Executes supportedLocalesOf like normal', async ({ installEx }) => {
const { originals } = installEx();
expect(Intl.DateTimeFormat.supportedLocalesOf([])).toEqual(
originals.Intl.DateTimeFormat.supportedLocalesOf([]),
);
});
it('Creates a RelativeTimeFormat like normal', async ({ clock }) => {
const rtf = new Intl.RelativeTimeFormat('en-GB', {
numeric: 'auto',
});
expect(rtf.format(2, 'day')).toBe('in 2 days');
});
});
it('works with concurrent runFor calls', async ({ clock }) => {
clock.setSystemTime(0);
const log: string[] = [];
for (let t = 500; t > 0; t -= 100) {
clock.setTimeout(() => {
log.push(`${t}: ${clock.Date.now()}`);
clock.setTimeout(() => {
log.push(`${t}+0: ${clock.Date.now()}`);
}, 0);
}, t);
}
await Promise.all([
clock.runFor(500),
clock.runFor(600),
]);
expect(log).toEqual([
`100: 100`,
`100+0: 101`,
`200: 200`,
`200+0: 201`,
`300: 300`,
`300+0: 301`,
`400: 400`,
`400+0: 401`,
`500: 500`,
`500+0: 501`,
]);
});
it('works with slow setTimeout in busy embedder', async ({ installEx }) => {
const { originals, api, clock } = installEx({ now: 0 });
await clock.pauseAt(0);
const log: string[] = [];
api.setTimeout(() => {
log.push(`100: ${api.Date.now()}`);
api.setTimeout(() => {
log.push(`100+10: ${api.Date.now()}`);
}, 10);
}, 100);
api.setTimeout(() => log.push(`200: ${api.Date.now()}`), 200);
api.setTimeout(() => log.push(`300: ${api.Date.now()}`), 300);
api.setTimeout(() => log.push(`400: ${api.Date.now()}`), 400);
(clock as any)._embedder.setTimeout = (task, timeout) => {
const timerId = originals.setTimeout(task, (timeout || 0) + 200);
return () => originals.clearTimeout(timerId);
};
await clock.runFor(500);
expect(log).toEqual([
`100: 100`,
`100+10: 110`,
`200: 200`,
`300: 300`,
`400: 400`,
]);
});
it('works with slow setTimeout in busy embedder when not paused', async ({ installEx }) => {
const { originals, api, clock } = installEx({ now: 0 });
clock.setSystemTime(0);
const log: string[] = [];
api.setTimeout(() => {
log.push(`200: ${api.Date.now()}`);
api.setTimeout(() => {
log.push(`200+10: ${api.Date.now()}`);
}, 10);
}, 200);
api.setTimeout(() => log.push(`400: ${api.Date.now()}`), 400);
api.setTimeout(() => log.push(`600: ${api.Date.now()}`), 600);
api.setTimeout(() => log.push(`800: ${api.Date.now()}`), 800);
(clock as any)._embedder.setTimeout = (task, timeout) => {
const timerId = originals.setTimeout(task, timeout === undefined ? 300 : timeout);
return () => originals.clearTimeout(timerId);
};
await clock.runFor(5000);
expect(log).toEqual([
`200: 200`,
`200+10: 210`,
`400: 400`,
`600: 600`,
`800: 800`,
]);
});
interface Stub {
called: boolean;
callCount: number;
calls: { receiver: any, args: any[], time: bigint }[];
firstCall: { args: any[] } | undefined;
calledOn: (thisObj: any) => boolean;
calledBefore: (other: Stub) => boolean;
calledWithExactly: (...args: any[]) => void;
calledWith(arg: any): void;
(...args: any[]): void;
throws: () => Stub;
}
const createStub = (body?: () => void): Stub => {
const allFirstArgs = new Set<any>();
const stub: Stub = function(...args: any[]) {
stub.calls.push({ receiver: this, args, time: process.hrtime.bigint() });
allFirstArgs.add(args[0]);
if (body)
body();
} as any;
stub.calls = [];
const stubAny = stub as any;
stubAny.__defineGetter__('callCount', () => stub.calls.length);
stubAny.__defineGetter__('called', () => stub.calls.length > 0);
stubAny.__defineGetter__('firstCall', () => stub.calls[0]);
stub.calledOn = thisObj => stub.calls[0].receiver === thisObj;
stub.calledWithExactly = (...args) => {
expect(stub.calls[0].args).toEqual(args);
return true;
};
stub.calledWith = arg => {
expect(allFirstArgs).toContain(arg);
return true;
};
stub.calledBefore = other => {
expect(other.calls[0].time).toBeGreaterThan(stub.calls[0].time);
return true;
};
stub.throws = () => createStub(() => { throw new Error(''); });
return stub;
};
const nodeMajorVersion = +process.versions.node.split('.')[0];