0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-29 11:24:18 +01:00
Bootstrap/js/tests/unit/alert.js

73 lines
2.4 KiB
JavaScript
Raw Normal View History

$(function () {
2014-03-17 08:12:55 +01:00
'use strict';
module('alert plugin')
2014-02-13 08:55:12 +01:00
test('should be defined on jquery object', function () {
ok($(document.body).alert, 'alert method is defined')
})
module('alert', {
2014-03-17 08:12:55 +01:00
setup: function () {
// Run all tests in noConflict mode -- it's the only way to ensure that the plugin works in noConflict mode
$.fn.bootstrapAlert = $.fn.alert.noConflict()
},
2014-03-17 08:12:55 +01:00
teardown: function () {
$.fn.alert = $.fn.bootstrapAlert
delete $.fn.bootstrapAlert
}
})
test('should provide no conflict', function () {
2014-06-18 21:33:30 +02:00
strictEqual($.fn.alert, undefined, 'alert was set back to undefined (org value)')
})
2014-06-18 21:33:30 +02:00
test('should return jquery collection containing the element', function () {
var $el = $('<div/>')
var $alert = $el.bootstrapAlert()
ok($alert instanceof $, 'returns jquery collection')
strictEqual($alert[0], $el[0], 'collection contains element')
2014-02-13 08:55:12 +01:00
})
test('should fade element out on clicking .close', function () {
var alertHTML = '<div class="alert alert-danger fade in">'
2014-07-06 11:56:12 +02:00
+ '<a class="close" href="#" data-dismiss="alert">×</a>'
+ '<p><strong>Holy guacamole!</strong> Best check yo self, you\'re not looking too good.</p>'
+ '</div>'
2014-06-18 21:33:30 +02:00
var $alert = $(alertHTML).bootstrapAlert()
2014-02-13 08:55:12 +01:00
2014-06-18 21:33:30 +02:00
$alert.find('.close').click()
2014-02-13 08:55:12 +01:00
2014-06-18 21:33:30 +02:00
equal($alert.hasClass('in'), false, 'remove .in class on .close click')
2014-02-13 08:55:12 +01:00
})
test('should remove element when clicking .close', function () {
var alertHTML = '<div class="alert alert-danger fade in">'
2014-07-06 11:56:12 +02:00
+ '<a class="close" href="#" data-dismiss="alert">×</a>'
+ '<p><strong>Holy guacamole!</strong> Best check yo self, you\'re not looking too good.</p>'
+ '</div>'
2014-06-18 21:33:30 +02:00
var $alert = $(alertHTML).appendTo('#qunit-fixture').bootstrapAlert()
2014-02-13 08:55:12 +01:00
notEqual($('#qunit-fixture').find('.alert').length, 0, 'element added to dom')
2014-02-13 08:55:12 +01:00
2014-06-18 21:33:30 +02:00
$alert.find('.close').click()
2014-02-13 08:55:12 +01:00
equal($('#qunit-fixture').find('.alert').length, 0, 'element removed from dom')
2014-02-13 08:55:12 +01:00
})
test('should not fire closed when close is prevented', function (assert) {
var done = assert.async()
2014-02-13 08:55:12 +01:00
$('<div class="alert"/>')
.on('close.bs.alert', function (e) {
2014-02-17 20:56:46 +01:00
e.preventDefault()
2014-06-18 21:33:30 +02:00
ok(true, 'close event fired')
done()
})
2014-02-13 08:55:12 +01:00
.on('closed.bs.alert', function () {
2014-06-18 21:33:30 +02:00
ok(false, 'closed event fired')
})
.bootstrapAlert('close')
2014-02-13 08:55:12 +01:00
})
})