使用 RxJs 4.x,您可以在 TestScheduler 上调用 advanceBy。TestScheduler 可以在安装过程中注入。我写了一篇关于它的博客文章。
这是示例。
var throttleWindowDuration = 2 * 1000; /* 2 seconds */
function throttleTest() {
var unthrottledStream = new Rx.Subject();
var source = unthrottledStream.throttle(throttleWindowDuration);
var result = {
emitCounter: 0,
unthrottledStream
};
var subscription = source.subscribe(
function() {
result.emitCounter++;
});
return result;
}
describe('run with test scheduler', function() {
var testScheduler;
var throttleSpy;
beforeAll(function() {
testScheduler = new Rx.TestScheduler();
var originalThrottle = Rx.Observable.prototype.throttle;
throttleSpy = spyOn(Rx.Observable.prototype, 'throttle')
.and.callFake(function(dueTime) {
return originalThrottle.call(this, dueTime, testScheduler);
});
});
afterAll(function() {
throttleSpy.and.callThrough();
});
it('advancing testScheduler allows to test throttling synchronously', function() {
var throttleTestResult = throttleTest();
//throttled stream will not emit if scheduler clock is at zero
testScheduler.advanceBy(1);
throttleTestResult.unthrottledStream.onNext();
throttleTestResult.unthrottledStream.onNext();
throttleTestResult.unthrottledStream.onNext();
testScheduler.advanceBy(throttleWindowDuration);
throttleTestResult.unthrottledStream.onNext();
throttleTestResult.unthrottledStream.onNext();
testScheduler.advanceBy(throttleWindowDuration);
throttleTestResult.unthrottledStream.onNext();
testScheduler.advanceBy(throttleWindowDuration);
throttleTestResult.unthrottledStream.onNext();
expect(throttleTestResult.emitCounter).toBe(4);
});
});
describe('run without test scheduler', function() {
it('without test scheduler the emit counter will stay at 1 '
+ 'as throttle duration is not elapsed', function() {
var throttleTestResult = throttleTest();
throttleTestResult.unthrottledStream.onNext();
throttleTestResult.unthrottledStream.onNext();
throttleTestResult.unthrottledStream.onNext();
throttleTestResult.unthrottledStream.onNext();
expect(throttleTestResult.emitCounter).toBe(1);
});
});
使用 RxJs 5,一切都变得简单多了。您可以像测试其他 JavaScript 基于时间的操作一样简单地使用 jasmine.clock。我已经在我的博客文章中展示了解决方案