Skip to content

Commit

Permalink
fix(zone.js): make sure fakeasync use the same id pool with native
Browse files Browse the repository at this point in the history
Close angular#54323

fakeAsync should use the same timerId pool with native, so they will not
conflict.
  • Loading branch information
JiaLiPassion committed Mar 26, 2024
1 parent ee3bb81 commit b157845
Showing 1 changed file with 22 additions and 3 deletions.
25 changes: 22 additions & 3 deletions packages/zone.js/lib/zone-spec/fake-async-test.ts
Expand Up @@ -66,11 +66,16 @@ let patchedTimers: {
setInterval: typeof setInterval,
clearTimeout: typeof clearTimeout,
clearInterval: typeof clearInterval,
nativeSetTimeout: typeof setTimeout,
nativeClearTimeout: typeof clearTimeout,
}|undefined;

const timeoutCallback = function() {};

class Scheduler {
// Next scheduler id.
public static nextId: number = 1;
public static nextNodeJSId: number = 1;
public static nextId: number = Scheduler.getNextId();

// Scheduler queue with the tuple of end time and callback function - sorted by end time.
private _schedulerQueue: ScheduledFunction[] = [];
Expand All @@ -83,6 +88,17 @@ class Scheduler {

constructor() {}

static getNextId() {
const id = patchedTimers!.nativeSetTimeout.call(global, timeoutCallback, 0);
patchedTimers!.nativeClearTimeout.call(global, id);
if (typeof id === 'number') {
return id;
}
// in NodeJS, we just use a number for fakeAsync, since it will not
// conflict with native TimeoutId
return Scheduler.nextNodeJSId++;
}

getCurrentTickTime() {
return this._currentTickTime;
}
Expand Down Expand Up @@ -116,7 +132,8 @@ class Scheduler {
},
...options
};
let currentId = options.id! < 0 ? Scheduler.nextId++ : options.id!;
let currentId = options.id! < 0 ? Scheduler.nextId : options.id!;
Scheduler.nextId = Scheduler.getNextId();
let endTime = this._currentTickTime + delay;

// Insert so that scheduler queue remains sorted by end time.
Expand Down Expand Up @@ -877,6 +894,8 @@ export function patchFakeAsyncTest(Zone: ZoneType): void {
setTimeout: global.setTimeout,
setInterval: global.setInterval,
clearTimeout: global.clearTimeout,
clearInterval: global.clearInterval
clearInterval: global.clearInterval,
nativeSetTimeout: global[Zone.__symbol__('setTimeout')],
nativeClearTimeout: global[Zone.__symbol__('clearTimeout')],
};
}

0 comments on commit b157845

Please sign in to comment.