1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/bootstrap-source/bootstrap-3.0.3/js/tests/unit/modal.js Fri Dec 20 22:49:16 2013 +0100
1.3 @@ -0,0 +1,196 @@
1.4 +$(function () {
1.5 +
1.6 + module("modal")
1.7 +
1.8 + test("should provide no conflict", function () {
1.9 + var modal = $.fn.modal.noConflict()
1.10 + ok(!$.fn.modal, 'modal was set back to undefined (org value)')
1.11 + $.fn.modal = modal
1.12 + })
1.13 +
1.14 + test("should be defined on jquery object", function () {
1.15 + var div = $("<div id='modal-test'></div>")
1.16 + ok(div.modal, 'modal method is defined')
1.17 + })
1.18 +
1.19 + test("should return element", function () {
1.20 + var div = $("<div id='modal-test'></div>")
1.21 + ok(div.modal() == div, 'document.body returned')
1.22 + $('#modal-test').remove()
1.23 + })
1.24 +
1.25 + test("should expose defaults var for settings", function () {
1.26 + ok($.fn.modal.Constructor.DEFAULTS, 'default object exposed')
1.27 + })
1.28 +
1.29 + test("should insert into dom when show method is called", function () {
1.30 + stop()
1.31 + $.support.transition = false
1.32 + $("<div id='modal-test'></div>")
1.33 + .on("shown.bs.modal", function () {
1.34 + ok($('#modal-test').length, 'modal inserted into dom')
1.35 + $(this).remove()
1.36 + start()
1.37 + })
1.38 + .modal("show")
1.39 + })
1.40 +
1.41 + test("should fire show event", function () {
1.42 + stop()
1.43 + $.support.transition = false
1.44 + $("<div id='modal-test'></div>")
1.45 + .on("show.bs.modal", function () {
1.46 + ok(true, "show was called")
1.47 + })
1.48 + .on("shown.bs.modal", function () {
1.49 + $(this).remove()
1.50 + start()
1.51 + })
1.52 + .modal("show")
1.53 + })
1.54 +
1.55 + test("should not fire shown when default prevented", function () {
1.56 + stop()
1.57 + $.support.transition = false
1.58 + $("<div id='modal-test'></div>")
1.59 + .on("show.bs.modal", function (e) {
1.60 + e.preventDefault()
1.61 + ok(true, "show was called")
1.62 + start()
1.63 + })
1.64 + .on("shown.bs.modal", function () {
1.65 + ok(false, "shown was called")
1.66 + })
1.67 + .modal("show")
1.68 + })
1.69 +
1.70 + test("should hide modal when hide is called", function () {
1.71 + stop()
1.72 + $.support.transition = false
1.73 +
1.74 + $("<div id='modal-test'></div>")
1.75 + .on("shown.bs.modal", function () {
1.76 + ok($('#modal-test').is(":visible"), 'modal visible')
1.77 + ok($('#modal-test').length, 'modal inserted into dom')
1.78 + $(this).modal("hide")
1.79 + })
1.80 + .on("hidden.bs.modal", function() {
1.81 + ok(!$('#modal-test').is(":visible"), 'modal hidden')
1.82 + $('#modal-test').remove()
1.83 + start()
1.84 + })
1.85 + .modal("show")
1.86 + })
1.87 +
1.88 + test("should toggle when toggle is called", function () {
1.89 + stop()
1.90 + $.support.transition = false
1.91 + var div = $("<div id='modal-test'></div>")
1.92 + div
1.93 + .on("shown.bs.modal", function () {
1.94 + ok($('#modal-test').is(":visible"), 'modal visible')
1.95 + ok($('#modal-test').length, 'modal inserted into dom')
1.96 + div.modal("toggle")
1.97 + })
1.98 + .on("hidden.bs.modal", function() {
1.99 + ok(!$('#modal-test').is(":visible"), 'modal hidden')
1.100 + div.remove()
1.101 + start()
1.102 + })
1.103 + .modal("toggle")
1.104 + })
1.105 +
1.106 + test("should remove from dom when click [data-dismiss=modal]", function () {
1.107 + stop()
1.108 + $.support.transition = false
1.109 + var div = $("<div id='modal-test'><span class='close' data-dismiss='modal'></span></div>")
1.110 + div
1.111 + .on("shown.bs.modal", function () {
1.112 + ok($('#modal-test').is(":visible"), 'modal visible')
1.113 + ok($('#modal-test').length, 'modal inserted into dom')
1.114 + div.find('.close').click()
1.115 + })
1.116 + .on("hidden.bs.modal", function() {
1.117 + ok(!$('#modal-test').is(":visible"), 'modal hidden')
1.118 + div.remove()
1.119 + start()
1.120 + })
1.121 + .modal("toggle")
1.122 + })
1.123 +
1.124 + test("should allow modal close with 'backdrop:false'", function () {
1.125 + stop()
1.126 + $.support.transition = false
1.127 + var div = $("<div>", { id: 'modal-test', "data-backdrop": false })
1.128 + div
1.129 + .on("shown.bs.modal", function () {
1.130 + ok($('#modal-test').is(":visible"), 'modal visible')
1.131 + div.modal("hide")
1.132 + })
1.133 + .on("hidden.bs.modal", function() {
1.134 + ok(!$('#modal-test').is(":visible"), 'modal hidden')
1.135 + div.remove()
1.136 + start()
1.137 + })
1.138 + .modal("show")
1.139 + })
1.140 +
1.141 + test("should close modal when clicking outside of modal-content", function () {
1.142 + stop()
1.143 + $.support.transition = false
1.144 + var div = $("<div id='modal-test'><div class='contents'></div></div>")
1.145 + div
1.146 + .bind("shown.bs.modal", function () {
1.147 + ok($('#modal-test').length, 'modal insterted into dom')
1.148 + $('.contents').click()
1.149 + ok($('#modal-test').is(":visible"), 'modal visible')
1.150 + $('#modal-test').click()
1.151 + })
1.152 + .bind("hidden.bs.modal", function() {
1.153 + ok(!$('#modal-test').is(":visible"), 'modal hidden')
1.154 + div.remove()
1.155 + start()
1.156 + })
1.157 + .modal("show")
1.158 + })
1.159 +
1.160 + test("should trigger hide event once when clicking outside of modal-content", function () {
1.161 + stop()
1.162 + $.support.transition = false
1.163 + var div = $("<div id='modal-test'><div class='contents'></div></div>")
1.164 + var triggered
1.165 + div
1.166 + .bind("shown.bs.modal", function () {
1.167 + triggered = 0
1.168 + $('#modal-test').click()
1.169 + })
1.170 + .one("hidden.bs.modal", function() {
1.171 + div.modal("show")
1.172 + })
1.173 + .bind("hide.bs.modal", function () {
1.174 + triggered += 1
1.175 + ok(triggered === 1, 'modal hide triggered once')
1.176 + start()
1.177 + })
1.178 + .modal("show")
1.179 + })
1.180 +
1.181 + test("should close reopened modal with [data-dismiss=modal] click", function () {
1.182 + stop()
1.183 + $.support.transition = false
1.184 + var div = $("<div id='modal-test'><div class='contents'><div id='close' data-dismiss='modal'></div></div></div>")
1.185 + div
1.186 + .bind("shown.bs.modal", function () {
1.187 + $('#close').click()
1.188 + ok(!$('#modal-test').is(":visible"), 'modal hidden')
1.189 + })
1.190 + .one("hidden.bs.modal", function() {
1.191 + div.one('hidden.bs.modal', function () {
1.192 + start()
1.193 + }).modal("show")
1.194 + })
1.195 + .modal("show")
1.196 +
1.197 + div.remove()
1.198 + })
1.199 +})