forked from angular/angular.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintegrationSpec.js
611 lines (468 loc) · 18 KB
/
integrationSpec.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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
'use strict';
describe('ngAnimate integration tests', function() {
beforeEach(module('ngAnimate'));
beforeEach(module('ngAnimateMock'));
var element, html, ss;
beforeEach(module(function() {
return function($rootElement, $document, $window, $animate) {
$animate.enabled(true);
ss = createMockStyleSheet($document, $window);
var body = jqLite($document[0].body);
html = function(element) {
body.append($rootElement);
$rootElement.append(element);
};
};
}));
afterEach(function() {
dealoc(element);
ss.destroy();
});
describe('CSS animations', function() {
if (!browserSupportsCssAnimations()) return;
they('should render an $prop animation',
['enter', 'leave', 'move', 'addClass', 'removeClass', 'setClass'], function(event) {
inject(function($animate, $compile, $rootScope, $rootElement) {
element = jqLite('<div class="animate-me"></div>');
$compile(element)($rootScope);
var className = 'klass';
var addClass, removeClass;
var parent = jqLite('<div></div>');
html(parent);
var setupClass, activeClass;
var args;
var classRuleSuffix = '';
switch (event) {
case 'enter':
case 'move':
setupClass = 'ng-' + event;
activeClass = 'ng-' + event + '-active';
args = [element, parent];
break;
case 'leave':
parent.append(element);
setupClass = 'ng-' + event;
activeClass = 'ng-' + event + '-active';
args = [element];
break;
case 'addClass':
parent.append(element);
classRuleSuffix = '.add';
setupClass = className + '-add';
activeClass = className + '-add-active';
addClass = className;
args = [element, className];
break;
case 'removeClass':
parent.append(element);
setupClass = className + '-remove';
activeClass = className + '-remove-active';
element.addClass(className);
args = [element, className];
break;
case 'setClass':
parent.append(element);
addClass = className;
removeClass = 'removing-class';
setupClass = addClass + '-add ' + removeClass + '-remove';
activeClass = addClass + '-add-active ' + removeClass + '-remove-active';
element.addClass(removeClass);
args = [element, addClass, removeClass];
break;
}
ss.addRule('.animate-me', 'transition:2s linear all;');
var runner = $animate[event].apply($animate, args);
$rootScope.$digest();
var animationCompleted = false;
runner.then(function() {
animationCompleted = true;
});
expect(element).toHaveClass(setupClass);
$animate.flush();
expect(element).toHaveClass(activeClass);
browserTrigger(element, 'transitionend', { timeStamp: Date.now(), elapsedTime: 2 });
$animate.flush();
expect(element).not.toHaveClass(setupClass);
expect(element).not.toHaveClass(activeClass);
$rootScope.$digest();
expect(animationCompleted).toBe(true);
});
});
it('should not throw an error if the element is orphaned before the CSS animation starts',
inject(function($rootScope, $rootElement, $animate) {
ss.addRule('.animate-me', 'transition:2s linear all;');
var parent = jqLite('<div></div>');
html(parent);
var element = jqLite('<div class="animate-me">DOING</div>');
parent.append(element);
$animate.addClass(parent, 'on');
$animate.addClass(element, 'on');
$rootScope.$digest();
// this will run the first class-based animation
$animate.flush();
element.remove();
expect(function() {
$animate.flush();
}).not.toThrow();
dealoc(element);
}));
it('should include the added/removed classes in lieu of the enter animation',
inject(function($animate, $compile, $rootScope, $rootElement, $document) {
ss.addRule('.animate-me.ng-enter.on', 'transition:2s linear all;');
element = jqLite('<div><div ng-if="exp" ng-class="{on:exp2}" class="animate-me"></div></div>');
$rootElement.append(element);
jqLite($document[0].body).append($rootElement);
$compile(element)($rootScope);
$rootScope.exp = true;
$rootScope.$digest();
$animate.flush();
var child = element.find('div');
expect(child).not.toHaveClass('on');
expect(child).not.toHaveClass('ng-enter');
$rootScope.exp = false;
$rootScope.$digest();
$rootScope.exp = true;
$rootScope.exp2 = true;
$rootScope.$digest();
child = element.find('div');
expect(child).toHaveClass('on');
expect(child).toHaveClass('ng-enter');
$animate.flush();
expect(child).toHaveClass('ng-enter-active');
browserTrigger(child, 'transitionend', { timeStamp: Date.now(), elapsedTime: 2 });
$animate.flush();
expect(child).not.toHaveClass('ng-enter-active');
expect(child).not.toHaveClass('ng-enter');
}));
it('should animate ng-class and a structural animation in parallel on the same element',
inject(function($animate, $compile, $rootScope, $rootElement, $document) {
ss.addRule('.animate-me.ng-enter', 'transition:2s linear all;');
ss.addRule('.animate-me.expand', 'transition:5s linear all; font-size:200px;');
element = jqLite('<div><div ng-if="exp" ng-class="{expand:exp2}" class="animate-me"></div></div>');
$rootElement.append(element);
jqLite($document[0].body).append($rootElement);
$compile(element)($rootScope);
$rootScope.exp = true;
$rootScope.exp2 = true;
$rootScope.$digest();
var child = element.find('div');
expect(child).toHaveClass('ng-enter');
expect(child).toHaveClass('expand-add');
expect(child).toHaveClass('expand');
$animate.flush();
expect(child).toHaveClass('ng-enter-active');
expect(child).toHaveClass('expand-add-active');
browserTrigger(child, 'transitionend', { timeStamp: Date.now(), elapsedTime: 2 });
$animate.flush();
expect(child).not.toHaveClass('ng-enter-active');
expect(child).not.toHaveClass('ng-enter');
expect(child).not.toHaveClass('expand-add-active');
expect(child).not.toHaveClass('expand-add');
}));
it('should issue a RAF for each element animation on all DOM levels', function() {
module('ngAnimateMock');
inject(function($animate, $compile, $rootScope, $rootElement, $document, $$rAF) {
element = jqLite(
'<div ng-class="{parent:exp}">' +
'<div ng-class="{parent2:exp}">' +
'<div ng-repeat="item in items" ng-class="{fade:exp}">' +
'{{ item }}' +
'</div>' +
'</div>' +
'</div>'
);
$rootElement.append(element);
jqLite($document[0].body).append($rootElement);
$compile(element)($rootScope);
$rootScope.$digest();
var outer = element;
var inner = element.find('div');
$rootScope.exp = true;
$rootScope.items = [1,2,3,4,5,6,7,8,9,10];
$rootScope.$digest();
expect(outer).not.toHaveClass('parent');
expect(inner).not.toHaveClass('parent2');
assertTotalRepeats(0);
$$rAF.flush();
expect(outer).toHaveClass('parent');
assertTotalRepeats(0);
$$rAF.flush();
expect(inner).toHaveClass('parent2');
assertTotalRepeats(10);
function assertTotalRepeats(total) {
expect(inner[0].querySelectorAll('div.ng-enter').length).toBe(total);
}
});
});
it('should pack level elements into their own RAF flush', function() {
module('ngAnimateMock');
inject(function($animate, $compile, $rootScope, $rootElement, $document) {
ss.addRule('.inner', 'transition:2s linear all;');
element = jqLite(
'<div>' +
'<div class="outer" ng-class="{on:exp}">' +
'<div class="inner" ng-if="exp"></div>' +
'</div>' +
'<div class="outer" ng-class="{on:exp}">' +
'<div class="inner" ng-if="exp"></div>' +
'</div>' +
'<div class="outer" ng-class="{on:exp}">' +
'<div class="inner" ng-if="exp"></div>' +
'</div>' +
'<div class="outer" ng-class="{on:exp}"></div>' +
'</div>'
);
$rootElement.append(element);
jqLite($document[0].body).append($rootElement);
$compile(element)($rootScope);
$rootScope.$digest();
assertGroupHasClass(query('outer'), 'on', true);
expect(query('inner').length).toBe(0);
$rootScope.exp = true;
$rootScope.$digest();
assertGroupHasClass(query('outer'), 'on', true);
assertGroupHasClass(query('inner'), 'ng-enter', true);
$animate.flush();
assertGroupHasClass(query('outer'), 'on');
assertGroupHasClass(query('inner'), 'ng-enter');
function query(className) {
return element[0].querySelectorAll('.' + className);
}
function assertGroupHasClass(elms, className, not) {
for (var i = 0; i < elms.length; i++) {
var assert = expect(jqLite(elms[i]));
(not ? assert.not : assert).toHaveClass(className);
}
}
});
});
it('should trigger callbacks at the start and end of an animation',
inject(function($rootScope, $rootElement, $animate, $compile) {
ss.addRule('.animate-me', 'transition:2s linear all;');
var parent = jqLite('<div><div ng-if="exp" class="animate-me"></div></div>');
element = parent.find('div');
html(parent);
$compile(parent)($rootScope);
$rootScope.$digest();
var spy = jasmine.createSpy();
$animate.on('enter', parent, spy);
$rootScope.exp = true;
$rootScope.$digest();
element = parent.find('div');
$animate.flush();
expect(spy.callCount).toBe(1);
browserTrigger(element, 'transitionend', { timeStamp: Date.now(), elapsedTime: 2 });
$animate.flush();
expect(spy.callCount).toBe(2);
dealoc(element);
}));
});
describe('JS animations', function() {
they('should render an $prop animation',
['enter', 'leave', 'move', 'addClass', 'removeClass', 'setClass'], function(event) {
var endAnimation;
var animateCompleteCallbackFired = true;
module(function($animateProvider) {
$animateProvider.register('.animate-me', function() {
var animateFactory = {};
animateFactory[event] = function(element, addClass, removeClass, done) {
endAnimation = arguments[arguments.length - 2]; // the done method is the 2nd last one
return function(status) {
animateCompleteCallbackFired = status === false;
};
};
return animateFactory;
});
});
inject(function($animate, $compile, $rootScope, $rootElement) {
element = jqLite('<div class="animate-me"></div>');
$compile(element)($rootScope);
var className = 'klass';
var addClass, removeClass;
var parent = jqLite('<div></div>');
html(parent);
var args;
switch (event) {
case 'enter':
case 'move':
args = [element, parent];
break;
case 'leave':
parent.append(element);
args = [element];
break;
case 'addClass':
parent.append(element);
args = [element, className];
break;
case 'removeClass':
parent.append(element);
element.addClass(className);
args = [element, className];
break;
case 'setClass':
parent.append(element);
addClass = className;
removeClass = 'removing-class';
element.addClass(removeClass);
args = [element, addClass, removeClass];
break;
}
var runner = $animate[event].apply($animate, args);
var animationCompleted = false;
runner.then(function() {
animationCompleted = true;
});
$rootScope.$digest();
expect(isFunction(endAnimation)).toBe(true);
endAnimation();
$animate.flush();
expect(animateCompleteCallbackFired).toBe(true);
$rootScope.$digest();
expect(animationCompleted).toBe(true);
});
});
they('should not wait for a parent\'s classes to resolve if a $prop is animation used for children',
['beforeAddClass', 'beforeRemoveClass', 'beforeSetClass'], function(phase) {
var capturedChildClasses;
var endParentAnimationFn;
module(function($animateProvider) {
$animateProvider.register('.parent-man', function() {
var animateFactory = {};
animateFactory[phase] = function(element, addClass, removeClass, done) {
// this will wait until things are over
endParentAnimationFn = done;
};
return animateFactory;
});
$animateProvider.register('.child-man', function() {
return {
enter: function(element, done) {
capturedChildClasses = element.parent().attr('class');
done();
}
};
});
});
inject(function($animate, $compile, $rootScope, $rootElement) {
element = jqLite('<div class="parent-man"></div>');
var child = jqLite('<div class="child-man"></div>');
html(element);
$compile(element)($rootScope);
$animate.enter(child, element);
switch (phase) {
case 'beforeAddClass':
$animate.addClass(element, 'cool');
break;
case 'beforeSetClass':
$animate.setClass(element, 'cool');
break;
case 'beforeRemoveClass':
element.addClass('cool');
$animate.removeClass(element, 'cool');
break;
}
$rootScope.$digest();
$animate.flush();
expect(endParentAnimationFn).toBeTruthy();
// the spaces are used so that ` cool ` can be matched instead
// of just a substring like `cool-add`.
var safeClassMatchString = ' ' + capturedChildClasses + ' ';
if (phase === 'beforeRemoveClass') {
expect(safeClassMatchString).toContain(' cool ');
} else {
expect(safeClassMatchString).not.toContain(' cool ');
}
});
});
they('should have the parent\'s classes already applied in time for the children if $prop is used',
['addClass', 'removeClass', 'setClass'], function(phase) {
var capturedChildClasses;
var endParentAnimationFn;
module(function($animateProvider) {
$animateProvider.register('.parent-man', function() {
var animateFactory = {};
animateFactory[phase] = function(element, addClass, removeClass, done) {
// this will wait until things are over
endParentAnimationFn = done;
};
return animateFactory;
});
$animateProvider.register('.child-man', function() {
return {
enter: function(element, done) {
capturedChildClasses = element.parent().attr('class');
done();
}
};
});
});
inject(function($animate, $compile, $rootScope, $rootElement) {
element = jqLite('<div class="parent-man"></div>');
var child = jqLite('<div class="child-man"></div>');
html(element);
$compile(element)($rootScope);
$animate.enter(child, element);
switch (phase) {
case 'addClass':
$animate.addClass(element, 'cool');
break;
case 'setClass':
$animate.setClass(element, 'cool');
break;
case 'removeClass':
element.addClass('cool');
$animate.removeClass(element, 'cool');
break;
}
$rootScope.$digest();
$animate.flush();
expect(endParentAnimationFn).toBeTruthy();
// the spaces are used so that ` cool ` can be matched instead
// of just a substring like `cool-add`.
var safeClassMatchString = ' ' + capturedChildClasses + ' ';
if (phase === 'removeClass') {
expect(safeClassMatchString).not.toContain(' cool ');
} else {
expect(safeClassMatchString).toContain(' cool ');
}
});
});
it("should not alter the provided options values in anyway throughout the animation", function() {
var animationSpy = jasmine.createSpy();
module(function($animateProvider) {
$animateProvider.register('.this-animation', function() {
return {
enter: function(element, done) {
animationSpy();
done();
}
};
});
});
inject(function($animate, $rootScope, $compile) {
element = jqLite('<div class="parent-man"></div>');
var child = jqLite('<div class="child-man one"></div>');
var initialOptions = {
from: { height: '50px' },
to: { width: '100px' },
addClass: 'one',
removeClass: 'two'
};
var copiedOptions = copy(initialOptions);
expect(copiedOptions).toEqual(initialOptions);
html(element);
$compile(element)($rootScope);
$animate.enter(child, element, null, copiedOptions);
$rootScope.$digest();
expect(copiedOptions).toEqual(initialOptions);
$animate.flush();
expect(copiedOptions).toEqual(initialOptions);
expect(child).toHaveClass('one');
expect(child).not.toHaveClass('two');
expect(child.attr('style')).toContain('100px');
expect(child.attr('style')).toContain('50px');
});
});
});
});