blob: 1cc20c8f1786aecd772b9bbb6026008cf7f75215 [file] [log] [blame]
Matteo Scandolofb46ae62017-08-08 09:10:50 -07001
2/*
3 * Copyright 2017-present Open Networking Foundation
4
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8
9 * http://www.apache.org/licenses/LICENSE-2.0
10
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18
Matteo Scandoloba0d92e2017-03-02 16:47:46 -080019import * as angular from 'angular';
20import 'angular-mocks';
21import 'angular-ui-router';
22import {XosDebouncer, IXosDebouncer} from './debounce.helper';
23
24let service: IXosDebouncer;
25
26describe('The XosDebouncer service', () => {
27
28 beforeEach(() => {
29 angular
30 .module('test', ['toastr'])
31 .service('XosDebouncer', XosDebouncer);
32 angular.mock.module('test');
33 });
34
35 beforeEach(angular.mock.inject((
36 XosDebouncer: IXosDebouncer,
37 ) => {
38 service = XosDebouncer;
39 }));
40
41 it('should call a function only after it has not been called for 500ms', (done) => {
42 const spy = jasmine.createSpy('fn');
Matteo Scandolo968e7f22017-03-03 11:49:18 -080043 const efficientSpy = service.debounce(spy, 500, this, false);
Matteo Scandoloba0d92e2017-03-02 16:47:46 -080044 /* tslint:disable */
45 efficientSpy();
46 efficientSpy();
47 /* tslint:enable */
48 expect(spy).not.toHaveBeenCalled();
49 setTimeout(() => {
50 expect(spy).toHaveBeenCalled();
51 done();
52 }, 600);
53 });
54});
55