2011-09-10 21:49:21 +02:00
|
|
|
$(function () {
|
|
|
|
|
2012-01-12 06:42:55 +01:00
|
|
|
module("bootstrap-tooltip")
|
2011-09-10 21:49:21 +02:00
|
|
|
|
|
|
|
test("should be defined on jquery object", function () {
|
|
|
|
var div = $("<div></div>")
|
2012-01-12 06:42:55 +01:00
|
|
|
ok(div.tooltip, 'popover method is defined')
|
2011-09-10 21:49:21 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
test("should return element", function () {
|
|
|
|
var div = $("<div></div>")
|
2012-01-12 06:42:55 +01:00
|
|
|
ok(div.tooltip() == div, 'document.body returned')
|
2011-09-10 21:49:21 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
test("should expose default settings", function () {
|
2012-01-12 06:42:55 +01:00
|
|
|
ok(!!$.fn.tooltip.defaults, 'defaults is defined')
|
2011-09-10 21:49:21 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
test("should remove title attribute", function () {
|
2012-01-12 06:42:55 +01:00
|
|
|
var tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"></a>').tooltip()
|
|
|
|
ok(!tooltip.attr('title'), 'title tag was removed')
|
2011-09-10 21:49:21 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
test("should add data attribute for referencing original title", function () {
|
2012-01-12 06:42:55 +01:00
|
|
|
var tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"></a>').tooltip()
|
|
|
|
equals(tooltip.attr('data-original-title'), 'Another tooltip', 'original title preserved in data attribute')
|
2011-09-10 21:49:21 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
test("should place tooltips relative to placement option", function () {
|
|
|
|
$.support.transition = false
|
2012-01-12 06:42:55 +01:00
|
|
|
var tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"></a>')
|
2011-12-21 03:02:47 +01:00
|
|
|
.appendTo('#qunit-fixture')
|
2012-01-12 06:42:55 +01:00
|
|
|
.tooltip({placement: 'bottom'})
|
|
|
|
.tooltip('show')
|
2011-09-10 21:49:21 +02:00
|
|
|
|
2012-05-20 20:10:21 +02:00
|
|
|
ok($(".tooltip").is('.fade.bottom.in'), 'has correct classes applied')
|
2012-01-12 06:42:55 +01:00
|
|
|
tooltip.tooltip('hide')
|
2011-09-10 21:49:21 +02:00
|
|
|
})
|
|
|
|
|
2011-12-21 03:02:47 +01:00
|
|
|
test("should always allow html entities", function () {
|
2011-09-10 21:49:21 +02:00
|
|
|
$.support.transition = false
|
2012-01-12 06:42:55 +01:00
|
|
|
var tooltip = $('<a href="#" rel="tooltip" title="<b>@fat</b>"></a>')
|
2011-12-21 03:02:47 +01:00
|
|
|
.appendTo('#qunit-fixture')
|
2012-01-12 06:42:55 +01:00
|
|
|
.tooltip('show')
|
2011-09-10 21:49:21 +02:00
|
|
|
|
2012-01-12 06:42:55 +01:00
|
|
|
ok($('.tooltip b').length, 'b tag was inserted')
|
|
|
|
tooltip.tooltip('hide')
|
|
|
|
ok(!$(".tooltip").length, 'tooltip removed')
|
2011-09-10 21:49:21 +02:00
|
|
|
})
|
|
|
|
|
2012-01-06 11:32:11 +01:00
|
|
|
test("should respect custom classes", function () {
|
2012-01-12 06:42:55 +01:00
|
|
|
var tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"></a>')
|
2012-01-06 11:32:11 +01:00
|
|
|
.appendTo('#qunit-fixture')
|
2012-01-12 06:42:55 +01:00
|
|
|
.tooltip({ template: '<div class="tooltip some-class"><div class="tooltip-arrow"/><div class="tooltip-inner"/></div>'})
|
|
|
|
.tooltip('show')
|
2012-01-06 11:32:11 +01:00
|
|
|
|
2012-01-12 06:42:55 +01:00
|
|
|
ok($('.tooltip').hasClass('some-class'), 'custom class is present')
|
|
|
|
tooltip.tooltip('hide')
|
|
|
|
ok(!$(".tooltip").length, 'tooltip removed')
|
2012-01-06 11:32:11 +01:00
|
|
|
})
|
|
|
|
|
2012-04-15 08:10:03 +02:00
|
|
|
test("should not show tooltip if leave event occurs before delay expires", function () {
|
|
|
|
var tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"></a>')
|
|
|
|
.appendTo('#qunit-fixture')
|
|
|
|
.tooltip({ delay: 200 })
|
|
|
|
|
|
|
|
stop()
|
|
|
|
|
|
|
|
tooltip.trigger('mouseenter')
|
|
|
|
|
|
|
|
setTimeout(function () {
|
2012-05-20 20:10:21 +02:00
|
|
|
ok(!$(".tooltip").is('.fade.in'), 'tooltip is not faded in')
|
2012-04-15 08:10:03 +02:00
|
|
|
tooltip.trigger('mouseout')
|
|
|
|
setTimeout(function () {
|
2012-05-20 20:10:21 +02:00
|
|
|
ok(!$(".tooltip").is('.fade.in'), 'tooltip is not faded in')
|
2012-04-15 08:10:03 +02:00
|
|
|
start()
|
|
|
|
}, 200)
|
|
|
|
}, 100)
|
|
|
|
})
|
|
|
|
|
2012-05-20 19:59:53 +02:00
|
|
|
test("should not show tooltip if leave event occurs before delay expires, even if hide delay is 0", function () {
|
|
|
|
var tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"></a>')
|
|
|
|
.appendTo('#qunit-fixture')
|
|
|
|
.tooltip({ delay: { show: 200, hide: 0} })
|
|
|
|
|
|
|
|
stop()
|
|
|
|
|
|
|
|
tooltip.trigger('mouseenter')
|
|
|
|
|
|
|
|
setTimeout(function () {
|
|
|
|
ok(!$(".tooltip").is('.fade.in'), 'tooltip is not faded in')
|
|
|
|
tooltip.trigger('mouseout')
|
|
|
|
setTimeout(function () {
|
|
|
|
ok(!$(".tooltip").is('.fade.in'), 'tooltip is not faded in')
|
|
|
|
start()
|
|
|
|
}, 200)
|
|
|
|
}, 100)
|
|
|
|
})
|
|
|
|
|
2012-04-15 08:10:03 +02:00
|
|
|
test("should not show tooltip if leave event occurs before delay expires", function () {
|
|
|
|
var tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"></a>')
|
|
|
|
.appendTo('#qunit-fixture')
|
|
|
|
.tooltip({ delay: 100 })
|
|
|
|
stop()
|
|
|
|
tooltip.trigger('mouseenter')
|
|
|
|
setTimeout(function () {
|
2012-05-20 20:10:21 +02:00
|
|
|
ok(!$(".tooltip").is('.fade.in'), 'tooltip is not faded in')
|
2012-04-15 08:10:03 +02:00
|
|
|
tooltip.trigger('mouseout')
|
|
|
|
setTimeout(function () {
|
2012-05-20 20:10:21 +02:00
|
|
|
ok(!$(".tooltip").is('.fade.in'), 'tooltip is not faded in')
|
2012-04-15 08:10:03 +02:00
|
|
|
start()
|
|
|
|
}, 100)
|
|
|
|
}, 50)
|
|
|
|
})
|
|
|
|
|
|
|
|
test("should show tooltip if leave event hasn't occured before delay expires", function () {
|
|
|
|
var tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"></a>')
|
|
|
|
.appendTo('#qunit-fixture')
|
2012-05-31 19:24:23 +02:00
|
|
|
.tooltip({ delay: 150 })
|
2012-04-15 08:10:03 +02:00
|
|
|
stop()
|
|
|
|
tooltip.trigger('mouseenter')
|
|
|
|
setTimeout(function () {
|
2012-05-20 20:10:21 +02:00
|
|
|
ok(!$(".tooltip").is('.fade.in'), 'tooltip is not faded in')
|
2012-04-15 08:10:03 +02:00
|
|
|
}, 100)
|
2012-05-31 19:24:23 +02:00
|
|
|
setTimeout(function () {
|
|
|
|
ok($(".tooltip").is('.fade.in'), 'tooltip has faded in')
|
|
|
|
start()
|
|
|
|
}, 200)
|
2012-04-15 08:10:03 +02:00
|
|
|
})
|
|
|
|
|
2012-05-20 19:59:53 +02:00
|
|
|
})
|