Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit cbf06a5

Browse files
committed
feat(mocks): make $timeout#flush throw an exception when empty
When calling $timeout.flush with or without a delay an exception should be thrown if there is nothing to be flushed. This prevents tests from flushing stuff unnecessarily. BREAKING CHANGE: calling $timeout.flush(delay) when there is no task to be flushed within the delay throws an exception now. Please adjust the delay or remove the flush call from your tests as the exception is a signed of a programming error.
1 parent 9270050 commit cbf06a5

File tree

3 files changed

+64
-35
lines changed

3 files changed

+64
-35
lines changed

src/ngMock/angular-mocks.js

+11-2
Original file line numberDiff line numberDiff line change
@@ -104,19 +104,28 @@ angular.mock.$Browser = function() {
104104
* @param {number=} number of milliseconds to flush. See {@link #defer.now}
105105
*/
106106
self.defer.flush = function(delay) {
107+
var flushedSomething = false;
108+
107109
if (angular.isDefined(delay)) {
108110
self.defer.now += delay;
109111
} else {
110112
if (self.deferredFns.length) {
111113
self.defer.now = self.deferredFns[self.deferredFns.length-1].time;
112-
} else {
113-
throw Error('No deferred tasks to be flushed');
114114
}
115115
}
116116

117117
while (self.deferredFns.length && self.deferredFns[0].time <= self.defer.now) {
118+
flushedSomething = true;
118119
self.deferredFns.shift().fn();
119120
}
121+
122+
if (!flushedSomething) {
123+
if (angular.isUndefined(delay)) {
124+
throw Error('No deferred tasks to be flushed!');
125+
} else {
126+
throw Error('No deferred tasks with delay up to ' + delay + 'ms to be flushed!')
127+
}
128+
}
120129
};
121130

122131
/**

test/ng/timeoutSpec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ describe('$timeout', function() {
1414
$browser.defer.flush();
1515
expect(counter).toBe(1);
1616

17-
expect(function() {$browser.defer.flush();}).toThrow('No deferred tasks to be flushed');
17+
expect(function() {$browser.defer.flush();}).toThrow('No deferred tasks to be flushed!');
1818
expect(counter).toBe(1);
1919
}));
2020

test/ngMock/angular-mocksSpec.js

+52-32
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ describe('ngMock', function() {
319319
browser.defer(logFn('B'), 2);
320320
browser.defer(logFn('C'), 3);
321321

322-
browser.defer.flush(0);
322+
expect(function() {browser.defer.flush(0);}).toThrow('No deferred tasks with delay up to 0ms to be flushed!');
323323
expect(browser.defer.now).toEqual(0);
324324
expect(log).toEqual('');
325325

@@ -333,7 +333,15 @@ describe('ngMock', function() {
333333
});
334334

335335
it('should throw an exception if there is nothing to be flushed', function() {
336-
expect(function() {browser.defer.flush();}).toThrow('No deferred tasks to be flushed');
336+
expect(function() {browser.defer.flush();}).toThrow('No deferred tasks to be flushed!');
337+
});
338+
339+
it('should throw an exception if there is nothing to be flushed within the delay provided', function() {
340+
browser.defer(logFn('A'), 1);
341+
expect(function() {browser.defer.flush(0);}).toThrow('No deferred tasks with delay up to 0ms to be flushed!');
342+
343+
browser.defer.flush(1);
344+
expect(log).toEqual('A;');
337345
});
338346
});
339347

@@ -364,52 +372,45 @@ describe('ngMock', function() {
364372

365373

366374
describe('$timeout', function() {
367-
it('should expose flush method that will flush the pending queue of tasks', inject(
368-
function($timeout) {
369-
var logger = [],
370-
logFn = function(msg) { return function() { logger.push(msg) }};
375+
var log, $timeout;
371376

372-
$timeout(logFn('t1'));
373-
$timeout(logFn('t2'), 200);
374-
$timeout(logFn('t3'));
375-
expect(logger).toEqual([]);
377+
beforeEach(module(provideLog));
376378

377-
$timeout.flush();
378-
expect(logger).toEqual(['t1', 't3', 't2']);
379+
beforeEach(inject(function(_log_, _$timeout_) {
380+
log = _log_;
381+
$timeout = _$timeout_;
379382
}));
380383

381384

382-
it('should throw an exception when not flushed', inject(function($timeout){
383-
$timeout(noop);
384-
385-
var expectedError = 'Deferred tasks to flush (1): {id: 0, time: 0}';
386-
expect(function() {$timeout.verifyNoPendingTasks();}).toThrow(expectedError);
387-
}));
385+
it('should expose flush method that will flush the pending queue of tasks', function() {
388386

389387

390-
it('should do nothing when all tasks have been flushed', inject(function($timeout) {
391-
$timeout(noop);
388+
$timeout(log.fn('t1'));
389+
$timeout(log.fn('t2'), 200);
390+
$timeout(log.fn('t3'));
391+
expect(log).toEqual([]);
392392

393393
$timeout.flush();
394-
expect(function() {$timeout.verifyNoPendingTasks();}).not.toThrow();
395-
}));
394+
expect(log).toEqual(['t1', 't3', 't2']);
395+
});
396396

397397

398-
it('should check against the delay if provided within timeout', inject(function($timeout) {
399-
$timeout(noop, 100);
398+
it('should flush tasks only up to a delay if flush delay is provided', function() {
399+
$timeout(log.fn('t1'), 100);
400400
$timeout.flush(100);
401-
expect(function() {$timeout.verifyNoPendingTasks();}).not.toThrow();
401+
expect(log).toEqual(['t1']);
402402

403-
$timeout(noop, 1000);
404-
$timeout.flush(100);
405-
expect(function() {$timeout.verifyNoPendingTasks();}).toThrow();
403+
$timeout(log.fn('t2'), 1000);
404+
expect(function() {$timeout.flush(100);}).toThrow();
405+
expect(log).toEqual(['t1']);
406406

407407
$timeout.flush(900);
408-
expect(function() {$timeout.verifyNoPendingTasks();}).not.toThrow();
409-
}));
408+
expect(log).toEqual(['t1', 't2']);
409+
expect(function() {$timeout.flush();}).toThrow();
410+
});
410411

411412

412-
it('should assert against the delay value', inject(function($timeout) {
413+
it('should assert against the delay value', function() {
413414
var count = 0;
414415
var iterate = function() {
415416
count++;
@@ -421,7 +422,26 @@ describe('ngMock', function() {
421422
expect(count).toBe(1);
422423
$timeout.flushNext(123);
423424
expect(count).toBe(2);
424-
}));
425+
});
426+
427+
428+
describe('verifyNoPendingTasks', function() {
429+
430+
it('should throw an exception when not flushed', function() {
431+
$timeout(noop);
432+
433+
var expectedError = 'Deferred tasks to flush (1): {id: 0, time: 0}';
434+
expect(function() {$timeout.verifyNoPendingTasks();}).toThrow(expectedError);
435+
});
436+
437+
438+
it('should do nothing when all tasks have been flushed', function() {
439+
$timeout(noop);
440+
441+
$timeout.flush();
442+
expect(function() {$timeout.verifyNoPendingTasks();}).not.toThrow();
443+
});
444+
});
425445
});
426446

427447

0 commit comments

Comments
 (0)