1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00
twbs--bootstrap/js/tests/unit/modal.js

196 lines
5.9 KiB
JavaScript
Raw Normal View History

$(function () {
2013-09-18 12:50:02 -04:00
module('modal')
2013-09-18 12:50:02 -04:00
test('should provide no conflict', function () {
2013-08-10 16:35:20 -04:00
var modal = $.fn.modal.noConflict()
ok(!$.fn.modal, 'modal was set back to undefined (org value)')
$.fn.modal = modal
})
2013-09-18 12:50:02 -04:00
test('should be defined on jquery object', function () {
var div = $('<div id="modal-test"></div>')
2013-08-10 16:35:20 -04:00
ok(div.modal, 'modal method is defined')
})
2013-09-18 12:50:02 -04:00
test('should return element', function () {
var div = $('<div id="modal-test"></div>')
2013-08-10 16:35:20 -04:00
ok(div.modal() == div, 'document.body returned')
$('#modal-test').remove()
})
2013-09-18 12:50:02 -04:00
test('should expose defaults var for settings', function () {
2013-08-10 16:35:20 -04:00
ok($.fn.modal.Constructor.DEFAULTS, 'default object exposed')
})
2013-09-18 12:50:02 -04:00
test('should insert into dom when show method is called', function () {
2013-08-10 16:35:20 -04:00
stop()
$.support.transition = false
2013-09-18 12:50:02 -04:00
$('<div id="modal-test"></div>')
.on('shown.bs.modal', function () {
2013-08-10 16:35:20 -04:00
ok($('#modal-test').length, 'modal inserted into dom')
$(this).remove()
start()
})
2013-09-18 12:50:02 -04:00
.modal('show')
2013-08-10 16:35:20 -04:00
})
2013-09-18 12:50:02 -04:00
test('should fire show event', function () {
2013-08-10 16:35:20 -04:00
stop()
$.support.transition = false
2013-09-18 12:50:02 -04:00
$('<div id="modal-test"></div>')
.on('show.bs.modal', function () {
ok(true, 'show was called')
2013-08-10 16:35:20 -04:00
})
2013-09-18 12:50:02 -04:00
.on('shown.bs.modal', function () {
2013-08-10 16:35:20 -04:00
$(this).remove()
start()
})
2013-09-18 12:50:02 -04:00
.modal('show')
2013-08-10 16:35:20 -04:00
})
2013-09-18 12:50:02 -04:00
test('should not fire shown when default prevented', function () {
2013-08-10 16:35:20 -04:00
stop()
$.support.transition = false
2013-09-18 12:50:02 -04:00
$('<div id="modal-test"></div>')
.on('show.bs.modal', function (e) {
2013-08-10 16:35:20 -04:00
e.preventDefault()
2013-09-18 12:50:02 -04:00
ok(true, 'show was called')
2013-08-10 16:35:20 -04:00
start()
})
2013-09-18 12:50:02 -04:00
.on('shown.bs.modal', function () {
ok(false, 'shown was called')
2013-08-10 16:35:20 -04:00
})
2013-09-18 12:50:02 -04:00
.modal('show')
2013-08-10 16:35:20 -04:00
})
2013-09-18 12:50:02 -04:00
test('should hide modal when hide is called', function () {
2013-08-10 16:35:20 -04:00
stop()
$.support.transition = false
2013-09-18 12:50:02 -04:00
$('<div id="modal-test"></div>')
.on('shown.bs.modal', function () {
ok($('#modal-test').is(':visible'), 'modal visible')
2013-08-10 16:35:20 -04:00
ok($('#modal-test').length, 'modal inserted into dom')
2013-09-18 12:50:02 -04:00
$(this).modal('hide')
2013-08-10 16:35:20 -04:00
})
2013-09-18 12:50:02 -04:00
.on('hidden.bs.modal', function () {
ok(!$('#modal-test').is(':visible'), 'modal hidden')
2013-08-10 16:35:20 -04:00
$('#modal-test').remove()
start()
})
2013-09-18 12:50:02 -04:00
.modal('show')
2013-08-10 16:35:20 -04:00
})
2013-09-18 12:50:02 -04:00
test('should toggle when toggle is called', function () {
2013-08-10 16:35:20 -04:00
stop()
$.support.transition = false
2013-09-18 12:50:02 -04:00
var div = $('<div id="modal-test"></div>')
2013-08-10 16:35:20 -04:00
div
2013-09-18 12:50:02 -04:00
.on('shown.bs.modal', function () {
ok($('#modal-test').is(':visible'), 'modal visible')
2013-08-10 16:35:20 -04:00
ok($('#modal-test').length, 'modal inserted into dom')
2013-09-18 12:50:02 -04:00
div.modal('toggle')
2013-08-10 16:35:20 -04:00
})
2013-09-18 12:50:02 -04:00
.on('hidden.bs.modal', function () {
ok(!$('#modal-test').is(':visible'), 'modal hidden')
2013-08-10 16:35:20 -04:00
div.remove()
start()
})
2013-09-18 12:50:02 -04:00
.modal('toggle')
2013-08-10 16:35:20 -04:00
})
2013-09-18 12:50:02 -04:00
test('should remove from dom when click [data-dismiss=modal]', function () {
2013-08-10 16:35:20 -04:00
stop()
$.support.transition = false
2013-09-18 12:50:02 -04:00
var div = $('<div id="modal-test"><span class="close" data-dismiss="modal"></span></div>')
2013-08-10 16:35:20 -04:00
div
2013-09-18 12:50:02 -04:00
.on('shown.bs.modal', function () {
ok($('#modal-test').is(':visible'), 'modal visible')
2013-08-10 16:35:20 -04:00
ok($('#modal-test').length, 'modal inserted into dom')
div.find('.close').click()
})
2013-09-18 12:50:02 -04:00
.on('hidden.bs.modal', function () {
ok(!$('#modal-test').is(':visible'), 'modal hidden')
2013-08-10 16:35:20 -04:00
div.remove()
start()
})
2013-09-18 12:50:02 -04:00
.modal('toggle')
2013-08-10 16:35:20 -04:00
})
2013-03-01 00:15:33 -05:00
2013-09-18 12:50:02 -04:00
test('should allow modal close with "backdrop:false"', function () {
2013-08-10 16:35:20 -04:00
stop()
$.support.transition = false
2013-09-18 12:50:02 -04:00
var div = $('<div>', { id: 'modal-test', 'data-backdrop': false })
2013-08-10 16:35:20 -04:00
div
2013-09-18 12:50:02 -04:00
.on('shown.bs.modal', function () {
ok($('#modal-test').is(':visible'), 'modal visible')
div.modal('hide')
2013-08-10 16:35:20 -04:00
})
2013-09-18 12:50:02 -04:00
.on('hidden.bs.modal', function () {
ok(!$('#modal-test').is(':visible'), 'modal hidden')
2013-08-10 16:35:20 -04:00
div.remove()
start()
})
2013-09-18 12:50:02 -04:00
.modal('show')
2013-08-10 16:35:20 -04:00
})
2013-07-18 02:01:33 -04:00
2013-09-18 12:50:02 -04:00
test('should close modal when clicking outside of modal-content', function () {
2013-08-10 16:35:20 -04:00
stop()
$.support.transition = false
2013-09-18 12:50:02 -04:00
var div = $('<div id="modal-test"><div class="contents"></div></div>')
2013-08-10 16:35:20 -04:00
div
2013-09-18 12:50:02 -04:00
.bind('shown.bs.modal', function () {
2013-08-10 16:35:20 -04:00
ok($('#modal-test').length, 'modal insterted into dom')
$('.contents').click()
2013-09-18 12:50:02 -04:00
ok($('#modal-test').is(':visible'), 'modal visible')
2013-08-10 16:35:20 -04:00
$('#modal-test').click()
})
2013-09-18 12:50:02 -04:00
.bind('hidden.bs.modal', function () {
ok(!$('#modal-test').is(':visible'), 'modal hidden')
2013-08-10 16:35:20 -04:00
div.remove()
start()
})
2013-09-18 12:50:02 -04:00
.modal('show')
2013-08-10 16:35:20 -04:00
})
2013-09-18 12:50:02 -04:00
test('should trigger hide event once when clicking outside of modal-content', function () {
2013-08-10 16:35:20 -04:00
stop()
$.support.transition = false
2014-01-16 16:33:09 -05:00
2013-08-10 16:35:20 -04:00
var triggered
2014-01-16 16:33:09 -05:00
var div = $('<div id="modal-test"><div class="contents"></div></div>')
2013-08-10 16:35:20 -04:00
div
2013-09-18 12:50:02 -04:00
.bind('shown.bs.modal', function () {
2013-08-10 16:35:20 -04:00
triggered = 0
$('#modal-test').click()
})
2013-09-18 12:50:02 -04:00
.bind('hide.bs.modal', function () {
2013-08-10 16:35:20 -04:00
triggered += 1
ok(triggered === 1, 'modal hide triggered once')
start()
})
2013-09-18 12:50:02 -04:00
.modal('show')
2013-08-10 16:35:20 -04:00
})
2013-08-17 17:24:38 -04:00
2013-09-18 12:50:02 -04:00
test('should close reopened modal with [data-dismiss=modal] click', function () {
2013-08-17 17:24:38 -04:00
stop()
$.support.transition = false
2013-09-18 12:50:02 -04:00
var div = $('<div id="modal-test"><div class="contents"><div id="close" data-dismiss="modal"></div></div></div>')
2013-08-17 17:24:38 -04:00
div
2013-09-18 12:50:02 -04:00
.bind('shown.bs.modal', function () {
2013-08-17 17:24:38 -04:00
$('#close').click()
2013-09-18 12:50:02 -04:00
ok(!$('#modal-test').is(':visible'), 'modal hidden')
2013-08-17 17:24:38 -04:00
})
2013-09-18 12:50:02 -04:00
.one('hidden.bs.modal', function () {
2013-08-17 17:24:38 -04:00
div.one('hidden.bs.modal', function () {
start()
2013-09-18 12:50:02 -04:00
}).modal('show')
2013-08-17 17:24:38 -04:00
})
2013-09-18 12:50:02 -04:00
.modal('show')
2013-08-17 17:24:38 -04:00
div.remove()
})
})