forked from angular/angular.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanchorScrollSpec.js
640 lines (487 loc) · 19 KB
/
anchorScrollSpec.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
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
'use strict';
describe('$anchorScroll', function() {
var elmSpy;
function createMockWindow() {
return function() {
module(function($provide) {
elmSpy = {};
var mockedWin = {
scrollTo: jasmine.createSpy('$window.scrollTo'),
scrollBy: jasmine.createSpy('$window.scrollBy'),
document: window.document,
getComputedStyle: function(elem) {
return window.getComputedStyle(elem);
}
};
$provide.value('$window', mockedWin);
});
};
}
function addElements() {
var elements = sliceArgs(arguments);
return function($window) {
forEach(elements, function(identifier) {
var match = identifier.match(/(?:(\w*) )?(\w*)=(\w*)/),
nodeName = match[1] || 'a',
tmpl = '<' + nodeName + ' ' + match[2] + '="' + match[3] + '">' +
match[3] + // add some content or else Firefox and IE place the element
// in weird ways that break yOffset-testing.
'</' + nodeName + '>',
jqElm = jqLite(tmpl),
elm = jqElm[0];
// Inline elements cause Firefox to report an unexpected value for
// `getBoundingClientRect().top` on some platforms (depending on the default font and
// line-height). Using inline-block elements prevents this.
// See: https://bugzilla.mozilla.org/show_bug.cgi?id=1014738
elm.style.display = 'inline-block';
elmSpy[identifier] = spyOn(elm, 'scrollIntoView');
jqLite($window.document.body).append(jqElm);
});
};
}
function callAnchorScroll(hash) {
return function($anchorScroll) {
$anchorScroll(hash);
};
}
function changeHashAndScroll(hash) {
return function($location, $anchorScroll) {
$location.hash(hash);
$anchorScroll();
};
}
function changeHashTo(hash) {
return function($anchorScroll, $location, $rootScope) {
$rootScope.$apply(function() {
$location.hash(hash);
});
};
}
function expectNoScrolling() {
return expectScrollingTo(NaN);
}
function expectScrollingTo(identifierCountMap) {
var map = {};
if (isString(identifierCountMap)) {
map[identifierCountMap] = 1;
} else if (isArray(identifierCountMap)) {
forEach(identifierCountMap, function(identifier) {
map[identifier] = 1;
});
} else {
map = identifierCountMap;
}
return function($window) {
forEach(elmSpy, function(spy, id) {
var count = map[id] || 0;
// TODO(gkalpak): `toHaveBeenCalledTimes()` works correctly with 0 since
// https://github.com/jasmine/jasmine/commit/342f0eb9a38194ecb8559e7df872c72afc0fe52e
// Fix when we upgrade to a version that contains the fix.
if (count > 0) {
expect(spy).toHaveBeenCalledTimes(count);
} else {
expect(spy).not.toHaveBeenCalled();
}
});
expect($window.scrollTo).not.toHaveBeenCalled();
};
}
function expectScrollingToTop($window) {
forEach(elmSpy, function(spy, id) {
expect(spy).not.toHaveBeenCalled();
});
expect($window.scrollTo).toHaveBeenCalledWith(0, 0);
}
function spyOnJQLiteDocumentLoaded(fake) {
return function() {
spyOn(window, 'jqLiteDocumentLoaded');
if (fake) {
window.jqLiteDocumentLoaded.and.callFake(fake);
}
};
}
function unspyOnJQLiteDocumentLoaded() {
return function() {
window.jqLiteDocumentLoaded = window.jqLiteDocumentLoaded.originalValue;
};
}
function simulateDocumentLoaded() {
return spyOnJQLiteDocumentLoaded(function(callback) { callback(); });
}
function fireWindowLoadEvent() {
return function($browser) {
var callback = window.jqLiteDocumentLoaded.calls.mostRecent().args[0];
callback();
$browser.defer.flush();
};
}
afterEach(inject(function($browser, $document) {
expect($browser.deferredFns.length).toBe(0);
dealoc($document);
}));
describe('when explicitly called', function() {
beforeEach(createMockWindow());
describe('and implicitly using `$location.hash()`', function() {
it('should scroll to top of the window if empty hash', inject(
changeHashAndScroll(''),
expectScrollingToTop));
it('should not scroll if hash does not match any element', inject(
addElements('id=one', 'id=two'),
changeHashAndScroll('non-existing'),
expectNoScrolling()));
it('should scroll to anchor element with name', inject(
addElements('a name=abc'),
changeHashAndScroll('abc'),
expectScrollingTo('a name=abc')));
it('should not scroll to other than anchor element with name', inject(
addElements('input name=xxl', 'select name=xxl', 'form name=xxl'),
changeHashAndScroll('xxl'),
expectNoScrolling()));
it('should scroll to anchor even if other element with given name exist', inject(
addElements('input name=some', 'a name=some'),
changeHashAndScroll('some'),
expectScrollingTo('a name=some')));
it('should scroll to element with id with precedence over name', inject(
addElements('name=abc', 'id=abc'),
changeHashAndScroll('abc'),
expectScrollingTo('id=abc')));
it('should scroll to top if hash === "top" and no matching element', inject(
changeHashAndScroll('top'),
expectScrollingToTop));
it('should scroll to element with id "top" if present', inject(
addElements('id=top'),
changeHashAndScroll('top'),
expectScrollingTo('id=top')));
});
describe('and specifying a hash', function() {
it('should ignore the `hash` argument if not a string', inject(
spyOnJQLiteDocumentLoaded(),
addElements('id=one', 'id=two'),
changeHashTo('one'), // won't scroll since `jqLiteDocumentLoaded()` is spied upon
callAnchorScroll({}),
expectScrollingTo('id=one'),
unspyOnJQLiteDocumentLoaded()));
it('should ignore `$location.hash()` if `hash` is passed as argument', inject(
spyOnJQLiteDocumentLoaded(),
addElements('id=one', 'id=two'),
changeHashTo('one'), // won't scroll since `jqLiteDocumentLoaded()` is spied upon
callAnchorScroll('two'),
expectScrollingTo('id=two'),
unspyOnJQLiteDocumentLoaded()));
it('should scroll to top of the window if empty hash', inject(
callAnchorScroll(''),
expectScrollingToTop));
it('should not scroll if hash does not match any element', inject(
addElements('id=one', 'id=two'),
callAnchorScroll('non-existing'),
expectNoScrolling()));
it('should scroll to anchor element with name', inject(
addElements('a name=abc'),
callAnchorScroll('abc'),
expectScrollingTo('a name=abc')));
it('should not scroll to other than anchor element with name', inject(
addElements('input name=xxl', 'select name=xxl', 'form name=xxl'),
callAnchorScroll('xxl'),
expectNoScrolling()));
it('should scroll to anchor even if other element with given name exist', inject(
addElements('input name=some', 'a name=some'),
callAnchorScroll('some'),
expectScrollingTo('a name=some')));
it('should scroll to element with id with precedence over name', inject(
addElements('name=abc', 'id=abc'),
callAnchorScroll('abc'),
expectScrollingTo('id=abc')));
it('should scroll to top if hash === "top" and no matching element', inject(
callAnchorScroll('top'),
expectScrollingToTop));
it('should scroll to element with id "top" if present', inject(
addElements('id=top'),
callAnchorScroll('top'),
expectScrollingTo('id=top')));
it('should scroll to element with id "7" if present, with a given hash of type number', inject(
addElements('id=7'),
callAnchorScroll(7),
expectScrollingTo('id=7')));
it('should scroll to element with id "7" if present, with a given hash of type string', inject(
addElements('id=7'),
callAnchorScroll('7'),
expectScrollingTo('id=7')));
});
});
describe('watcher', function() {
function initLocation(config) {
return function($provide, $locationProvider) {
$provide.value('$sniffer', {history: config.historyApi});
$locationProvider.html5Mode(config.html5Mode);
};
}
function disableAutoScrolling() {
return function($anchorScrollProvider) {
$anchorScrollProvider.disableAutoScrolling();
};
}
beforeEach(createMockWindow());
describe('when document has completed loading', function() {
beforeEach(simulateDocumentLoaded());
afterEach(unspyOnJQLiteDocumentLoaded());
it('should scroll to element when hash change in hashbang mode', function() {
module(initLocation({html5Mode: false, historyApi: true}));
inject(
addElements('id=some'),
changeHashTo('some'),
expectScrollingTo('id=some')
);
});
it('should scroll to element when hash change in html5 mode with no history api', function() {
module(initLocation({html5Mode: true, historyApi: false}));
inject(
addElements('id=some'),
changeHashTo('some'),
expectScrollingTo('id=some')
);
});
it('should not scroll to the top if $anchorScroll is initializing and location hash is empty',
inject(
expectNoScrolling())
);
it('should not scroll when element does not exist', function() {
module(initLocation({html5Mode: false, historyApi: false}));
inject(
addElements('id=some'),
changeHashTo('other'),
expectNoScrolling()
);
});
it('should scroll when html5 mode with history api', function() {
module(initLocation({html5Mode: true, historyApi: true}));
inject(
addElements('id=some'),
changeHashTo('some'),
expectScrollingTo('id=some')
);
});
it('should not scroll when auto-scrolling is disabled', function() {
module(
disableAutoScrolling(),
initLocation({html5Mode: false, historyApi: false})
);
inject(
addElements('id=fake'),
changeHashTo('fake'),
expectNoScrolling()
);
});
it('should scroll when called explicitly (even if auto-scrolling is disabled)', function() {
module(
disableAutoScrolling(),
initLocation({html5Mode: false, historyApi: false})
);
inject(
addElements('id=fake'),
changeHashTo('fake'),
expectNoScrolling(),
callAnchorScroll(),
expectScrollingTo('id=fake')
);
});
});
describe('when document has not completed loading', function() {
beforeEach(spyOnJQLiteDocumentLoaded());
afterEach(unspyOnJQLiteDocumentLoaded());
it('should wait for the document to be completely loaded before auto-scrolling', inject(
addElements('id=some'),
changeHashTo('some'),
expectNoScrolling('id=some'),
fireWindowLoadEvent(),
expectScrollingTo('id=some')
));
});
});
describe('yOffset', function() {
beforeEach(simulateDocumentLoaded());
afterEach(unspyOnJQLiteDocumentLoaded);
function expectScrollingWithOffset(identifierCountMap, offsetList) {
var list = isArray(offsetList) ? offsetList : [offsetList];
return function($rootScope, $window) {
inject(expectScrollingTo(identifierCountMap));
// TODO(gkalpak): `toHaveBeenCalledTimes()` works correctly with 0 since
// https://github.com/jasmine/jasmine/commit/342f0eb9a38194ecb8559e7df872c72afc0fe52e
// Fix when we upgrade to a version that contains the fix.
if (list.length > 0) {
expect($window.scrollBy).toHaveBeenCalledTimes(list.length);
} else {
expect($window.scrollBy).not.toHaveBeenCalled();
}
forEach(list, function(offset, idx) {
// Due to sub-pixel rendering, there is a +/-1 error margin in the actual offset
var args = $window.scrollBy.calls.argsFor(idx);
expect(args[0]).toBe(0);
expect(Math.abs(offset + args[1])).toBeLessThan(1);
});
};
}
function expectScrollingWithoutOffset(identifierCountMap) {
return expectScrollingWithOffset(identifierCountMap, []);
}
function mockBoundingClientRect(childValuesMap) {
return function($window) {
var children = $window.document.body.children;
forEach(childValuesMap, function(valuesList, childIdx) {
var elem = children[childIdx];
elem.getBoundingClientRect = function() {
var val = valuesList.shift();
return {
top: val,
bottom: val
};
};
});
};
}
function setYOffset(yOffset) {
return function($anchorScroll) {
$anchorScroll.yOffset = yOffset;
};
}
beforeEach(createMockWindow());
describe('and body with no border/margin/padding', function() {
describe('when set as a fixed number', function() {
var yOffsetNumber = 50;
beforeEach(inject(setYOffset(yOffsetNumber)));
it('should scroll with vertical offset', inject(
addElements('id=some'),
mockBoundingClientRect({0: [0]}),
changeHashTo('some'),
expectScrollingWithOffset('id=some', yOffsetNumber)
));
it('should use the correct vertical offset when changing `yOffset` at runtime', inject(
addElements('id=some'),
mockBoundingClientRect({0: [0, 0]}),
changeHashTo('some'),
setYOffset(yOffsetNumber - 10),
callAnchorScroll(),
expectScrollingWithOffset({'id=some': 2}, [yOffsetNumber, yOffsetNumber - 10])));
it('should adjust the vertical offset for elements near the end of the page', function() {
var targetAdjustedOffset = 20;
inject(
addElements('id=some1', 'id=some2'),
mockBoundingClientRect({1: [yOffsetNumber - targetAdjustedOffset]}),
changeHashTo('some2'),
expectScrollingWithOffset('id=some2', targetAdjustedOffset));
});
});
describe('when set as a function', function() {
it('should scroll with vertical offset', function() {
var val = 0;
var increment = 10;
function yOffsetFunction() {
val += increment;
return val;
}
inject(
addElements('id=id1', 'name=name2'),
mockBoundingClientRect({
0: [0, 0, 0],
1: [0]
}),
setYOffset(yOffsetFunction),
changeHashTo('id1'),
changeHashTo('name2'),
changeHashTo('id1'),
callAnchorScroll(),
expectScrollingWithOffset({
'id=id1': 3,
'name=name2': 1
}, [
1 * increment,
2 * increment,
3 * increment,
4 * increment
]));
});
});
describe('when set as a jqLite element', function() {
var elemBottom = 50;
function createAndSetYOffsetElement(position) {
var jqElem = jqLite('<div></div>');
jqElem[0].style.position = position;
return function($anchorScroll, $window) {
jqLite($window.document.body).append(jqElem);
$anchorScroll.yOffset = jqElem;
};
}
it('should scroll with vertical offset when `position === fixed`', inject(
createAndSetYOffsetElement('fixed'),
addElements('id=some'),
mockBoundingClientRect({0: [elemBottom], 1: [0]}),
changeHashTo('some'),
expectScrollingWithOffset('id=some', elemBottom)));
it('should scroll without vertical offset when `position !== fixed`', inject(
createAndSetYOffsetElement('absolute', elemBottom),
expectScrollingWithoutOffset('id=some')));
});
});
describe('and body with border/margin/padding', function() {
var borderWidth = 4;
var marginWidth = 8;
var paddingWidth = 16;
var yOffsetNumber = 50;
var necessaryYOffset = yOffsetNumber - borderWidth - marginWidth - paddingWidth;
beforeEach(inject(setYOffset(yOffsetNumber)));
it('should scroll with vertical offset', inject(
addElements('id=some'),
mockBoundingClientRect({0: [yOffsetNumber - necessaryYOffset]}),
changeHashTo('some'),
expectScrollingWithOffset('id=some', necessaryYOffset)));
it('should use the correct vertical offset when changing `yOffset` at runtime', inject(
addElements('id=some'),
mockBoundingClientRect({0: [
yOffsetNumber - necessaryYOffset,
yOffsetNumber - necessaryYOffset
]}),
changeHashTo('some'),
setYOffset(yOffsetNumber - 10),
callAnchorScroll(),
expectScrollingWithOffset({'id=some': 2}, [necessaryYOffset, necessaryYOffset - 10])));
it('should adjust the vertical offset for elements near the end of the page', function() {
var targetAdjustedOffset = 20;
inject(
addElements('id=some1', 'id=some2'),
mockBoundingClientRect({1: [yOffsetNumber - targetAdjustedOffset]}),
changeHashTo('some2'),
expectScrollingWithOffset('id=some2', targetAdjustedOffset));
});
});
describe('and body with border/margin/padding and boxSizing', function() {
var borderWidth = 4;
var marginWidth = 8;
var paddingWidth = 16;
var yOffsetNumber = 50;
var necessaryYOffset = yOffsetNumber - borderWidth - marginWidth - paddingWidth;
beforeEach(inject(setYOffset(yOffsetNumber)));
it('should scroll with vertical offset', inject(
addElements('id=some'),
mockBoundingClientRect({0: [yOffsetNumber - necessaryYOffset]}),
changeHashTo('some'),
expectScrollingWithOffset('id=some', necessaryYOffset)));
it('should use the correct vertical offset when changing `yOffset` at runtime', inject(
addElements('id=some'),
mockBoundingClientRect({0: [
yOffsetNumber - necessaryYOffset,
yOffsetNumber - necessaryYOffset
]}),
changeHashTo('some'),
setYOffset(yOffsetNumber - 10),
callAnchorScroll(),
expectScrollingWithOffset({'id=some': 2}, [necessaryYOffset, necessaryYOffset - 10])));
it('should adjust the vertical offset for elements near the end of the page', function() {
var targetAdjustedOffset = 20;
inject(
addElements('id=some1', 'id=some2'),
mockBoundingClientRect({1: [yOffsetNumber - targetAdjustedOffset]}),
changeHashTo('some2'),
expectScrollingWithOffset('id=some2', targetAdjustedOffset));
});
});
});
});