2011-09-10 01:47:49 -04:00
|
|
|
$(function () {
|
2014-03-17 03:12:55 -04:00
|
|
|
'use strict';
|
2011-09-10 01:47:49 -04:00
|
|
|
|
2014-04-22 01:03:33 -04:00
|
|
|
module('modal plugin')
|
2014-02-13 02:55:12 -05:00
|
|
|
|
|
|
|
test('should be defined on jquery object', function () {
|
2014-06-18 15:34:21 -04:00
|
|
|
ok($(document.body).modal, 'modal method is defined')
|
2014-02-13 02:55:12 -05:00
|
|
|
})
|
|
|
|
|
2014-04-22 01:03:33 -04:00
|
|
|
module('modal', {
|
2014-03-17 03:12:55 -04:00
|
|
|
setup: function () {
|
2014-04-22 01:03:33 -04:00
|
|
|
// Run all tests in noConflict mode -- it's the only way to ensure that the plugin works in noConflict mode
|
|
|
|
$.fn.bootstrapModal = $.fn.modal.noConflict()
|
|
|
|
},
|
2014-03-17 03:12:55 -04:00
|
|
|
teardown: function () {
|
2014-04-22 01:03:33 -04:00
|
|
|
$.fn.modal = $.fn.bootstrapModal
|
|
|
|
delete $.fn.bootstrapModal
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
test('should provide no conflict', function () {
|
2014-06-18 15:34:21 -04:00
|
|
|
strictEqual($.fn.modal, undefined, 'modal was set back to undefined (orig value)')
|
2014-04-22 01:03:33 -04:00
|
|
|
})
|
|
|
|
|
2014-06-18 15:34:21 -04:00
|
|
|
test('should return jquery collection containing the element', function () {
|
|
|
|
var $el = $('<div id="modal-test"/>')
|
|
|
|
var $modal = $el.bootstrapModal()
|
|
|
|
ok($modal instanceof $, 'returns jquery collection')
|
|
|
|
strictEqual($modal[0], $el[0], 'collection contains element')
|
2014-02-13 02:55:12 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
test('should expose defaults var for settings', function () {
|
2014-04-22 01:03:33 -04:00
|
|
|
ok($.fn.bootstrapModal.Constructor.DEFAULTS, 'default object exposed')
|
2014-02-13 02:55:12 -05:00
|
|
|
})
|
|
|
|
|
2015-01-20 22:40:50 -05:00
|
|
|
test('should insert into dom when show method is called', function (assert) {
|
|
|
|
var done = assert.async()
|
2014-06-18 15:34:21 -04:00
|
|
|
|
|
|
|
$('<div id="modal-test"/>')
|
2014-02-13 02:55:12 -05:00
|
|
|
.on('shown.bs.modal', function () {
|
2014-06-18 15:34:21 -04:00
|
|
|
notEqual($('#modal-test').length, 0, 'modal inserted into dom')
|
2015-01-20 22:40:50 -05:00
|
|
|
done()
|
2014-02-13 02:55:12 -05:00
|
|
|
})
|
2014-04-22 01:03:33 -04:00
|
|
|
.bootstrapModal('show')
|
2014-02-13 02:55:12 -05:00
|
|
|
})
|
|
|
|
|
2015-01-20 22:40:50 -05:00
|
|
|
test('should fire show event', function (assert) {
|
|
|
|
var done = assert.async()
|
2014-06-18 15:34:21 -04:00
|
|
|
|
|
|
|
$('<div id="modal-test"/>')
|
2014-02-13 02:55:12 -05:00
|
|
|
.on('show.bs.modal', function () {
|
2014-06-18 15:34:21 -04:00
|
|
|
ok(true, 'show event fired')
|
2015-01-20 22:40:50 -05:00
|
|
|
done()
|
2014-02-13 02:55:12 -05:00
|
|
|
})
|
2014-04-22 01:03:33 -04:00
|
|
|
.bootstrapModal('show')
|
2014-02-13 02:55:12 -05:00
|
|
|
})
|
|
|
|
|
2015-01-20 22:40:50 -05:00
|
|
|
test('should not fire shown when show was prevented', function (assert) {
|
|
|
|
var done = assert.async()
|
2014-06-18 15:34:21 -04:00
|
|
|
|
|
|
|
$('<div id="modal-test"/>')
|
2014-02-13 02:55:12 -05:00
|
|
|
.on('show.bs.modal', function (e) {
|
|
|
|
e.preventDefault()
|
2014-06-18 15:34:21 -04:00
|
|
|
ok(true, 'show event fired')
|
2015-01-20 22:40:50 -05:00
|
|
|
done()
|
2014-02-13 02:55:12 -05:00
|
|
|
})
|
|
|
|
.on('shown.bs.modal', function () {
|
2014-06-18 15:34:21 -04:00
|
|
|
ok(false, 'shown event fired')
|
2014-02-13 02:55:12 -05:00
|
|
|
})
|
2014-04-22 01:03:33 -04:00
|
|
|
.bootstrapModal('show')
|
2014-02-13 02:55:12 -05:00
|
|
|
})
|
|
|
|
|
2015-01-20 22:40:50 -05:00
|
|
|
test('should hide modal when hide is called', function (assert) {
|
|
|
|
var done = assert.async()
|
2014-02-13 02:55:12 -05:00
|
|
|
|
2014-06-18 15:34:21 -04:00
|
|
|
$('<div id="modal-test"/>')
|
2014-02-13 02:55:12 -05:00
|
|
|
.on('shown.bs.modal', function () {
|
|
|
|
ok($('#modal-test').is(':visible'), 'modal visible')
|
2014-06-18 15:34:21 -04:00
|
|
|
notEqual($('#modal-test').length, 0, 'modal inserted into dom')
|
2014-04-22 01:03:33 -04:00
|
|
|
$(this).bootstrapModal('hide')
|
2014-02-13 02:55:12 -05:00
|
|
|
})
|
|
|
|
.on('hidden.bs.modal', function () {
|
|
|
|
ok(!$('#modal-test').is(':visible'), 'modal hidden')
|
2015-01-20 22:40:50 -05:00
|
|
|
done()
|
2014-02-13 02:55:12 -05:00
|
|
|
})
|
2014-04-22 01:03:33 -04:00
|
|
|
.bootstrapModal('show')
|
2014-02-13 02:55:12 -05:00
|
|
|
})
|
|
|
|
|
2015-01-20 22:40:50 -05:00
|
|
|
test('should toggle when toggle is called', function (assert) {
|
|
|
|
var done = assert.async()
|
2014-06-18 15:34:21 -04:00
|
|
|
|
|
|
|
$('<div id="modal-test"/>')
|
2014-02-13 02:55:12 -05:00
|
|
|
.on('shown.bs.modal', function () {
|
|
|
|
ok($('#modal-test').is(':visible'), 'modal visible')
|
2014-06-18 15:34:21 -04:00
|
|
|
notEqual($('#modal-test').length, 0, 'modal inserted into dom')
|
|
|
|
$(this).bootstrapModal('toggle')
|
2014-02-13 02:55:12 -05:00
|
|
|
})
|
|
|
|
.on('hidden.bs.modal', function () {
|
|
|
|
ok(!$('#modal-test').is(':visible'), 'modal hidden')
|
2015-01-20 22:40:50 -05:00
|
|
|
done()
|
2014-02-13 02:55:12 -05:00
|
|
|
})
|
2014-04-22 01:03:33 -04:00
|
|
|
.bootstrapModal('toggle')
|
2014-02-13 02:55:12 -05:00
|
|
|
})
|
|
|
|
|
2015-01-20 22:40:50 -05:00
|
|
|
test('should remove from dom when click [data-dismiss="modal"]', function (assert) {
|
|
|
|
var done = assert.async()
|
2014-06-18 15:34:21 -04:00
|
|
|
|
|
|
|
$('<div id="modal-test"><span class="close" data-dismiss="modal"/></div>')
|
2014-02-13 02:55:12 -05:00
|
|
|
.on('shown.bs.modal', function () {
|
|
|
|
ok($('#modal-test').is(':visible'), 'modal visible')
|
2014-06-18 15:34:21 -04:00
|
|
|
notEqual($('#modal-test').length, 0, 'modal inserted into dom')
|
|
|
|
$(this).find('.close').click()
|
2014-02-13 02:55:12 -05:00
|
|
|
})
|
|
|
|
.on('hidden.bs.modal', function () {
|
|
|
|
ok(!$('#modal-test').is(':visible'), 'modal hidden')
|
2015-01-20 22:40:50 -05:00
|
|
|
done()
|
2014-02-13 02:55:12 -05:00
|
|
|
})
|
2014-04-22 01:03:33 -04:00
|
|
|
.bootstrapModal('toggle')
|
2014-02-13 02:55:12 -05:00
|
|
|
})
|
|
|
|
|
2015-01-20 22:40:50 -05:00
|
|
|
test('should allow modal close with "backdrop:false"', function (assert) {
|
|
|
|
var done = assert.async()
|
2014-06-18 15:34:21 -04:00
|
|
|
|
|
|
|
$('<div id="modal-test" data-backdrop="false"/>')
|
2014-02-13 02:55:12 -05:00
|
|
|
.on('shown.bs.modal', function () {
|
|
|
|
ok($('#modal-test').is(':visible'), 'modal visible')
|
2014-06-18 15:34:21 -04:00
|
|
|
$(this).bootstrapModal('hide')
|
2014-02-13 02:55:12 -05:00
|
|
|
})
|
|
|
|
.on('hidden.bs.modal', function () {
|
|
|
|
ok(!$('#modal-test').is(':visible'), 'modal hidden')
|
2015-01-20 22:40:50 -05:00
|
|
|
done()
|
2014-02-13 02:55:12 -05:00
|
|
|
})
|
2014-04-22 01:03:33 -04:00
|
|
|
.bootstrapModal('show')
|
2014-02-13 02:55:12 -05:00
|
|
|
})
|
|
|
|
|
2015-01-20 22:40:50 -05:00
|
|
|
test('should close modal when clicking outside of modal-content', function (assert) {
|
|
|
|
var done = assert.async()
|
2014-06-18 15:34:21 -04:00
|
|
|
|
|
|
|
$('<div id="modal-test"><div class="contents"/></div>')
|
2014-04-03 21:13:16 -04:00
|
|
|
.on('shown.bs.modal', function () {
|
2014-06-18 15:34:21 -04:00
|
|
|
notEqual($('#modal-test').length, 0, 'modal insterted into dom')
|
2014-02-13 02:55:12 -05:00
|
|
|
$('.contents').click()
|
|
|
|
ok($('#modal-test').is(':visible'), 'modal visible')
|
2014-10-03 01:39:48 -04:00
|
|
|
$('#modal-test .modal-backdrop').click()
|
2014-02-13 02:55:12 -05:00
|
|
|
})
|
2014-04-03 21:13:16 -04:00
|
|
|
.on('hidden.bs.modal', function () {
|
2014-02-13 02:55:12 -05:00
|
|
|
ok(!$('#modal-test').is(':visible'), 'modal hidden')
|
2015-01-20 22:40:50 -05:00
|
|
|
done()
|
2014-02-13 02:55:12 -05:00
|
|
|
})
|
2014-04-22 01:03:33 -04:00
|
|
|
.bootstrapModal('show')
|
2014-02-13 02:55:12 -05:00
|
|
|
})
|
|
|
|
|
2015-01-20 22:40:50 -05:00
|
|
|
test('should close modal when escape key is pressed via keydown', function (assert) {
|
|
|
|
var done = assert.async()
|
2014-06-30 23:50:31 -04:00
|
|
|
|
|
|
|
var div = $('<div id="modal-test"/>')
|
|
|
|
div
|
|
|
|
.on('shown.bs.modal', function () {
|
|
|
|
ok($('#modal-test').length, 'modal insterted into dom')
|
|
|
|
ok($('#modal-test').is(':visible'), 'modal visible')
|
|
|
|
div.trigger($.Event('keydown', { which: 27 }))
|
|
|
|
|
|
|
|
setTimeout(function () {
|
|
|
|
ok(!$('#modal-test').is(':visible'), 'modal hidden')
|
|
|
|
div.remove()
|
2015-01-20 22:40:50 -05:00
|
|
|
done()
|
2014-06-30 23:50:31 -04:00
|
|
|
}, 0)
|
|
|
|
})
|
|
|
|
.bootstrapModal('show')
|
|
|
|
})
|
|
|
|
|
2015-01-20 22:40:50 -05:00
|
|
|
test('should not close modal when escape key is pressed via keyup', function (assert) {
|
|
|
|
var done = assert.async()
|
2014-06-30 23:50:31 -04:00
|
|
|
|
|
|
|
var div = $('<div id="modal-test"/>')
|
|
|
|
div
|
|
|
|
.on('shown.bs.modal', function () {
|
|
|
|
ok($('#modal-test').length, 'modal insterted into dom')
|
|
|
|
ok($('#modal-test').is(':visible'), 'modal visible')
|
|
|
|
div.trigger($.Event('keyup', { which: 27 }))
|
|
|
|
|
|
|
|
setTimeout(function () {
|
|
|
|
ok($('#modal-test').is(':visible'), 'modal still visible')
|
|
|
|
div.remove()
|
2015-01-20 22:40:50 -05:00
|
|
|
done()
|
2014-06-30 23:50:31 -04:00
|
|
|
}, 0)
|
|
|
|
})
|
|
|
|
.bootstrapModal('show')
|
|
|
|
})
|
|
|
|
|
2015-01-20 22:40:50 -05:00
|
|
|
test('should trigger hide event once when clicking outside of modal-content', function (assert) {
|
|
|
|
var done = assert.async()
|
2014-02-13 02:55:12 -05:00
|
|
|
|
|
|
|
var triggered
|
|
|
|
|
2014-06-18 15:34:21 -04:00
|
|
|
$('<div id="modal-test"><div class="contents"/></div>')
|
2014-04-03 21:13:16 -04:00
|
|
|
.on('shown.bs.modal', function () {
|
2014-02-13 02:55:12 -05:00
|
|
|
triggered = 0
|
2014-10-03 01:39:48 -04:00
|
|
|
$('#modal-test .modal-backdrop').click()
|
2014-02-13 02:55:12 -05:00
|
|
|
})
|
2014-04-03 21:13:16 -04:00
|
|
|
.on('hide.bs.modal', function () {
|
2014-02-13 02:55:12 -05:00
|
|
|
triggered += 1
|
2014-06-18 15:34:21 -04:00
|
|
|
strictEqual(triggered, 1, 'modal hide triggered once')
|
2015-01-20 22:40:50 -05:00
|
|
|
done()
|
2014-02-13 02:55:12 -05:00
|
|
|
})
|
2014-04-22 01:03:33 -04:00
|
|
|
.bootstrapModal('show')
|
2014-02-13 02:55:12 -05:00
|
|
|
})
|
|
|
|
|
2015-01-20 22:40:50 -05:00
|
|
|
test('should close reopened modal with [data-dismiss="modal"] click', function (assert) {
|
|
|
|
var done = assert.async()
|
2014-06-18 15:34:21 -04:00
|
|
|
|
|
|
|
$('<div id="modal-test"><div class="contents"><div id="close" data-dismiss="modal"/></div></div>')
|
2014-04-03 21:13:16 -04:00
|
|
|
.on('shown.bs.modal', function () {
|
2014-02-13 02:55:12 -05:00
|
|
|
$('#close').click()
|
|
|
|
ok(!$('#modal-test').is(':visible'), 'modal hidden')
|
|
|
|
})
|
|
|
|
.one('hidden.bs.modal', function () {
|
2014-06-18 15:34:21 -04:00
|
|
|
$(this)
|
|
|
|
.one('hidden.bs.modal', function () {
|
2015-01-20 22:40:50 -05:00
|
|
|
done()
|
2014-06-18 15:34:21 -04:00
|
|
|
})
|
|
|
|
.bootstrapModal('show')
|
2014-02-13 02:55:12 -05:00
|
|
|
})
|
2014-04-22 01:03:33 -04:00
|
|
|
.bootstrapModal('show')
|
2014-02-13 02:55:12 -05:00
|
|
|
})
|
2014-05-19 04:25:52 -04:00
|
|
|
|
2015-01-20 22:40:50 -05:00
|
|
|
test('should restore focus to toggling element when modal is hidden after having been opened via data-api', function (assert) {
|
|
|
|
var done = assert.async()
|
2014-06-18 15:34:21 -04:00
|
|
|
|
|
|
|
var $toggleBtn = $('<button data-toggle="modal" data-target="#modal-test"/>').appendTo('#qunit-fixture')
|
|
|
|
|
|
|
|
$('<div id="modal-test"><div class="contents"><div id="close" data-dismiss="modal"/></div></div>')
|
2014-05-19 04:25:52 -04:00
|
|
|
.on('hidden.bs.modal', function () {
|
2014-06-18 15:34:21 -04:00
|
|
|
setTimeout(function () {
|
|
|
|
ok($(document.activeElement).is($toggleBtn), 'toggling element is once again focused')
|
2015-01-20 22:40:50 -05:00
|
|
|
done()
|
2014-05-19 04:25:52 -04:00
|
|
|
}, 0)
|
|
|
|
})
|
|
|
|
.on('shown.bs.modal', function () {
|
|
|
|
$('#close').click()
|
|
|
|
})
|
|
|
|
.appendTo('#qunit-fixture')
|
2014-06-18 15:34:21 -04:00
|
|
|
|
|
|
|
$toggleBtn.click()
|
2014-05-19 04:25:52 -04:00
|
|
|
})
|
|
|
|
|
2015-01-20 22:40:50 -05:00
|
|
|
test('should not restore focus to toggling element if the associated show event gets prevented', function (assert) {
|
|
|
|
var done = assert.async()
|
2014-06-18 15:34:21 -04:00
|
|
|
var $toggleBtn = $('<button data-toggle="modal" data-target="#modal-test"/>').appendTo('#qunit-fixture')
|
|
|
|
var $otherBtn = $('<button id="other-btn"/>').appendTo('#qunit-fixture')
|
|
|
|
|
|
|
|
$('<div id="modal-test"><div class="contents"><div id="close" data-dismiss="modal"/></div>')
|
2014-05-19 04:25:52 -04:00
|
|
|
.one('show.bs.modal', function (e) {
|
|
|
|
e.preventDefault()
|
2014-06-18 15:34:21 -04:00
|
|
|
$otherBtn.focus()
|
|
|
|
setTimeout($.proxy(function () {
|
|
|
|
$(this).bootstrapModal('show')
|
|
|
|
}, this), 0)
|
2014-05-19 04:25:52 -04:00
|
|
|
})
|
|
|
|
.on('hidden.bs.modal', function () {
|
2014-06-18 15:34:21 -04:00
|
|
|
setTimeout(function () {
|
|
|
|
ok($(document.activeElement).is($otherBtn), 'focus returned to toggling element')
|
2015-01-20 22:40:50 -05:00
|
|
|
done()
|
2014-05-19 04:25:52 -04:00
|
|
|
}, 0)
|
|
|
|
})
|
|
|
|
.on('shown.bs.modal', function () {
|
|
|
|
$('#close').click()
|
|
|
|
})
|
|
|
|
.appendTo('#qunit-fixture')
|
2014-06-18 15:34:21 -04:00
|
|
|
|
|
|
|
$toggleBtn.click()
|
2014-05-19 04:25:52 -04:00
|
|
|
})
|
2013-04-23 03:34:27 -04:00
|
|
|
})
|