123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- // Copyright 2006 The Closure Library Authors. All Rights Reserved.
- //
- // 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.
- goog.provide('goog.async.ThrottleTest');
- goog.setTestOnly('goog.async.ThrottleTest');
- goog.require('goog.async.Throttle');
- goog.require('goog.testing.MockClock');
- goog.require('goog.testing.jsunit');
- function testThrottle() {
- var clock = new goog.testing.MockClock(true);
- var callBackCount = 0;
- var callBackFunction = function() { callBackCount++; };
- var throttle = new goog.async.Throttle(callBackFunction, 100);
- assertEquals(0, callBackCount);
- throttle.fire();
- assertEquals(1, callBackCount);
- throttle.fire();
- assertEquals(1, callBackCount);
- throttle.fire();
- throttle.fire();
- assertEquals(1, callBackCount);
- clock.tick(101);
- assertEquals(2, callBackCount);
- clock.tick(101);
- assertEquals(2, callBackCount);
- throttle.fire();
- assertEquals(3, callBackCount);
- throttle.fire();
- assertEquals(3, callBackCount);
- throttle.stop();
- clock.tick(101);
- assertEquals(3, callBackCount);
- throttle.fire();
- assertEquals(4, callBackCount);
- clock.tick(101);
- assertEquals(4, callBackCount);
- throttle.fire();
- throttle.fire();
- assertEquals(5, callBackCount);
- throttle.pause();
- throttle.resume();
- assertEquals(5, callBackCount);
- throttle.pause();
- clock.tick(101);
- assertEquals(5, callBackCount);
- throttle.resume();
- assertEquals(6, callBackCount);
- clock.tick(101);
- assertEquals(6, callBackCount);
- throttle.pause();
- throttle.fire();
- assertEquals(6, callBackCount);
- clock.tick(101);
- assertEquals(6, callBackCount);
- throttle.resume();
- assertEquals(7, callBackCount);
- throttle.pause();
- throttle.pause();
- clock.tick(101);
- throttle.fire();
- throttle.resume();
- assertEquals(7, callBackCount);
- throttle.resume();
- assertEquals(8, callBackCount);
- throttle.pause();
- throttle.pause();
- throttle.fire();
- throttle.resume();
- clock.tick(101);
- assertEquals(8, callBackCount);
- throttle.resume();
- assertEquals(9, callBackCount);
- clock.uninstall();
- }
- function testThrottleScopeBinding() {
- var interval = 500;
- var mockClock = new goog.testing.MockClock(true);
- var x = {'y': 0};
- new goog.async.Throttle(function() { ++this['y']; }, interval, x).fire();
- assertEquals(1, x['y']);
- mockClock.uninstall();
- }
- function testThrottleArgumentBinding() {
- var interval = 500;
- var mockClock = new goog.testing.MockClock(true);
- var calls = 0;
- var throttle = new goog.async.Throttle(function(a, b, c) {
- ++calls;
- assertEquals(3, a);
- assertEquals('string', b);
- assertEquals(false, c);
- }, interval);
- throttle.fire(3, 'string', false);
- assertEquals(1, calls);
- // fire should always pass the last arguments passed to it into the decorated
- // function, even if called multiple times.
- throttle.fire();
- mockClock.tick(interval / 2);
- throttle.fire(8, null, true);
- throttle.fire(3, 'string', false);
- mockClock.tick(interval);
- assertEquals(2, calls);
- mockClock.uninstall();
- }
- function testThrottleArgumentAndScopeBinding() {
- var interval = 500;
- var mockClock = new goog.testing.MockClock(true);
- var x = {'calls': 0};
- var throttle = new goog.async.Throttle(function(a, b, c) {
- ++this['calls'];
- assertEquals(3, a);
- assertEquals('string', b);
- assertEquals(false, c);
- }, interval, x);
- throttle.fire(3, 'string', false);
- assertEquals(1, x['calls']);
- // fire should always pass the last arguments passed to it into the decorated
- // function, even if called multiple times.
- throttle.fire();
- mockClock.tick(interval / 2);
- throttle.fire(8, null, true);
- throttle.fire(3, 'string', false);
- mockClock.tick(interval);
- assertEquals(2, x['calls']);
- mockClock.uninstall();
- }
|