$(function () { 'use strict'; QUnit.module('collapse plugin') QUnit.test('should be defined on jquery object', function (assert) { assert.ok($(document.body).collapse, 'collapse method is defined') }) QUnit.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 } }) QUnit.test('should provide no conflict', function (assert) { assert.strictEqual($.fn.collapse, undefined, 'collapse was set back to undefined (org value)') }) QUnit.test('should return jquery collection containing the element', function (assert) { var $el = $('
') var $collapse = $el.bootstrapCollapse() assert.ok($collapse instanceof $, 'returns jquery collection') assert.strictEqual($collapse[0], $el[0], 'collection contains element') }) QUnit.test('should show a collapsed element', function (assert) { var $el = $('
').bootstrapCollapse('show') assert.ok($el.hasClass('in'), 'has class "in"') assert.ok(!/height/i.test($el.attr('style')), 'has height reset') }) QUnit.test('should hide a collapsed element', function (assert) { var $el = $('
').bootstrapCollapse('hide') assert.ok(!$el.hasClass('in'), 'does not have class "in"') assert.ok(/height/i.test($el.attr('style')), 'has height set') }) QUnit.test('should not fire shown when show is prevented', function (assert) { var done = assert.async() $('
') .on('show.bs.collapse', function (e) { e.preventDefault() assert.ok(true, 'show event fired') done() }) .on('shown.bs.collapse', function () { assert.ok(false, 'shown event fired') }) .bootstrapCollapse('show') }) QUnit.test('should reset style to auto after finishing opening collapse', function (assert) { var done = assert.async() $('
') .on('show.bs.collapse', function () { assert.strictEqual(this.style.height, '0px', 'height is 0px') }) .on('shown.bs.collapse', function () { assert.strictEqual(this.style.height, '', 'height is auto') done() }) .bootstrapCollapse('show') }) QUnit.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 () { assert.ok($target.hasClass('collapsed')) done() }) $target.click() }) QUnit.test('should not close a collapse when initialized with "show" if already shown', function (assert) { var done = assert.async() assert.expect(0) var $test = $('
') .appendTo('#qunit-fixture') .on('hide.bs.collapse', function () { assert.ok(false) }) $test.bootstrapCollapse('show') setTimeout(done, 0) }) QUnit.test('should open a collapse when initialized with "show" if not already shown', function (assert) { var done = assert.async() assert.expect(1) var $test = $('
') .appendTo('#qunit-fixture') .on('show.bs.collapse', function () { assert.ok(true) }) $test.bootstrapCollapse('show') setTimeout(done, 0) }) QUnit.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 () { assert.strictEqual($target.attr('aria-expanded'), 'false', 'aria-expanded on target is "false"') done() }) $target.click() }) QUnit.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 = $('