2011-09-10 15:49:21 -04:00
|
|
|
$(function () {
|
|
|
|
|
2012-01-12 00:42:55 -05:00
|
|
|
module("bootstrap-tooltip")
|
2011-09-10 15:49:21 -04:00
|
|
|
|
2012-12-07 17:06:01 -05:00
|
|
|
test("should provide no conflict", function () {
|
|
|
|
var tooltip = $.fn.tooltip.noConflict()
|
|
|
|
ok(!$.fn.tooltip, 'tooltip was set back to undefined (org value)')
|
|
|
|
$.fn.tooltip = tooltip
|
|
|
|
})
|
|
|
|
|
2011-09-10 15:49:21 -04:00
|
|
|
test("should be defined on jquery object", function () {
|
|
|
|
var div = $("<div></div>")
|
2012-01-12 00:42:55 -05:00
|
|
|
ok(div.tooltip, 'popover method is defined')
|
2011-09-10 15:49:21 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
test("should return element", function () {
|
|
|
|
var div = $("<div></div>")
|
2012-01-12 00:42:55 -05:00
|
|
|
ok(div.tooltip() == div, 'document.body returned')
|
2011-09-10 15:49:21 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
test("should expose default settings", function () {
|
2012-01-12 00:42:55 -05:00
|
|
|
ok(!!$.fn.tooltip.defaults, 'defaults is defined')
|
2011-09-10 15:49:21 -04:00
|
|
|
})
|
|
|
|
|
2013-02-06 06:20:05 -05:00
|
|
|
test("should empty title attribute", function () {
|
2012-01-12 00:42:55 -05:00
|
|
|
var tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"></a>').tooltip()
|
2013-02-06 06:20:05 -05:00
|
|
|
ok(tooltip.attr('title') === '', 'title attribute was emptied')
|
2011-09-10 15:49:21 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
test("should add data attribute for referencing original title", function () {
|
2012-01-12 00:42:55 -05: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 15:49:21 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
test("should place tooltips relative to placement option", function () {
|
|
|
|
$.support.transition = false
|
2012-01-12 00:42:55 -05:00
|
|
|
var tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"></a>')
|
2011-12-20 21:02:47 -05:00
|
|
|
.appendTo('#qunit-fixture')
|
2012-01-12 00:42:55 -05:00
|
|
|
.tooltip({placement: 'bottom'})
|
|
|
|
.tooltip('show')
|
2011-09-10 15:49:21 -04:00
|
|
|
|
2012-05-20 14:10:21 -04:00
|
|
|
ok($(".tooltip").is('.fade.bottom.in'), 'has correct classes applied')
|
2012-01-12 00:42:55 -05:00
|
|
|
tooltip.tooltip('hide')
|
2011-09-10 15:49:21 -04:00
|
|
|
})
|
|
|
|
|
2012-09-25 02:15:36 -04:00
|
|
|
test("should allow html entities", function () {
|
2011-09-10 15:49:21 -04:00
|
|
|
$.support.transition = false
|
2012-01-12 00:42:55 -05:00
|
|
|
var tooltip = $('<a href="#" rel="tooltip" title="<b>@fat</b>"></a>')
|
2011-12-20 21:02:47 -05:00
|
|
|
.appendTo('#qunit-fixture')
|
2012-09-25 02:15:36 -04:00
|
|
|
.tooltip({html: true})
|
2012-01-12 00:42:55 -05:00
|
|
|
.tooltip('show')
|
2011-09-10 15:49:21 -04:00
|
|
|
|
2012-01-12 00:42:55 -05:00
|
|
|
ok($('.tooltip b').length, 'b tag was inserted')
|
|
|
|
tooltip.tooltip('hide')
|
|
|
|
ok(!$(".tooltip").length, 'tooltip removed')
|
2011-09-10 15:49:21 -04:00
|
|
|
})
|
|
|
|
|
2012-01-06 05:32:11 -05:00
|
|
|
test("should respect custom classes", function () {
|
2012-01-12 00:42:55 -05:00
|
|
|
var tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"></a>')
|
2012-01-06 05:32:11 -05:00
|
|
|
.appendTo('#qunit-fixture')
|
2012-01-12 00:42:55 -05:00
|
|
|
.tooltip({ template: '<div class="tooltip some-class"><div class="tooltip-arrow"/><div class="tooltip-inner"/></div>'})
|
|
|
|
.tooltip('show')
|
2012-01-06 05:32:11 -05:00
|
|
|
|
2012-01-12 00:42:55 -05:00
|
|
|
ok($('.tooltip').hasClass('some-class'), 'custom class is present')
|
|
|
|
tooltip.tooltip('hide')
|
|
|
|
ok(!$(".tooltip").length, 'tooltip removed')
|
2012-01-06 05:32:11 -05:00
|
|
|
})
|
|
|
|
|
2012-12-14 02:35:11 -05:00
|
|
|
test("should fire show event", function () {
|
|
|
|
stop()
|
|
|
|
var tooltip = $('<div title="tooltip title"></div>')
|
|
|
|
.bind("show", function() {
|
|
|
|
ok(true, "show was called")
|
|
|
|
start()
|
|
|
|
})
|
|
|
|
.tooltip('show')
|
|
|
|
})
|
|
|
|
|
|
|
|
test("should fire shown event", function () {
|
|
|
|
stop()
|
|
|
|
var tooltip = $('<div title="tooltip title"></div>')
|
|
|
|
.bind("shown", function() {
|
|
|
|
ok(true, "shown was called")
|
|
|
|
start()
|
|
|
|
})
|
|
|
|
.tooltip('show')
|
|
|
|
})
|
|
|
|
|
|
|
|
test("should not fire shown event when default prevented", function () {
|
|
|
|
stop()
|
|
|
|
var tooltip = $('<div title="tooltip title"></div>')
|
|
|
|
.bind("show", function(e) {
|
|
|
|
e.preventDefault()
|
|
|
|
ok(true, "show was called")
|
|
|
|
start()
|
|
|
|
})
|
|
|
|
.bind("shown", function() {
|
|
|
|
ok(false, "shown was called")
|
|
|
|
})
|
|
|
|
.tooltip('show')
|
|
|
|
})
|
|
|
|
|
|
|
|
test("should fire hide event", function () {
|
|
|
|
stop()
|
|
|
|
var tooltip = $('<div title="tooltip title"></div>')
|
|
|
|
.bind("shown", function() {
|
|
|
|
$(this).tooltip('hide')
|
|
|
|
})
|
|
|
|
.bind("hide", function() {
|
|
|
|
ok(true, "hide was called")
|
|
|
|
start()
|
|
|
|
})
|
|
|
|
.tooltip('show')
|
|
|
|
})
|
|
|
|
|
|
|
|
test("should fire hidden event", function () {
|
|
|
|
stop()
|
|
|
|
var tooltip = $('<div title="tooltip title"></div>')
|
|
|
|
.bind("shown", function() {
|
|
|
|
$(this).tooltip('hide')
|
|
|
|
})
|
|
|
|
.bind("hidden", function() {
|
|
|
|
ok(true, "hidden was called")
|
|
|
|
start()
|
|
|
|
})
|
|
|
|
.tooltip('show')
|
|
|
|
})
|
|
|
|
|
|
|
|
test("should not fire hidden event when default prevented", function () {
|
|
|
|
stop()
|
|
|
|
var tooltip = $('<div title="tooltip title"></div>')
|
|
|
|
.bind("shown", function() {
|
|
|
|
$(this).tooltip('hide')
|
|
|
|
})
|
|
|
|
.bind("hide", function(e) {
|
|
|
|
e.preventDefault()
|
|
|
|
ok(true, "hide was called")
|
|
|
|
start()
|
|
|
|
})
|
|
|
|
.bind("hidden", function() {
|
|
|
|
ok(false, "hidden was called")
|
|
|
|
})
|
|
|
|
.tooltip('show')
|
|
|
|
})
|
|
|
|
|
2012-04-15 02:10:03 -04: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 14:10:21 -04:00
|
|
|
ok(!$(".tooltip").is('.fade.in'), 'tooltip is not faded in')
|
2012-04-15 02:10:03 -04:00
|
|
|
tooltip.trigger('mouseout')
|
|
|
|
setTimeout(function () {
|
2012-05-20 14:10:21 -04:00
|
|
|
ok(!$(".tooltip").is('.fade.in'), 'tooltip is not faded in')
|
2012-04-15 02:10:03 -04:00
|
|
|
start()
|
|
|
|
}, 200)
|
|
|
|
}, 100)
|
|
|
|
})
|
|
|
|
|
2012-05-20 13:59:53 -04: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 02:10:03 -04: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 14:10:21 -04:00
|
|
|
ok(!$(".tooltip").is('.fade.in'), 'tooltip is not faded in')
|
2012-04-15 02:10:03 -04:00
|
|
|
tooltip.trigger('mouseout')
|
|
|
|
setTimeout(function () {
|
2012-05-20 14:10:21 -04:00
|
|
|
ok(!$(".tooltip").is('.fade.in'), 'tooltip is not faded in')
|
2012-04-15 02:10:03 -04:00
|
|
|
start()
|
|
|
|
}, 100)
|
|
|
|
}, 50)
|
|
|
|
})
|
|
|
|
|
2012-09-20 19:23:54 -04:00
|
|
|
test("should show tooltip if leave event hasn't occured before delay expires", function () {
|
2012-04-15 02:10:03 -04:00
|
|
|
var tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"></a>')
|
|
|
|
.appendTo('#qunit-fixture')
|
2012-05-31 13:24:23 -04:00
|
|
|
.tooltip({ delay: 150 })
|
2012-04-15 02:10:03 -04:00
|
|
|
stop()
|
|
|
|
tooltip.trigger('mouseenter')
|
|
|
|
setTimeout(function () {
|
2012-05-20 14:10:21 -04:00
|
|
|
ok(!$(".tooltip").is('.fade.in'), 'tooltip is not faded in')
|
2012-04-15 02:10:03 -04:00
|
|
|
}, 100)
|
2012-05-31 13:24:23 -04:00
|
|
|
setTimeout(function () {
|
|
|
|
ok($(".tooltip").is('.fade.in'), 'tooltip has faded in')
|
|
|
|
start()
|
|
|
|
}, 200)
|
2012-04-15 02:10:03 -04:00
|
|
|
})
|
|
|
|
|
2012-06-18 22:51:49 -04:00
|
|
|
test("should destroy tooltip", function () {
|
2012-07-16 19:01:11 -04:00
|
|
|
var tooltip = $('<div/>').tooltip().on('click.foo', function(){})
|
2012-06-18 22:51:49 -04:00
|
|
|
ok(tooltip.data('tooltip'), 'tooltip has data')
|
2012-09-20 19:23:54 -04:00
|
|
|
ok($._data(tooltip[0], 'events').mouseover && $._data(tooltip[0], 'events').mouseout, 'tooltip has hover event')
|
|
|
|
ok($._data(tooltip[0], 'events').click[0].namespace == 'foo', 'tooltip has extra click.foo event')
|
2012-07-20 12:47:12 -04:00
|
|
|
tooltip.tooltip('show')
|
2012-06-18 22:51:49 -04:00
|
|
|
tooltip.tooltip('destroy')
|
2012-07-20 12:47:12 -04:00
|
|
|
ok(!tooltip.hasClass('in'), 'tooltip is hidden')
|
2012-09-20 19:23:54 -04:00
|
|
|
ok(!$._data(tooltip[0], 'tooltip'), 'tooltip does not have data')
|
|
|
|
ok($._data(tooltip[0], 'events').click[0].namespace == 'foo', 'tooltip still has click.foo')
|
|
|
|
ok(!$._data(tooltip[0], 'events').mouseover && !$._data(tooltip[0], 'events').mouseout, 'tooltip does not have any events')
|
2012-06-18 22:51:49 -04:00
|
|
|
})
|
|
|
|
|
2012-10-15 09:17:59 -04:00
|
|
|
test("should show tooltip with delegate selector on click", function () {
|
|
|
|
var div = $('<div><a href="#" rel="tooltip" title="Another tooltip"></a></div>')
|
|
|
|
var tooltip = div.appendTo('#qunit-fixture')
|
|
|
|
.tooltip({ selector: 'a[rel=tooltip]',
|
|
|
|
trigger: 'click' })
|
|
|
|
div.find('a').trigger('click')
|
|
|
|
ok($(".tooltip").is('.fade.in'), 'tooltip is faded in')
|
|
|
|
})
|
2012-12-20 04:36:57 -05:00
|
|
|
|
|
|
|
test("should show tooltip when toggle is called", function () {
|
|
|
|
var tooltip = $('<a href="#" rel="tooltip" title="tooltip on toggle"></a>')
|
|
|
|
.appendTo('#qunit-fixture')
|
|
|
|
.tooltip({trigger: 'manual'})
|
|
|
|
.tooltip('toggle')
|
|
|
|
ok($(".tooltip").is('.fade.in'), 'tooltip should be toggled in')
|
|
|
|
})
|
2012-12-23 04:21:02 -05:00
|
|
|
|
|
|
|
test("should place tooltips inside the body", function () {
|
|
|
|
var tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"></a>')
|
|
|
|
.appendTo('#qunit-fixture')
|
|
|
|
.tooltip({container:'body'})
|
|
|
|
.tooltip('show')
|
|
|
|
ok($("body > .tooltip").length, 'inside the body')
|
|
|
|
ok(!$("#qunit-fixture > .tooltip").length, 'not found in parent')
|
|
|
|
tooltip.tooltip('hide')
|
|
|
|
})
|
2013-01-26 08:06:58 -05:00
|
|
|
|
|
|
|
test("should place tooltip inside window", function(){
|
2013-01-26 15:39:05 -05:00
|
|
|
var container = $("<div />").appendTo("body")
|
|
|
|
.css({position: "absolute", width: 200, height: 200, bottom: 0, left: 0})
|
|
|
|
, tooltip = $("<a href='#' title='Very very very very very very very very long tooltip'>Hover me</a>")
|
2013-01-26 08:06:58 -05:00
|
|
|
.css({position: "absolute", top:0, left: 0})
|
2013-01-26 15:39:05 -05:00
|
|
|
.appendTo(container)
|
|
|
|
.tooltip({placement: "top", animate: false})
|
2013-01-27 04:56:01 -05:00
|
|
|
.tooltip("show")
|
2013-01-26 08:06:58 -05:00
|
|
|
|
2013-01-27 04:56:01 -05:00
|
|
|
stop()
|
2013-01-26 08:06:58 -05:00
|
|
|
|
|
|
|
setTimeout(function(){
|
2013-01-27 04:56:01 -05:00
|
|
|
ok($(".tooltip").offset().left >= 0)
|
2013-01-26 08:06:58 -05:00
|
|
|
|
2013-01-27 04:56:01 -05:00
|
|
|
start()
|
|
|
|
container.remove()
|
2013-01-26 15:39:05 -05:00
|
|
|
}, 100)
|
2013-01-27 04:56:01 -05:00
|
|
|
})
|
2013-01-26 15:39:05 -05:00
|
|
|
|
|
|
|
test("should place tooltip on top of element", function(){
|
|
|
|
var container = $("<div />").appendTo("body")
|
|
|
|
.css({position: "absolute", bottom: 0, left: 0, textAlign: "right", width: 300, height: 300})
|
|
|
|
, p = $("<p style='margin-top:200px' />").appendTo(container)
|
|
|
|
, tooltiped = $("<a href='#' title='very very very very very very very long tooltip'>Hover me</a>")
|
|
|
|
.css({marginTop: 200})
|
|
|
|
.appendTo(p)
|
|
|
|
.tooltip({placement: "top", animate: false})
|
2013-01-27 04:56:01 -05:00
|
|
|
.tooltip("show")
|
2013-01-26 15:39:05 -05:00
|
|
|
|
2013-01-27 04:56:01 -05:00
|
|
|
stop()
|
2013-01-26 15:39:05 -05:00
|
|
|
|
|
|
|
setTimeout(function(){
|
2013-01-27 04:56:01 -05:00
|
|
|
var tooltip = container.find(".tooltip")
|
2013-01-26 15:39:05 -05:00
|
|
|
|
2013-01-27 04:56:01 -05:00
|
|
|
start()
|
|
|
|
ok(tooltip.offset().top + tooltip.outerHeight() <= tooltiped.offset().top)
|
|
|
|
container.remove()
|
2013-01-26 15:39:05 -05:00
|
|
|
}, 100)
|
2013-01-27 04:56:01 -05:00
|
|
|
})
|
2012-12-20 04:36:57 -05:00
|
|
|
})
|