2011-09-10 07:47:49 +02:00
|
|
|
|
$(function () {
|
2014-03-17 08:12:55 +01:00
|
|
|
|
'use strict';
|
2011-09-10 07:47:49 +02:00
|
|
|
|
|
2014-04-22 07:03:33 +02:00
|
|
|
|
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')
|
|
|
|
|
})
|
|
|
|
|
|
2014-04-22 07:03:33 +02:00
|
|
|
|
module('alert', {
|
2014-03-17 08:12:55 +01:00
|
|
|
|
setup: function () {
|
2014-04-22 07:03:33 +02:00
|
|
|
|
// 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 () {
|
2014-04-22 07:03:33 +02:00
|
|
|
|
$.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-04-22 07:03:33 +02:00
|
|
|
|
})
|
|
|
|
|
|
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-message warning fade in">' +
|
|
|
|
|
'<a class="close" href="#" data-dismiss="alert">×</a>' +
|
|
|
|
|
'<p><strong>Holy guacamole!</strong> Best check yo self, you\'re not looking too good.</p>' +
|
2014-03-17 08:12:55 +01:00
|
|
|
|
'</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-message warning fade in">' +
|
|
|
|
|
'<a class="close" href="#" data-dismiss="alert">×</a>' +
|
|
|
|
|
'<p><strong>Holy guacamole!</strong> Best check yo self, you\'re not looking too good.</p>' +
|
2014-03-17 08:12:55 +01:00
|
|
|
|
'</div>'
|
2014-06-18 21:33:30 +02:00
|
|
|
|
var $alert = $(alertHTML).appendTo('#qunit-fixture').bootstrapAlert()
|
2014-02-13 08:55:12 +01:00
|
|
|
|
|
2014-06-18 21:33:30 +02:00
|
|
|
|
notEqual($('#qunit-fixture').find('.alert-message').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
|
|
|
|
|
2014-06-18 21:33:30 +02:00
|
|
|
|
equal($('#qunit-fixture').find('.alert-message').length, 0, 'element removed from dom')
|
2014-02-13 08:55:12 +01:00
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
test('should not fire closed when close is prevented', function () {
|
2014-02-17 20:56:46 +01:00
|
|
|
|
stop()
|
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')
|
2014-02-17 20:56:46 +01:00
|
|
|
|
start()
|
2011-09-10 07:47:49 +02:00
|
|
|
|
})
|
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')
|
2012-03-25 03:20:09 +02:00
|
|
|
|
})
|
2014-04-22 07:03:33 +02:00
|
|
|
|
.bootstrapAlert('close')
|
2014-02-13 08:55:12 +01:00
|
|
|
|
})
|
2012-03-25 03:20:09 +02:00
|
|
|
|
|
2013-04-23 09:34:27 +02:00
|
|
|
|
})
|