$(function () { 'use strict'; module('collapse plugin') test('should be defined on jquery object', function () { ok($(document.body).collapse, 'collapse method is defined') }) module('collapse', { setup: function () { // Run all tests in noConflict mode -- it's the only way to ensure that the plugin works in noConflict mode $.fn.bootstrapCollapse = $.fn.collapse.noConflict() }, teardown: function () { $.fn.collapse = $.fn.bootstrapCollapse delete $.fn.bootstrapCollapse } }) test('should provide no conflict', function () { strictEqual($.fn.collapse, undefined, 'collapse was set back to undefined (org value)') }) test('should return jquery collection containing the element', function () { var $el = $('
') var $collapse = $el.bootstrapCollapse() ok($collapse instanceof $, 'returns jquery collection') strictEqual($collapse[0], $el[0], 'collection contains element') }) test('should show a collapsed element', function () { var $el = $('
').bootstrapCollapse('show') ok($el.hasClass('in'), 'has class "in"') ok(!/height/i.test($el.attr('style')), 'has height reset') }) test('should hide a collapsed element', function () { var $el = $('
').bootstrapCollapse('hide') ok(!$el.hasClass('in'), 'does not have class "in"') ok(/height/i.test($el.attr('style')), 'has height set') }) test('should not fire shown when show is prevented', function (assert) { var done = assert.async() $('
') .on('show.bs.collapse', function (e) { e.preventDefault() ok(true, 'show event fired') done() }) .on('shown.bs.collapse', function () { ok(false, 'shown event fired') }) .bootstrapCollapse('show') }) test('should reset style to auto after finishing opening collapse', function (assert) { var done = assert.async() $('
') .on('show.bs.collapse', function () { equal(this.style.height, '0px', 'height is 0px') }) .on('shown.bs.collapse', function () { strictEqual(this.style.height, '', 'height is auto') done() }) .bootstrapCollapse('show') }) test('should remove "collapsed" class from target when collapse is shown', function (assert) { var done = assert.async() var $target = $('
').appendTo('#qunit-fixture') $('
') .appendTo('#qunit-fixture') .on('hidden.bs.collapse', function () { ok($target.hasClass('collapsed')) done() }) $target.click() }) test('should not close a collapse when initialized with "show" if already shown', function (assert) { var done = assert.async() expect(0) var $test = $('
') .appendTo('#qunit-fixture') .on('hide.bs.collapse', function () { ok(false) }) $test.bootstrapCollapse('show') setTimeout(done, 0) }) test('should open a collapse when initialized with "show" if not already shown', function (assert) { var done = assert.async() expect(1) var $test = $('
') .appendTo('#qunit-fixture') .on('show.bs.collapse', function () { ok(true) }) $test.bootstrapCollapse('show') setTimeout(done, 0) }) test('should remove "collapsed" class from active accordion target', function (assert) { var done = assert.async() var accordionHTML = '
' + '
' + '
' + '
' + '
' var $groups = $(accordionHTML).appendTo('#qunit-fixture').find('.panel') var $target1 = $('
').appendTo($groups.eq(0)) $('
').appendTo($groups.eq(0)) var $target2 = $('
').appendTo($groups.eq(0)) $('
').appendTo($groups.eq(0)) var $target2 = $('
').appendTo('#qunit-fixture') $('
') .appendTo('#qunit-fixture') .on('hidden.bs.collapse', function () { equal($target.attr('aria-expanded'), 'false', 'aria-expanded on target is "false"') done() }) $target.click() }) test('should change aria-expanded from active accordion target to "false" and set the newly active one to "true"', function (assert) { var done = assert.async() var accordionHTML = '
' + '
' + '
' + '
' + '
' var $groups = $(accordionHTML).appendTo('#qunit-fixture').find('.panel') var $target1 = $('
').appendTo($groups.eq(0)) $('
').appendTo($groups.eq(0)) var $target2 = $('