forked from angular/angular.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrafSpec.js
200 lines (155 loc) · 5.01 KB
/
rafSpec.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
'use strict';
describe('$$rAF', function() {
it('should queue and block animation frames', inject(function($$rAF) {
if (!$$rAF.supported) return;
var message;
$$rAF(function() {
message = 'yes';
});
expect(message).toBeUndefined();
$$rAF.flush();
expect(message).toBe('yes');
}));
it('should provide a cancellation method', inject(function($$rAF) {
if (!$$rAF.supported) return;
var present = true;
var cancel = $$rAF(function() {
present = false;
});
expect(present).toBe(true);
cancel();
try {
$$rAF.flush();
} catch (e) {}
expect(present).toBe(true);
}));
it('should only consume only one RAF if multiple async functions are registered before the first frame kicks in', inject(function($$rAF) {
if (!$$rAF.supported) return;
//we need to create our own injector to work around the ngMock overrides
var rafLog = [];
var injector = createInjector(['ng', function($provide) {
$provide.value('$window', {
location: window.location,
history: window.history,
webkitRequestAnimationFrame: function(fn) {
rafLog.push(fn);
}
});
}]);
$$rAF = injector.get('$$rAF');
var log = [];
function logFn() {
log.push(log.length);
}
$$rAF(logFn);
$$rAF(logFn);
$$rAF(logFn);
expect(log).toEqual([]);
expect(rafLog.length).toBe(1);
rafLog[0]();
expect(log).toEqual([0,1,2]);
expect(rafLog.length).toBe(1);
$$rAF(logFn);
expect(log).toEqual([0,1,2]);
expect(rafLog.length).toBe(2);
}));
it('should buffer repeated calls to RAF into segments denoted by a limit which is placed on the provider', inject(function($$rAF) {
if (!$$rAF.supported) return;
var BUFFER_LIMIT = 5;
//we need to create our own injector to work around the ngMock overrides
var rafLog = [];
var injector = createInjector(['ng', function($provide, $$rAFProvider) {
$$rAFProvider.$$bufferLimit = BUFFER_LIMIT;
$provide.value('$window', {
location: window.location,
history: window.history,
webkitCancelAnimationFrame: noop,
webkitRequestAnimationFrame: function(fn) {
rafLog.push(fn);
}
});
}]);
$$rAF = injector.get('$$rAF');
var log = [];
function logFn() {
log.push(log.length);
}
for (var i = 0; i < 8; i++) {
$$rAF(logFn);
}
expect(log).toEqual([]);
expect(rafLog.length).toBe(2);
$$rAF(logFn);
expect(rafLog.length).toBe(2);
$$rAF(logFn);
expect(rafLog.length).toBe(2);
$$rAF(logFn);
expect(rafLog.length).toBe(3);
rafLog.shift()();
expect(log).toEqual([0,1,2,3,4]);
rafLog.shift()();
expect(log).toEqual([0,1,2,3,4,5,6,7,8,9]);
rafLog.shift()();
expect(log).toEqual([0,1,2,3,4,5,6,7,8,9,10]);
expect(rafLog.length).toBe(0);
}));
it('should set a default buffer limit of 10', module(function($$rAF) {
expect($$rAF.$$bufferLimit).toBe(10);
}));
describe('$timeout fallback', function() {
it("it should use a $timeout incase native rAF isn't suppored", function() {
var timeoutSpy = jasmine.createSpy('callback');
//we need to create our own injector to work around the ngMock overrides
var injector = createInjector(['ng', function($provide) {
$provide.value('$timeout', timeoutSpy);
$provide.value('$window', {
location: window.location
});
}]);
var $$rAF = injector.get('$$rAF');
expect($$rAF.supported).toBe(false);
var message;
$$rAF(function() {
message = 'on';
});
expect(message).toBeUndefined();
expect(timeoutSpy).toHaveBeenCalled();
timeoutSpy.mostRecentCall.args[0]();
expect(message).toBe('on');
});
});
describe('mocks', function() {
it('should throw an error if no frames are present', inject(function($$rAF) {
if ($$rAF.supported) {
var failed = false;
try {
$$rAF.flush();
} catch (e) {
failed = true;
}
expect(failed).toBe(true);
}
}));
});
describe('mobile', function() {
it('should provide a cancellation method for an older version of Android', function() {
//we need to create our own injector to work around the ngMock overrides
var injector = createInjector(['ng', function($provide) {
$provide.value('$window', {
location: window.location,
history: window.history,
webkitRequestAnimationFrame: jasmine.createSpy('$window.webkitRequestAnimationFrame'),
webkitCancelRequestAnimationFrame: jasmine.createSpy('$window.webkitCancelRequestAnimationFrame')
});
}]);
var $$rAF = injector.get('$$rAF');
var $window = injector.get('$window');
var cancel = $$rAF(function() {});
expect($$rAF.supported).toBe(true);
try {
cancel();
} catch (e) {}
expect($window.webkitCancelRequestAnimationFrame).toHaveBeenCalled();
});
});
});