2011-09-10 07:47:49 +02:00
|
|
|
|
$(function () {
|
2016-11-21 15:36:00 +01:00
|
|
|
|
'use strict'
|
2011-09-10 07:47:49 +02:00
|
|
|
|
|
2015-02-24 07:04:48 +01:00
|
|
|
|
QUnit.module('alert plugin')
|
2014-02-13 08:55:12 +01:00
|
|
|
|
|
2015-02-24 07:04:48 +01:00
|
|
|
|
QUnit.test('should be defined on jquery object', function (assert) {
|
2015-03-01 15:33:48 +01:00
|
|
|
|
assert.expect(1)
|
2015-02-24 06:55:07 +01:00
|
|
|
|
assert.ok($(document.body).alert, 'alert method is defined')
|
2014-02-13 08:55:12 +01:00
|
|
|
|
})
|
|
|
|
|
|
2015-02-24 07:04:48 +01:00
|
|
|
|
QUnit.module('alert', {
|
2015-02-26 08:20:42 +01:00
|
|
|
|
beforeEach: 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()
|
|
|
|
|
},
|
2015-02-26 08:20:42 +01:00
|
|
|
|
afterEach: function () {
|
2014-04-22 07:03:33 +02:00
|
|
|
|
$.fn.alert = $.fn.bootstrapAlert
|
|
|
|
|
delete $.fn.bootstrapAlert
|
2018-05-07 15:56:24 +02:00
|
|
|
|
$('#qunit-fixture').html('')
|
2014-04-22 07:03:33 +02:00
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
2015-02-24 07:04:48 +01:00
|
|
|
|
QUnit.test('should provide no conflict', function (assert) {
|
2015-03-01 15:33:48 +01:00
|
|
|
|
assert.expect(1)
|
2017-07-27 12:39:55 +02:00
|
|
|
|
assert.strictEqual(typeof $.fn.alert, 'undefined', 'alert was set back to undefined (org value)')
|
2014-04-22 07:03:33 +02:00
|
|
|
|
})
|
|
|
|
|
|
2015-02-24 07:04:48 +01:00
|
|
|
|
QUnit.test('should return jquery collection containing the element', function (assert) {
|
2015-03-01 15:33:48 +01:00
|
|
|
|
assert.expect(2)
|
2014-06-18 21:33:30 +02:00
|
|
|
|
var $el = $('<div/>')
|
|
|
|
|
var $alert = $el.bootstrapAlert()
|
2015-02-24 06:55:07 +01:00
|
|
|
|
assert.ok($alert instanceof $, 'returns jquery collection')
|
|
|
|
|
assert.strictEqual($alert[0], $el[0], 'collection contains element')
|
2014-02-13 08:55:12 +01:00
|
|
|
|
})
|
|
|
|
|
|
2015-02-24 07:04:48 +01:00
|
|
|
|
QUnit.test('should fade element out on clicking .close', function (assert) {
|
2015-03-01 15:33:48 +01:00
|
|
|
|
assert.expect(1)
|
2017-12-16 13:00:38 +01:00
|
|
|
|
var alertHTML = '<div class="alert alert-danger fade show">' +
|
|
|
|
|
'<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>'
|
2015-05-07 21:48:22 +02:00
|
|
|
|
|
|
|
|
|
var $alert = $(alertHTML).bootstrapAlert().appendTo($('#qunit-fixture'))
|
2014-02-13 08:55:12 +01:00
|
|
|
|
|
2015-03-06 13:34:28 +01:00
|
|
|
|
$alert.find('.close').trigger('click')
|
2014-02-13 08:55:12 +01:00
|
|
|
|
|
2016-10-28 00:13:17 +02:00
|
|
|
|
assert.strictEqual($alert.hasClass('show'), false, 'remove .show class on .close click')
|
2014-02-13 08:55:12 +01:00
|
|
|
|
})
|
|
|
|
|
|
2015-02-24 07:04:48 +01:00
|
|
|
|
QUnit.test('should remove element when clicking .close', function (assert) {
|
2015-03-01 15:33:48 +01:00
|
|
|
|
assert.expect(2)
|
2018-03-20 11:07:58 +01:00
|
|
|
|
var done = assert.async()
|
2017-12-16 13:00:38 +01:00
|
|
|
|
var alertHTML = '<div class="alert alert-danger fade show">' +
|
|
|
|
|
'<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
|
|
|
|
|
2015-02-24 06:55:07 +01:00
|
|
|
|
assert.notEqual($('#qunit-fixture').find('.alert').length, 0, 'element added to dom')
|
2014-02-13 08:55:12 +01:00
|
|
|
|
|
2018-03-20 11:07:58 +01:00
|
|
|
|
$alert
|
|
|
|
|
.one('closed.bs.alert', function () {
|
|
|
|
|
assert.strictEqual($('#qunit-fixture').find('.alert').length, 0, 'element removed from dom')
|
|
|
|
|
done()
|
|
|
|
|
})
|
|
|
|
|
.find('.close')
|
|
|
|
|
.trigger('click')
|
2014-02-13 08:55:12 +01:00
|
|
|
|
})
|
|
|
|
|
|
2015-02-24 07:04:48 +01:00
|
|
|
|
QUnit.test('should not fire closed when close is prevented', function (assert) {
|
2015-03-01 15:33:48 +01:00
|
|
|
|
assert.expect(1)
|
2015-01-21 04:40:50 +01:00
|
|
|
|
var done = assert.async()
|
2017-08-21 09:11:37 +02:00
|
|
|
|
var $alert = $('<div class="alert"/>')
|
|
|
|
|
$alert.appendTo('#qunit-fixture')
|
|
|
|
|
|
|
|
|
|
EventHandler.on($alert[0], 'close.bs.alert', function (e) {
|
|
|
|
|
e.preventDefault()
|
|
|
|
|
assert.ok(true, 'close event fired')
|
|
|
|
|
done()
|
|
|
|
|
})
|
|
|
|
|
EventHandler.on($alert[0], 'closed.bs.alert', function () {
|
|
|
|
|
assert.ok(false, 'closed event fired')
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
$alert.bootstrapAlert('close')
|
2014-02-13 08:55:12 +01:00
|
|
|
|
})
|
2018-04-10 09:28:29 +02:00
|
|
|
|
|
|
|
|
|
QUnit.test('close should use internal _element if no element provided', function (assert) {
|
|
|
|
|
assert.expect(1)
|
|
|
|
|
|
|
|
|
|
var done = assert.async()
|
|
|
|
|
var $el = $('<div/>')
|
|
|
|
|
var $alert = $el.bootstrapAlert()
|
|
|
|
|
var alertInstance = $alert.data('bs.alert')
|
|
|
|
|
|
|
|
|
|
$alert.one('closed.bs.alert', function () {
|
|
|
|
|
assert.ok('alert closed')
|
|
|
|
|
done()
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
alertInstance.close()
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
QUnit.test('dispose should remove data and the element', function (assert) {
|
|
|
|
|
assert.expect(2)
|
|
|
|
|
|
|
|
|
|
var $el = $('<div/>')
|
|
|
|
|
var $alert = $el.bootstrapAlert()
|
|
|
|
|
|
|
|
|
|
assert.ok(typeof $alert.data('bs.alert') !== 'undefined')
|
|
|
|
|
|
|
|
|
|
$alert.data('bs.alert').dispose()
|
|
|
|
|
|
|
|
|
|
assert.ok(typeof $alert.data('bs.button') === 'undefined')
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
QUnit.test('should return alert version', function (assert) {
|
|
|
|
|
assert.expect(1)
|
|
|
|
|
|
|
|
|
|
if (typeof Alert !== 'undefined') {
|
|
|
|
|
assert.ok(typeof Alert.VERSION === 'string')
|
|
|
|
|
} else {
|
|
|
|
|
assert.notOk()
|
|
|
|
|
}
|
|
|
|
|
})
|
2013-04-23 09:34:27 +02:00
|
|
|
|
})
|