$(function () { 'use strict'; module('scrollspy plugin') test('should be defined on jquery object', function () { ok($(document.body).scrollspy, 'scrollspy method is defined') }) module('scrollspy', { setup: function () { // Run all tests in noConflict mode -- it's the only way to ensure that the plugin works in noConflict mode $.fn.bootstrapScrollspy = $.fn.scrollspy.noConflict() }, teardown: function () { $.fn.scrollspy = $.fn.bootstrapScrollspy delete $.fn.bootstrapScrollspy } }) test('should provide no conflict', function () { strictEqual($.fn.scrollspy, undefined, 'scrollspy was set back to undefined (org value)') }) test('should return jquery collection containing the element', function () { var $el = $('
') var $scrollspy = $el.bootstrapScrollspy() ok($scrollspy instanceof $, 'returns jquery collection') strictEqual($scrollspy[0], $el[0], 'collection contains element') }) test('should only switch "active" class on current target', function () { stop() var sectionHTML = '
' + '
' + '
' + '
' + '' + '
' + '
' + '
' + '
' + '
' + '

Overview

' + '

' + 'Ad leggings keytar, brunch id art party dolor labore.' + '

' + '
' + '
' + '

Detail

' + '

' + 'Veniam marfa mustache skateboard, adipisicing fugiat velit pitchfork beard.' + '

' + '
' + '
' + '
' var $section = $(sectionHTML).appendTo('#qunit-fixture') var $scrollspy = $section .show() .find('#scrollspy-example') .bootstrapScrollspy({ target: '#ss-target' }) $scrollspy.on('scroll.bs.scrollspy', function () { ok($section.hasClass('active'), '"active" class still on root node') start() }) $scrollspy.scrollTop(350) }) test('middle navigation option correctly selected when large offset is used', function () { stop() var sectionHTML = '' + '' + '
' + '
' + '
' + '
' + '
' var $section = $(sectionHTML).appendTo('#qunit-fixture') var $scrollspy = $section .show() .filter('#content') $scrollspy.bootstrapScrollspy({ target: '#navigation', offset: $scrollspy.position().top }) $scrollspy.on('scroll.bs.scrollspy', function () { ok(!$section.find('#one-link').parent().hasClass('active'), '"active" class removed from first section') ok($section.find('#two-link').parent().hasClass('active'), '"active" class on middle section') ok(!$section.find('#three-link').parent().hasClass('active'), '"active" class not on last section') start() }) $scrollspy.scrollTop(550) }) test('should add the active class to the correct element', function () { var navbarHtml = '' var contentHtml = '
' + '
div 1
' + '
div 2
' + '
' $(navbarHtml).appendTo('#qunit-fixture') var $content = $(contentHtml) .appendTo('#qunit-fixture') .bootstrapScrollspy({ offset: 0, target: '.navbar' }) var testElementIsActiveAfterScroll = function (element, target) { var deferred = $.Deferred() var scrollHeight = Math.ceil($content.scrollTop() + $(target).position().top) stop() $content.one('scroll', function () { ok($(element).hasClass('active'), 'target:' + target + ', element' + element) start() deferred.resolve() }) $content.scrollTop(scrollHeight) return deferred.promise() } $.when(testElementIsActiveAfterScroll('#li-1', '#div-1')) .then(function () { return testElementIsActiveAfterScroll('#li-2', '#div-2') }) }) })