Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfat <fat@folders.local>2015-05-06 23:34:14 +0300
committerfat <fat@folders.local>2015-05-06 23:34:14 +0300
commitd1fbe200f46002431cdeebf965c4b789ef7ed267 (patch)
tree43a7cc7667492e519b906f8a428935da2972ac14 /js/tests/unit/tooltip.js
parent09fb80568a52af6c440db971cdc6fd88eab8f8b5 (diff)
remove closureness from plugins
Diffstat (limited to 'js/tests/unit/tooltip.js')
-rw-r--r--js/tests/unit/tooltip.js657
1 files changed, 428 insertions, 229 deletions
diff --git a/js/tests/unit/tooltip.js b/js/tests/unit/tooltip.js
index e1205b4c0f..27ce6208e7 100644
--- a/js/tests/unit/tooltip.js
+++ b/js/tests/unit/tooltip.js
@@ -1,284 +1,319 @@
$(function () {
'use strict';
- module('tooltip plugin')
+ QUnit.module('tooltip plugin')
- test('should be defined on jquery object', function () {
- ok($(document.body).tooltip, 'tooltip method is defined')
+ QUnit.test('should be defined on jquery object', function (assert) {
+ assert.expect(1)
+ assert.ok($(document.body).tooltip, 'tooltip method is defined')
})
- module('tooltip', {
- setup: function () {
+ QUnit.module('tooltip', {
+ beforeEach: function () {
// Run all tests in noConflict mode -- it's the only way to ensure that the plugin works in noConflict mode
$.fn.bootstrapTooltip = $.fn.tooltip.noConflict()
},
- teardown: function () {
+ afterEach: function () {
$.fn.tooltip = $.fn.bootstrapTooltip
delete $.fn.bootstrapTooltip
}
})
- test('should provide no conflict', function () {
- strictEqual($.fn.tooltip, undefined, 'tooltip was set back to undefined (org value)')
+ QUnit.test('should provide no conflict', function (assert) {
+ assert.expect(1)
+ assert.strictEqual($.fn.tooltip, undefined, 'tooltip was set back to undefined (org value)')
})
- test('should return jquery collection containing the element', function () {
+ QUnit.test('should return jquery collection containing the element', function (assert) {
+ assert.expect(2)
var $el = $('<div/>')
var $tooltip = $el.bootstrapTooltip()
- ok($tooltip instanceof $, 'returns jquery collection')
- strictEqual($tooltip[0], $el[0], 'collection contains element')
+ assert.ok($tooltip instanceof $, 'returns jquery collection')
+ assert.strictEqual($tooltip[0], $el[0], 'collection contains element')
})
- test('should expose default settings', function () {
- ok($.fn.bootstrapTooltip.Constructor.Defaults, 'defaults is defined')
+ QUnit.test('should expose default settings', function (assert) {
+ assert.expect(1)
+ assert.ok($.fn.bootstrapTooltip.Constructor.DEFAULTS, 'defaults is defined')
})
- test('should empty title attribute', function () {
+ QUnit.test('should empty title attribute', function (assert) {
+ assert.expect(1)
var $trigger = $('<a href="#" rel="tooltip" title="Another tooltip"/>').bootstrapTooltip()
- strictEqual($trigger.attr('title'), '', 'title attribute was emptied')
+ assert.strictEqual($trigger.attr('title'), '', 'title attribute was emptied')
})
- test('should add data attribute for referencing original title', function () {
+ QUnit.test('should add data attribute for referencing original title', function (assert) {
+ assert.expect(1)
var $trigger = $('<a href="#" rel="tooltip" title="Another tooltip"/>').bootstrapTooltip()
- strictEqual($trigger.attr('data-original-title'), 'Another tooltip', 'original title preserved in data attribute')
+ assert.strictEqual($trigger.attr('data-original-title'), 'Another tooltip', 'original title preserved in data attribute')
})
- test('should add aria-describedby to the trigger on show', function () {
- var $trigger = $('<a href="#" rel="tooltip" title="Another tooltip">Tooltip trigger</a>')
+ QUnit.test('should add aria-describedby to the trigger on show', function (assert) {
+ assert.expect(3)
+ var $trigger = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
.bootstrapTooltip()
.appendTo('#qunit-fixture')
.bootstrapTooltip('show')
var id = $('.tooltip').attr('id')
- strictEqual($('#' + id).length, 1, 'has a unique id')
- strictEqual($('.tooltip').attr('aria-describedby'), $trigger.attr('id'), 'tooltip id and aria-describedby on trigger match')
- ok($trigger[0].hasAttribute('aria-describedby'), 'trigger has aria-describedby')
+ assert.strictEqual($('#' + id).length, 1, 'has a unique id')
+ assert.strictEqual($('.tooltip').attr('aria-describedby'), $trigger.attr('id'), 'tooltip id and aria-describedby on trigger match')
+ assert.ok($trigger[0].hasAttribute('aria-describedby'), 'trigger has aria-describedby')
})
- test('should remove aria-describedby from trigger on hide', function () {
- var $trigger = $('<a href="#" rel="tooltip" title="Another tooltip">Tooltip trigger</a>')
+ QUnit.test('should remove aria-describedby from trigger on hide', function (assert) {
+ assert.expect(2)
+ var $trigger = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
.bootstrapTooltip()
.appendTo('#qunit-fixture')
$trigger.bootstrapTooltip('show')
- ok($trigger[0].hasAttribute('aria-describedby'), 'trigger has aria-describedby')
+ assert.ok($trigger[0].hasAttribute('aria-describedby'), 'trigger has aria-describedby')
$trigger.bootstrapTooltip('hide')
- ok(!$trigger[0].hasAttribute('aria-describedby'), 'trigger does not have aria-describedby')
+ assert.ok(!$trigger[0].hasAttribute('aria-describedby'), 'trigger does not have aria-describedby')
})
- test('should assign a unique id tooltip element', function () {
- $('<a href="#" rel="tooltip" title="Another tooltip">Tooltip trigger</a>')
+ QUnit.test('should assign a unique id tooltip element', function (assert) {
+ assert.expect(2)
+ $('<a href="#" rel="tooltip" title="Another tooltip"/>')
.appendTo('#qunit-fixture')
.bootstrapTooltip('show')
var id = $('.tooltip').attr('id')
- strictEqual($('#' + id).length, 1, 'tooltip has unique id')
- strictEqual(id.indexOf('tooltip'), 0, 'tooltip id has prefix')
+ assert.strictEqual($('#' + id).length, 1, 'tooltip has unique id')
+ assert.strictEqual(id.indexOf('tooltip'), 0, 'tooltip id has prefix')
})
- test('should place tooltips relative to placement option', function () {
- var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip">Tooltip trigger</a>')
+ QUnit.test('should place tooltips relative to placement option', function (assert) {
+ assert.expect(2)
+ var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
.appendTo('#qunit-fixture')
.bootstrapTooltip({ placement: 'bottom' })
$tooltip.bootstrapTooltip('show')
- ok($('.tooltip').is('.fade.tooltip-bottom.in'), 'has correct classes applied')
+ assert.ok($('.tooltip').is('.fade.bottom.in'), 'has correct classes applied')
$tooltip.bootstrapTooltip('hide')
- equal($('.tooltip').length, 0, 'tooltip removed')
+ assert.strictEqual($('.tooltip').length, 0, 'tooltip removed')
})
- test('should allow html entities', function () {
- var $tooltip = $('<a href="#" rel="tooltip" title="&lt;b&gt;@fat&lt;/b&gt;">Tooltip trigger</a>')
+ QUnit.test('should allow html entities', function (assert) {
+ assert.expect(2)
+ var $tooltip = $('<a href="#" rel="tooltip" title="&lt;b&gt;@fat&lt;/b&gt;"/>')
.appendTo('#qunit-fixture')
.bootstrapTooltip({ html: true })
$tooltip.bootstrapTooltip('show')
- notEqual($('.tooltip b').length, 0, 'b tag was inserted')
+ assert.notEqual($('.tooltip b').length, 0, 'b tag was inserted')
$tooltip.bootstrapTooltip('hide')
- equal($('.tooltip').length, 0, 'tooltip removed')
+ assert.strictEqual($('.tooltip').length, 0, 'tooltip removed')
})
- test('should respect custom classes', function () {
- var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip">Tooltip trigger</a>')
+ QUnit.test('should respect custom classes', function (assert) {
+ assert.expect(2)
+ var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
.appendTo('#qunit-fixture')
.bootstrapTooltip({ template: '<div class="tooltip some-class"><div class="tooltip-arrow"/><div class="tooltip-inner"/></div>' })
$tooltip.bootstrapTooltip('show')
- ok($('.tooltip').hasClass('some-class'), 'custom class is present')
+ assert.ok($('.tooltip').hasClass('some-class'), 'custom class is present')
$tooltip.bootstrapTooltip('hide')
- equal($('.tooltip').length, 0, 'tooltip removed')
+ assert.strictEqual($('.tooltip').length, 0, 'tooltip removed')
})
- test('should fire show event', function (assert) {
+ QUnit.test('should fire show event', function (assert) {
+ assert.expect(1)
var done = assert.async()
- $('<div title="tooltip title">Tooltip trigger</div>')
- .appendTo('#qunit-fixture')
+ $('<div title="tooltip title"/>')
.on('show.bs.tooltip', function () {
- ok(true, 'show event fired')
+ assert.ok(true, 'show event fired')
done()
})
.bootstrapTooltip('show')
})
- test('should fire shown event', function (assert) {
+ QUnit.test('should fire inserted event', function (assert) {
+ assert.expect(2)
var done = assert.async()
- $('<div title="tooltip title">Tooltip trigger</div>')
+ $('<div title="tooltip title"/>')
.appendTo('#qunit-fixture')
- .on('shown.bs.tooltip', function () {
- ok(true, 'shown was called')
+ .on('inserted.bs.tooltip', function () {
+ assert.notEqual($('.tooltip').length, 0, 'tooltip was inserted')
+ assert.ok(true, 'inserted event fired')
done()
})
.bootstrapTooltip('show')
})
- test('should not fire shown event when show was prevented', function (assert) {
+ QUnit.test('should fire shown event', function (assert) {
+ assert.expect(1)
var done = assert.async()
- $('<div title="tooltip title">Tooltip trigger</div>')
+ $('<div title="tooltip title"></div>')
.appendTo('#qunit-fixture')
+ .on('shown.bs.tooltip', function () {
+ assert.ok(true, 'shown was called')
+ done()
+ })
+ .bootstrapTooltip('show')
+ })
+
+ QUnit.test('should not fire shown event when show was prevented', function (assert) {
+ assert.expect(1)
+ var done = assert.async()
+
+ $('<div title="tooltip title"/>')
.on('show.bs.tooltip', function (e) {
e.preventDefault()
- ok(true, 'show event fired')
+ assert.ok(true, 'show event fired')
done()
})
.on('shown.bs.tooltip', function () {
- ok(false, 'shown event fired')
+ assert.ok(false, 'shown event fired')
})
.bootstrapTooltip('show')
})
- test('should fire hide event', function (assert) {
+ QUnit.test('should fire hide event', function (assert) {
+ assert.expect(1)
var done = assert.async()
- $('<div title="tooltip title">Tooltip trigger</div>')
+ $('<div title="tooltip title"/>')
.appendTo('#qunit-fixture')
.on('shown.bs.tooltip', function () {
$(this).bootstrapTooltip('hide')
})
.on('hide.bs.tooltip', function () {
- ok(true, 'hide event fired')
+ assert.ok(true, 'hide event fired')
done()
})
.bootstrapTooltip('show')
})
- test('should fire hidden event', function (assert) {
+ QUnit.test('should fire hidden event', function (assert) {
+ assert.expect(1)
var done = assert.async()
- $('<div title="tooltip title">Tooltip trigger</div>')
+ $('<div title="tooltip title"/>')
.appendTo('#qunit-fixture')
.on('shown.bs.tooltip', function () {
$(this).bootstrapTooltip('hide')
})
.on('hidden.bs.tooltip', function () {
- ok(true, 'hidden event fired')
+ assert.ok(true, 'hidden event fired')
done()
})
.bootstrapTooltip('show')
})
- test('should not fire hidden event when hide was prevented', function (assert) {
+ QUnit.test('should not fire hidden event when hide was prevented', function (assert) {
+ assert.expect(1)
var done = assert.async()
- $('<div title="tooltip title">Tooltip trigger</div>')
+ $('<div title="tooltip title"/>')
.appendTo('#qunit-fixture')
.on('shown.bs.tooltip', function () {
$(this).bootstrapTooltip('hide')
})
.on('hide.bs.tooltip', function (e) {
e.preventDefault()
- ok(true, 'hide event fired')
+ assert.ok(true, 'hide event fired')
done()
})
.on('hidden.bs.tooltip', function () {
- ok(false, 'hidden event fired')
+ assert.ok(false, 'hidden event fired')
})
.bootstrapTooltip('show')
})
- test('should destroy tooltip', function () {
- var $tooltip = $('<div>Tooltip trigger</div>')
- .appendTo('#qunit-fixture')
+ QUnit.test('should destroy tooltip', function (assert) {
+ assert.expect(7)
+ var $tooltip = $('<div/>')
.bootstrapTooltip()
.on('click.foo', function () {})
- ok($tooltip.data('bs.tooltip'), 'tooltip has data')
- ok($._data($tooltip[0], 'events').mouseover && $._data($tooltip[0], 'events').mouseout, 'tooltip has hover events')
- equal($._data($tooltip[0], 'events').click[0].namespace, 'foo', 'tooltip has extra click.foo event')
+ assert.ok($tooltip.data('bs.tooltip'), 'tooltip has data')
+ assert.ok($._data($tooltip[0], 'events').mouseover && $._data($tooltip[0], 'events').mouseout, 'tooltip has hover events')
+ assert.strictEqual($._data($tooltip[0], 'events').click[0].namespace, 'foo', 'tooltip has extra click.foo event')
$tooltip.bootstrapTooltip('show')
$tooltip.bootstrapTooltip('destroy')
- ok(!$tooltip.hasClass('in'), 'tooltip is hidden')
- ok(!$._data($tooltip[0], 'bs.tooltip'), 'tooltip does not have data')
- equal($._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 hover events')
+ assert.ok(!$tooltip.hasClass('in'), 'tooltip is hidden')
+ assert.ok(!$._data($tooltip[0], 'bs.tooltip'), 'tooltip does not have data')
+ assert.strictEqual($._data($tooltip[0], 'events').click[0].namespace, 'foo', 'tooltip still has click.foo')
+ assert.ok(!$._data($tooltip[0], 'events').mouseover && !$._data($tooltip[0], 'events').mouseout, 'tooltip does not have hover events')
})
- test('should show tooltip with delegate selector on click', function () {
- var $div = $('<div><a href="#" rel="tooltip" title="Another tooltip">Tooltip trigger</a></div>')
+ QUnit.test('should show tooltip with delegate selector on click', function (assert) {
+ assert.expect(2)
+ var $div = $('<div><a href="#" rel="tooltip" title="Another tooltip"/></div>')
.appendTo('#qunit-fixture')
.bootstrapTooltip({
selector: 'a[rel="tooltip"]',
trigger: 'click'
})
- $div.find('a').click()
- ok($('.tooltip').is('.fade.in'), 'tooltip is faded in')
+ $div.find('a').trigger('click')
+ assert.ok($('.tooltip').is('.fade.in'), 'tooltip is faded in')
- $div.find('a').click()
- equal($('.tooltip').length, 0, 'tooltip was removed from dom')
+ $div.find('a').trigger('click')
+ assert.strictEqual($('.tooltip').length, 0, 'tooltip was removed from dom')
})
- test('should show tooltip when toggle is called', function () {
- $('<a href="#" rel="tooltip" title="tooltip on toggle">Tooltip trigger</a>')
+ QUnit.test('should show tooltip when toggle is called', function (assert) {
+ assert.expect(1)
+ $('<a href="#" rel="tooltip" title="tooltip on toggle"/>')
.appendTo('#qunit-fixture')
.bootstrapTooltip({ trigger: 'manual' })
.bootstrapTooltip('toggle')
- ok($('.tooltip').is('.fade.in'), 'tooltip is faded in')
+ assert.ok($('.tooltip').is('.fade.in'), 'tooltip is faded in')
})
- test('should hide previously shown tooltip when toggle is called on tooltip', function () {
+ QUnit.test('should hide previously shown tooltip when toggle is called on tooltip', function (assert) {
+ assert.expect(1)
$('<a href="#" rel="tooltip" title="tooltip on toggle">@ResentedHook</a>')
.appendTo('#qunit-fixture')
.bootstrapTooltip({ trigger: 'manual' })
.bootstrapTooltip('show')
$('.tooltip').bootstrapTooltip('toggle')
- ok($('.tooltip').not('.fade.in'), 'tooltip was faded out')
+ assert.ok($('.tooltip').not('.fade.in'), 'tooltip was faded out')
})
- test('should place tooltips inside body when container is body', function () {
- var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip">Tooltip trigger</a>')
+ QUnit.test('should place tooltips inside body when container is body', function (assert) {
+ assert.expect(3)
+ var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
.appendTo('#qunit-fixture')
.bootstrapTooltip({ container: 'body' })
.bootstrapTooltip('show')
- notEqual($('body > .tooltip').length, 0, 'tooltip is direct descendant of body')
- equal($('#qunit-fixture > .tooltip').length, 0, 'tooltip is not in parent')
+ assert.notEqual($('body > .tooltip').length, 0, 'tooltip is direct descendant of body')
+ assert.strictEqual($('#qunit-fixture > .tooltip').length, 0, 'tooltip is not in parent')
$tooltip.bootstrapTooltip('hide')
- equal($('body > .tooltip').length, 0, 'tooltip was removed from dom')
+ assert.strictEqual($('body > .tooltip').length, 0, 'tooltip was removed from dom')
})
- test('should add position class before positioning so that position-specific styles are taken into account', function () {
+ QUnit.test('should add position class before positioning so that position-specific styles are taken into account', function (assert) {
+ assert.expect(1)
var styles = '<style>'
- + '.tooltip.tooltip-right { white-space: nowrap; }'
- + '.tooltip.tooltip-right .tooltip-inner { max-width: none; }'
+ + '.tooltip.right { white-space: nowrap; }'
+ + '.tooltip.right .tooltip-inner { max-width: none; }'
+ '</style>'
var $styles = $(styles).appendTo('head')
var $container = $('<div/>').appendTo('#qunit-fixture')
- var $target = $('<a href="#" rel="tooltip" title="very very very very very very very very long tooltip in one line">m</a>')
+ var $target = $('<a href="#" rel="tooltip" title="very very very very very very very very long tooltip in one line"/>')
.appendTo($container)
.bootstrapTooltip({
placement: 'right',
@@ -291,101 +326,102 @@ $(function () {
var top = Math.round($target.offset().top + ($target[0].offsetHeight / 2) - ($tooltip[0].offsetHeight / 2))
var top2 = Math.round($tooltip.offset().top)
var topDiff = top - top2
- ok(topDiff <= 1 && topDiff >= -1)
+ assert.ok(topDiff <= 1 && topDiff >= -1)
$target.bootstrapTooltip('hide')
$container.remove()
$styles.remove()
})
- test('should use title attribute for tooltip text', function () {
- var $tooltip = $('<a href="#" rel="tooltip" title="Simple tooltip">Tooltip trigger</a>')
+ QUnit.test('should use title attribute for tooltip text', function (assert) {
+ assert.expect(2)
+ var $tooltip = $('<a href="#" rel="tooltip" title="Simple tooltip"/>')
.appendTo('#qunit-fixture')
.bootstrapTooltip()
$tooltip.bootstrapTooltip('show')
- equal($('.tooltip').children('.tooltip-inner').text(), 'Simple tooltip', 'title from title attribute is set')
+ assert.strictEqual($('.tooltip').children('.tooltip-inner').text(), 'Simple tooltip', 'title from title attribute is set')
$tooltip.bootstrapTooltip('hide')
- equal($('.tooltip').length, 0, 'tooltip removed from dom')
+ assert.strictEqual($('.tooltip').length, 0, 'tooltip removed from dom')
})
- test('should prefer title attribute over title option', function () {
- var $tooltip = $('<a href="#" rel="tooltip" title="Simple tooltip">Tooltip trigger</a>')
+ QUnit.test('should prefer title attribute over title option', function (assert) {
+ assert.expect(2)
+ var $tooltip = $('<a href="#" rel="tooltip" title="Simple tooltip"/>')
.appendTo('#qunit-fixture')
.bootstrapTooltip({
title: 'This is a tooltip with some content'
})
$tooltip.bootstrapTooltip('show')
- equal($('.tooltip').children('.tooltip-inner').text(), 'Simple tooltip', 'title is set from title attribute while preferred over title option')
+ assert.strictEqual($('.tooltip').children('.tooltip-inner').text(), 'Simple tooltip', 'title is set from title attribute while preferred over title option')
$tooltip.bootstrapTooltip('hide')
- equal($('.tooltip').length, 0, 'tooltip removed from dom')
+ assert.strictEqual($('.tooltip').length, 0, 'tooltip removed from dom')
})
- test('should use title option', function () {
- var $tooltip = $('<a href="#" rel="tooltip">Tooltip trigger</a>')
+ QUnit.test('should use title option', function (assert) {
+ assert.expect(2)
+ var $tooltip = $('<a href="#" rel="tooltip"/>')
.appendTo('#qunit-fixture')
.bootstrapTooltip({
title: 'This is a tooltip with some content'
})
$tooltip.bootstrapTooltip('show')
- equal($('.tooltip').children('.tooltip-inner').text(), 'This is a tooltip with some content', 'title from title option is set')
+ assert.strictEqual($('.tooltip').children('.tooltip-inner').text(), 'This is a tooltip with some content', 'title from title option is set')
$tooltip.bootstrapTooltip('hide')
- equal($('.tooltip').length, 0, 'tooltip removed from dom')
+ assert.strictEqual($('.tooltip').length, 0, 'tooltip removed from dom')
})
- test('should be placed dynamically with the dynamic placement option', function () {
- var $style = $('<style> a[rel="tooltip"] { display: inline-block; position: absolute; } </style>')
+ QUnit.test('should be placed dynamically to viewport with the dynamic placement option', function (assert) {
+ assert.expect(6)
+ var $style = $('<style> div[rel="tooltip"] { position: absolute; } #qunit-fixture { top: inherit; left: inherit } </style>').appendTo('head')
var $container = $('<div/>')
.css({
- position: 'absolute',
- overflow: 'hidden',
- width: 600,
- height: 400,
- top: 0,
- left: 0
+ position: 'relative',
+ height: '100%'
})
- .appendTo(document.body)
+ .appendTo('#qunit-fixture')
var $topTooltip = $('<div style="left: 0; top: 0;" rel="tooltip" title="Top tooltip">Top Dynamic Tooltip</div>')
.appendTo($container)
- .bootstrapTooltip({ placement: 'auto' })
+ .bootstrapTooltip({ placement: 'auto', viewport: '#qunit-fixture' })
$topTooltip.bootstrapTooltip('show')
- ok($('.tooltip').is('.tooltip-bottom'), 'top positioned tooltip is dynamically positioned to bottom')
+ assert.ok($('.tooltip').is('.bottom'), 'top positioned tooltip is dynamically positioned to bottom')
$topTooltip.bootstrapTooltip('hide')
- equal($('.tooltip').length, 0, 'top positioned tooltip removed from dom')
+ assert.strictEqual($('.tooltip').length, 0, 'top positioned tooltip removed from dom')
var $rightTooltip = $('<div style="right: 0;" rel="tooltip" title="Right tooltip">Right Dynamic Tooltip</div>')
.appendTo($container)
- .bootstrapTooltip({ placement: 'right auto' })
+ .bootstrapTooltip({ placement: 'right auto', viewport: '#qunit-fixture' })
$rightTooltip.bootstrapTooltip('show')
- ok($('.tooltip').is('.tooltip-left'), 'right positioned tooltip is dynamically positioned left')
+ assert.ok($('.tooltip').is('.left'), 'right positioned tooltip is dynamically positioned left')
$rightTooltip.bootstrapTooltip('hide')
- equal($('.tooltip').length, 0, 'right positioned tooltip removed from dom')
+ assert.strictEqual($('.tooltip').length, 0, 'right positioned tooltip removed from dom')
var $leftTooltip = $('<div style="left: 0;" rel="tooltip" title="Left tooltip">Left Dynamic Tooltip</div>')
.appendTo($container)
- .bootstrapTooltip({ placement: 'auto left' })
+ .bootstrapTooltip({ placement: 'auto left', viewport: '#qunit-fixture' })
$leftTooltip.bootstrapTooltip('show')
- ok($('.tooltip').is('.tooltip-right'), 'left positioned tooltip is dynamically positioned right')
+ assert.ok($('.tooltip').is('.right'), 'left positioned tooltip is dynamically positioned right')
$leftTooltip.bootstrapTooltip('hide')
- equal($('.tooltip').length, 0, 'left positioned tooltip removed from dom')
+ assert.strictEqual($('.tooltip').length, 0, 'left positioned tooltip removed from dom')
$container.remove()
$style.remove()
})
- test('should position tip on top if viewport has enough space and placement is "auto top"', function () {
+ QUnit.test('should position tip on top if viewport has enough space and placement is "auto top"', function (assert) {
+ assert.expect(2)
var styles = '<style>'
+ 'body { padding-top: 100px; }'
+ '#section { height: 300px; border: 1px solid red; padding-top: 50px }'
@@ -402,15 +438,41 @@ $(function () {
})
$target.bootstrapTooltip('show')
- ok($('.tooltip').is('.tooltip-top'), 'top positioned tooltip is dynamically positioned to top')
+ assert.ok($('.tooltip').is('.top'), 'top positioned tooltip is dynamically positioned to top')
$target.bootstrapTooltip('hide')
- equal($('.tooltip').length, 0, 'tooltip removed from dom')
+ assert.strictEqual($('.tooltip').length, 0, 'tooltip removed from dom')
$styles.remove()
})
- test('should position tip on bottom if the tip\'s dimension exceeds the viewport area and placement is "auto top"', function () {
+ QUnit.test('should position tip on top if viewport has enough space and is not parent', function (assert) {
+ assert.expect(2)
+ var styles = '<style>'
+ + '#section { height: 300px; border: 1px solid red; margin-top: 100px; }'
+ + 'div[rel="tooltip"] { width: 150px; border: 1px solid blue; }'
+ + '</style>'
+ var $styles = $(styles).appendTo('head')
+
+ var $container = $('<div id="section"/>').appendTo('#qunit-fixture')
+ var $target = $('<div rel="tooltip" title="tip"/>')
+ .appendTo($container)
+ .bootstrapTooltip({
+ placement: 'auto top',
+ viewport: '#qunit-fixture'
+ })
+
+ $target.bootstrapTooltip('show')
+ assert.ok($('.tooltip').is('.top'), 'top positioned tooltip is dynamically positioned to top')
+
+ $target.bootstrapTooltip('hide')
+ assert.strictEqual($('.tooltip').length, 0, 'tooltip removed from dom')
+
+ $styles.remove()
+ })
+
+ QUnit.test('should position tip on bottom if the tip\'s dimension exceeds the viewport area and placement is "auto top"', function (assert) {
+ assert.expect(2)
var styles = '<style>'
+ 'body { padding-top: 100px; }'
+ '#section { height: 300px; border: 1px solid red; }'
@@ -427,15 +489,16 @@ $(function () {
})
$target.bootstrapTooltip('show')
- ok($('.tooltip').is('.tooltip-bottom'), 'top positioned tooltip is dynamically positioned to bottom')
+ assert.ok($('.tooltip').is('.bottom'), 'top positioned tooltip is dynamically positioned to bottom')
$target.bootstrapTooltip('hide')
- equal($('.tooltip').length, 0, 'tooltip removed from dom')
+ assert.strictEqual($('.tooltip').length, 0, 'tooltip removed from dom')
$styles.remove()
})
- test('should display the tip on top whenever scrollable viewport has enough room if the given placement is "auto top"', function () {
+ QUnit.test('should display the tip on top whenever scrollable viewport has enough room if the given placement is "auto top"', function (assert) {
+ assert.expect(2)
var styles = '<style>'
+ '#scrollable-div { height: 200px; overflow: auto; }'
+ '.tooltip-item { margin: 200px 0 400px; width: 150px; }'
@@ -453,15 +516,16 @@ $(function () {
$('#scrollable-div').scrollTop(100)
$target.bootstrapTooltip('show')
- ok($('.tooltip').is('.fade.tooltip-top.in'), 'has correct classes applied')
+ assert.ok($('.tooltip').is('.fade.top.in'), 'has correct classes applied')
$target.bootstrapTooltip('hide')
- equal($('.tooltip').length, 0, 'tooltip removed from dom')
+ assert.strictEqual($('.tooltip').length, 0, 'tooltip removed from dom')
$styles.remove()
})
- test('should display the tip on bottom whenever scrollable viewport doesn\'t have enough room if the given placement is "auto top"', function () {
+ QUnit.test('should display the tip on bottom whenever scrollable viewport doesn\'t have enough room if the given placement is "auto top"', function (assert) {
+ assert.expect(2)
var styles = '<style>'
+ '#scrollable-div { height: 200px; overflow: auto; }'
+ '.tooltip-item { padding: 200px 0 400px; width: 150px; }'
@@ -479,15 +543,16 @@ $(function () {
$('#scrollable-div').scrollTop(200)
$target.bootstrapTooltip('show')
- ok($('.tooltip').is('.fade.tooltip-bottom.in'), 'has correct classes applied')
+ assert.ok($('.tooltip').is('.fade.bottom.in'), 'has correct classes applied')
$target.bootstrapTooltip('hide')
- equal($('.tooltip').length, 0, 'tooltip removed from dom')
+ assert.strictEqual($('.tooltip').length, 0, 'tooltip removed from dom')
$styles.remove()
})
- test('should display the tip on bottom whenever scrollable viewport has enough room if the given placement is "auto bottom"', function () {
+ QUnit.test('should display the tip on bottom whenever scrollable viewport has enough room if the given placement is "auto bottom"', function (assert) {
+ assert.expect(2)
var styles = '<style>'
+ '#scrollable-div { height: 200px; overflow: auto; }'
+ '.spacer { height: 400px; }'
@@ -509,15 +574,16 @@ $(function () {
$('#scrollable-div').scrollTop(200)
$target.bootstrapTooltip('show')
- ok($('.tooltip').is('.fade.tooltip-bottom.in'), 'has correct classes applied')
+ assert.ok($('.tooltip').is('.fade.bottom.in'), 'has correct classes applied')
$target.bootstrapTooltip('hide')
- equal($('.tooltip').length, 0, 'tooltip removed from dom')
+ assert.strictEqual($('.tooltip').length, 0, 'tooltip removed from dom')
$styles.remove()
})
- test('should display the tip on top whenever scrollable viewport doesn\'t have enough room if the given placement is "auto bottom"', function () {
+ QUnit.test('should display the tip on top whenever scrollable viewport doesn\'t have enough room if the given placement is "auto bottom"', function (assert) {
+ assert.expect(2)
var styles = '<style>'
+ '#scrollable-div { height: 200px; overflow: auto; }'
+ '.tooltip-item { margin-top: 400px; width: 150px; }'
@@ -535,15 +601,16 @@ $(function () {
$('#scrollable-div').scrollTop(400)
$target.bootstrapTooltip('show')
- ok($('.tooltip').is('.fade.tooltip-top.in'), 'has correct classes applied')
+ assert.ok($('.tooltip').is('.fade.top.in'), 'has correct classes applied')
$target.bootstrapTooltip('hide')
- equal($('.tooltip').length, 0, 'tooltip removed from dom')
+ assert.strictEqual($('.tooltip').length, 0, 'tooltip removed from dom')
$styles.remove()
})
- test('should adjust the tip\'s top position when up against the top of the viewport', function () {
+ QUnit.test('should adjust the tip\'s top position when up against the top of the viewport', function (assert) {
+ assert.expect(2)
var styles = '<style>'
+ '.tooltip .tooltip-inner { width: 200px; height: 200px; max-width: none; }'
+ 'a[rel="tooltip"] { position: fixed; }'
@@ -551,7 +618,7 @@ $(function () {
var $styles = $(styles).appendTo('head')
var $container = $('<div/>').appendTo('#qunit-fixture')
- var $target = $('<a href="#" rel="tooltip" title="tip" style="top: 0px; left: 0px;">m</a>')
+ var $target = $('<a href="#" rel="tooltip" title="tip" style="top: 0px; left: 0px;"/>')
.appendTo($container)
.bootstrapTooltip({
placement: 'right',
@@ -562,15 +629,16 @@ $(function () {
})
$target.bootstrapTooltip('show')
- equal(Math.round($container.find('.tooltip').offset().top), 12)
+ assert.strictEqual(Math.round($container.find('.tooltip').offset().top), 12)
$target.bootstrapTooltip('hide')
- equal($('.tooltip').length, 0, 'tooltip removed from dom')
+ assert.strictEqual($('.tooltip').length, 0, 'tooltip removed from dom')
$styles.remove()
})
- test('should adjust the tip\'s top position when up against the bottom of the viewport', function () {
+ QUnit.test('should adjust the tip\'s top position when up against the bottom of the viewport', function (assert) {
+ assert.expect(2)
var styles = '<style>'
+ '.tooltip .tooltip-inner { width: 200px; height: 200px; max-width: none; }'
+ 'a[rel="tooltip"] { position: fixed; }'
@@ -578,7 +646,7 @@ $(function () {
var $styles = $(styles).appendTo('head')
var $container = $('<div/>').appendTo('#qunit-fixture')
- var $target = $('<a href="#" rel="tooltip" title="tip" style="bottom: 0px; left: 0px;">m</a>')
+ var $target = $('<a href="#" rel="tooltip" title="tip" style="bottom: 0px; left: 0px;"/>')
.appendTo($container)
.bootstrapTooltip({
placement: 'right',
@@ -590,16 +658,17 @@ $(function () {
$target.bootstrapTooltip('show')
var $tooltip = $container.find('.tooltip')
- strictEqual(Math.round($tooltip.offset().top), Math.round($(window).height() - 12 - $tooltip[0].offsetHeight))
+ assert.strictEqual(Math.round($tooltip.offset().top), Math.round($(window).height() - 12 - $tooltip[0].offsetHeight))
$target.bootstrapTooltip('hide')
- equal($('.tooltip').length, 0, 'tooltip removed from dom')
+ assert.strictEqual($('.tooltip').length, 0, 'tooltip removed from dom')
$container.remove()
$styles.remove()
})
- test('should adjust the tip\'s left position when up against the left of the viewport', function () {
+ QUnit.test('should adjust the tip\'s left position when up against the left of the viewport', function (assert) {
+ assert.expect(2)
var styles = '<style>'
+ '.tooltip .tooltip-inner { width: 200px; height: 200px; max-width: none; }'
+ 'a[rel="tooltip"] { position: fixed; }'
@@ -607,7 +676,7 @@ $(function () {
var $styles = $(styles).appendTo('head')
var $container = $('<div/>').appendTo('#qunit-fixture')
- var $target = $('<a href="#" rel="tooltip" title="tip" style="top: 0px; left: 0px;">m</a>')
+ var $target = $('<a href="#" rel="tooltip" title="tip" style="top: 0px; left: 0px;"/>')
.appendTo($container)
.bootstrapTooltip({
placement: 'bottom',
@@ -618,16 +687,17 @@ $(function () {
})
$target.bootstrapTooltip('show')
- strictEqual(Math.round($container.find('.tooltip').offset().left), 12)
+ assert.strictEqual(Math.round($container.find('.tooltip').offset().left), 12)
$target.bootstrapTooltip('hide')
- equal($('.tooltip').length, 0, 'tooltip removed from dom')
+ assert.strictEqual($('.tooltip').length, 0, 'tooltip removed from dom')
$container.remove()
$styles.remove()
})
- test('should adjust the tip\'s left position when up against the right of the viewport', function () {
+ QUnit.test('should adjust the tip\'s left position when up against the right of the viewport', function (assert) {
+ assert.expect(2)
var styles = '<style>'
+ '.tooltip .tooltip-inner { width: 200px; height: 200px; max-width: none; }'
+ 'a[rel="tooltip"] { position: fixed; }'
@@ -635,7 +705,7 @@ $(function () {
var $styles = $(styles).appendTo('head')
var $container = $('<div/>').appendTo('body')
- var $target = $('<a href="#" rel="tooltip" title="tip" style="top: 0px; right: 0px;">m</a>')
+ var $target = $('<a href="#" rel="tooltip" title="tip" style="top: 0px; right: 0px;"/>')
.appendTo($container)
.bootstrapTooltip({
placement: 'bottom',
@@ -647,16 +717,17 @@ $(function () {
$target.bootstrapTooltip('show')
var $tooltip = $container.find('.tooltip')
- strictEqual(Math.round($tooltip.offset().left), Math.round($(window).width() - 12 - $tooltip[0].offsetWidth))
+ assert.strictEqual(Math.round($tooltip.offset().left), Math.round($(window).width() - 12 - $tooltip[0].offsetWidth))
$target.bootstrapTooltip('hide')
- equal($('.tooltip').length, 0, 'tooltip removed from dom')
+ assert.strictEqual($('.tooltip').length, 0, 'tooltip removed from dom')
$container.remove()
$styles.remove()
})
- test('should adjust the tip when up against the right of an arbitrary viewport', function () {
+ QUnit.test('should adjust the tip when up against the right of an arbitrary viewport', function (assert) {
+ assert.expect(2)
var styles = '<style>'
+ '.tooltip, .tooltip .tooltip-inner { width: 200px; height: 200px; max-width: none; }'
+ '.container-viewport { position: absolute; top: 50px; left: 60px; width: 300px; height: 300px; }'
@@ -665,7 +736,7 @@ $(function () {
var $styles = $(styles).appendTo('head')
var $container = $('<div class="container-viewport"/>').appendTo(document.body)
- var $target = $('<a href="#" rel="tooltip" title="tip" style="top: 50px; left: 350px;">m</a>')
+ var $target = $('<a href="#" rel="tooltip" title="tip" style="top: 50px; left: 350px;"/>')
.appendTo($container)
.bootstrapTooltip({
placement: 'bottom',
@@ -674,18 +745,78 @@ $(function () {
$target.bootstrapTooltip('show')
var $tooltip = $container.find('.tooltip')
- strictEqual(Math.round($tooltip.offset().left), Math.round(60 + $container.width() - $tooltip[0].offsetWidth))
+ assert.strictEqual(Math.round($tooltip.offset().left), Math.round(60 + $container.width() - $tooltip[0].offsetWidth))
+
+ $target.bootstrapTooltip('hide')
+ assert.strictEqual($('.tooltip').length, 0, 'tooltip removed from dom')
+
+ $container.remove()
+ $styles.remove()
+ })
+
+ QUnit.test('should get viewport element from function', function (assert) {
+ assert.expect(3)
+ var styles = '<style>'
+ + '.tooltip, .tooltip .tooltip-inner { width: 200px; height: 200px; max-width: none; }'
+ + '.container-viewport { position: absolute; top: 50px; left: 60px; width: 300px; height: 300px; }'
+ + 'a[rel="tooltip"] { position: fixed; }'
+ + '</style>'
+ var $styles = $(styles).appendTo('head')
+
+ var $container = $('<div class="container-viewport"/>').appendTo(document.body)
+ var $target = $('<a href="#" rel="tooltip" title="tip" style="top: 50px; left: 350px;"/>').appendTo($container)
+ $target
+ .bootstrapTooltip({
+ placement: 'bottom',
+ viewport: function ($element) {
+ assert.strictEqual($element[0], $target[0], 'viewport function was passed target as argument')
+ return ($element.closest('.container-viewport'))
+ }
+ })
+
+ $target.bootstrapTooltip('show')
+ var $tooltip = $container.find('.tooltip')
+ assert.strictEqual(Math.round($tooltip.offset().left), Math.round(60 + $container.width() - $tooltip[0].offsetWidth))
+
+ $target.bootstrapTooltip('hide')
+ assert.strictEqual($('.tooltip').length, 0, 'tooltip removed from dom')
+
+ $container.remove()
+ $styles.remove()
+ })
+
+ QUnit.test('should not misplace the tip when the right edge offset is greater or equal than the viewport width', function (assert) {
+ assert.expect(2)
+ var styles = '<style>'
+ + '.tooltip, .tooltip *, .tooltip *:before, .tooltip *:after { box-sizing: border-box; }'
+ + '.container-viewport, .container-viewport *, .container-viewport *:before, .container-viewport *:after { box-sizing: border-box; }'
+ + '.tooltip, .tooltip .tooltip-inner { width: 50px; height: 50px; max-width: none; background: red; }'
+ + '.container-viewport { padding: 100px; margin-left: 100px; width: 100px; }'
+ + '</style>'
+ var $styles = $(styles).appendTo('head')
+
+ var $container = $('<div class="container-viewport"/>').appendTo(document.body)
+ var $target = $('<a href="#" rel="tooltip" title="tip">foobar</a>')
+ .appendTo($container)
+ .bootstrapTooltip({
+ viewport: '.container-viewport'
+ })
+
+ $target.bootstrapTooltip('show')
+ var $tooltip = $container.find('.tooltip')
+ assert.strictEqual(Math.round($tooltip.offset().left), Math.round($target.position().left + $target.width() / 2 - $tooltip[0].offsetWidth / 2))
$target.bootstrapTooltip('hide')
- equal($('.tooltip').length, 0, 'tooltip removed from dom')
+ assert.strictEqual($('.tooltip').length, 0, 'tooltip removed from dom')
$container.remove()
$styles.remove()
})
- test('should not error when trying to show an auto-placed tooltip that has been removed from the dom', function () {
+ QUnit.test('should not error when trying to show an auto-placed tooltip that has been removed from the dom', function (assert) {
+ assert.expect(1)
var passed = true
- var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip">Tooltip trigger</a>')
+ var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
.appendTo('#qunit-fixture')
.one('show.bs.tooltip', function () {
$(this).remove()
@@ -699,10 +830,11 @@ $(function () {
console.log(err)
}
- ok(passed, '.tooltip(\'show\') should not throw an error if element no longer is in dom')
+ assert.ok(passed, '.tooltip(\'show\') should not throw an error if element no longer is in dom')
})
- test('should place tooltip on top of element', function (assert) {
+ QUnit.test('should place tooltip on top of element', function (assert) {
+ assert.expect(1)
var done = assert.async()
var containerHTML = '<div>'
@@ -734,12 +866,13 @@ $(function () {
var $tooltip = $container.find('.tooltip')
setTimeout(function () {
- ok(Math.round($tooltip.offset().top + $tooltip.outerHeight()) <= Math.round($trigger.offset().top))
+ assert.ok(Math.round($tooltip.offset().top + $tooltip.outerHeight()) <= Math.round($trigger.offset().top))
done()
}, 0)
})
- test('should place tooltip inside viewport', function (assert) {
+ QUnit.test('should place tooltip inside viewport', function (assert) {
+ assert.expect(1)
var done = assert.async()
var $container = $('<div/>')
@@ -765,68 +898,71 @@ $(function () {
.bootstrapTooltip('show')
setTimeout(function () {
- ok($('.tooltip').offset().left >= 0)
+ assert.ok($('.tooltip').offset().left >= 0)
done()
}, 0)
})
- test('should show tooltip if leave event hasn\'t occurred before delay expires', function (assert) {
+ QUnit.test('should show tooltip if leave event hasn\'t occurred before delay expires', function (assert) {
+ assert.expect(2)
var done = assert.async()
- var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip">Tooltip trigger</a>')
+ var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
.appendTo('#qunit-fixture')
.bootstrapTooltip({ delay: 150 })
setTimeout(function () {
- ok(!$('.tooltip').is('.fade.in'), '100ms: tooltip is not faded in')
+ assert.ok(!$('.tooltip').is('.fade.in'), '100ms: tooltip is not faded in')
}, 100)
setTimeout(function () {
- ok($('.tooltip').is('.fade.in'), '200ms: tooltip is faded in')
+ assert.ok($('.tooltip').is('.fade.in'), '200ms: tooltip is faded in')
done()
}, 200)
$tooltip.trigger('mouseenter')
})
- test('should not show tooltip if leave event occurs before delay expires', function (assert) {
+ QUnit.test('should not show tooltip if leave event occurs before delay expires', function (assert) {
+ assert.expect(2)
var done = assert.async()
- var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip">Tooltip trigger</a>')
+ var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
.appendTo('#qunit-fixture')
.bootstrapTooltip({ delay: 150 })
setTimeout(function () {
- ok(!$('.tooltip').is('.fade.in'), '100ms: tooltip not faded in')
+ assert.ok(!$('.tooltip').is('.fade.in'), '100ms: tooltip not faded in')
$tooltip.trigger('mouseout')
}, 100)
setTimeout(function () {
- ok(!$('.tooltip').is('.fade.in'), '200ms: tooltip not faded in')
+ assert.ok(!$('.tooltip').is('.fade.in'), '200ms: tooltip not faded in')
done()
}, 200)
$tooltip.trigger('mouseenter')
})
- test('should not hide tooltip if leave event occurs and enter event occurs within the hide delay', function (assert) {
+ QUnit.test('should not hide tooltip if leave event occurs and enter event occurs within the hide delay', function (assert) {
+ assert.expect(3)
var done = assert.async()
- var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip">Tooltip trigger</a>')
+ var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
.appendTo('#qunit-fixture')
.bootstrapTooltip({ delay: { show: 0, hide: 150 }})
setTimeout(function () {
- ok($('.tooltip').is('.fade.in'), '1ms: tooltip faded in')
+ assert.ok($('.tooltip').is('.fade.in'), '1ms: tooltip faded in')
$tooltip.trigger('mouseout')
setTimeout(function () {
- ok($('.tooltip').is('.fade.in'), '100ms: tooltip still faded in')
+ assert.ok($('.tooltip').is('.fade.in'), '100ms: tooltip still faded in')
$tooltip.trigger('mouseenter')
}, 100)
setTimeout(function () {
- ok($('.tooltip').is('.fade.in'), '200ms: tooltip still faded in')
+ assert.ok($('.tooltip').is('.fade.in'), '200ms: tooltip still faded in')
done()
}, 200)
}, 0)
@@ -834,65 +970,68 @@ $(function () {
$tooltip.trigger('mouseenter')
})
- test('should not show tooltip if leave event occurs before delay expires', function (assert) {
+ QUnit.test('should not show tooltip if leave event occurs before delay expires', function (assert) {
+ assert.expect(2)
var done = assert.async()
- var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip">Tooltip trigger</a>')
+ var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
.appendTo('#qunit-fixture')
.bootstrapTooltip({ delay: 150 })
setTimeout(function () {
- ok(!$('.tooltip').is('.fade.in'), '100ms: tooltip not faded in')
+ assert.ok(!$('.tooltip').is('.fade.in'), '100ms: tooltip not faded in')
$tooltip.trigger('mouseout')
}, 100)
setTimeout(function () {
- ok(!$('.tooltip').is('.fade.in'), '200ms: tooltip not faded in')
+ assert.ok(!$('.tooltip').is('.fade.in'), '200ms: tooltip not faded in')
done()
}, 200)
$tooltip.trigger('mouseenter')
})
- test('should not show tooltip if leave event occurs before delay expires, even if hide delay is 0', function (assert) {
+ QUnit.test('should not show tooltip if leave event occurs before delay expires, even if hide delay is 0', function (assert) {
+ assert.expect(2)
var done = assert.async()
- var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip">Tooltip trigger</a>')
+ var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
.appendTo('#qunit-fixture')
.bootstrapTooltip({ delay: { show: 150, hide: 0 }})
setTimeout(function () {
- ok(!$('.tooltip').is('.fade.in'), '100ms: tooltip not faded in')
+ assert.ok(!$('.tooltip').is('.fade.in'), '100ms: tooltip not faded in')
$tooltip.trigger('mouseout')
}, 100)
setTimeout(function () {
- ok(!$('.tooltip').is('.fade.in'), '250ms: tooltip not faded in')
+ assert.ok(!$('.tooltip').is('.fade.in'), '250ms: tooltip not faded in')
done()
}, 250)
$tooltip.trigger('mouseenter')
})
- test('should wait 200ms before hiding the tooltip', function (assert) {
+ QUnit.test('should wait 200ms before hiding the tooltip', function (assert) {
+ assert.expect(3)
var done = assert.async()
- var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip">Tooltip trigger</a>')
+ var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
.appendTo('#qunit-fixture')
.bootstrapTooltip({ delay: { show: 0, hide: 150 }})
setTimeout(function () {
- ok($('.tooltip').is('.fade.in'), '1ms: tooltip faded in')
+ assert.ok($tooltip.data('bs.tooltip').$tip.is('.fade.in'), '1ms: tooltip faded in')
$tooltip.trigger('mouseout')
setTimeout(function () {
- ok($('.tooltip').is('.fade.in'), '100ms: tooltip still faded in')
+ assert.ok($tooltip.data('bs.tooltip').$tip.is('.fade.in'), '100ms: tooltip still faded in')
}, 100)
setTimeout(function () {
- ok(!$('.tooltip').is('.in'), '200ms: tooltip removed')
- start()
+ assert.ok(!$tooltip.data('bs.tooltip').$tip.is('.in'), '200ms: tooltip removed')
+ done()
}, 200)
}, 0)
@@ -900,12 +1039,13 @@ $(function () {
$tooltip.trigger('mouseenter')
})
- test('should correctly position tooltips on SVG elements', function (assert) {
+ QUnit.test('should correctly position tooltips on SVG elements', function (assert) {
if (!window.SVGElement) {
// Skip IE8 since it doesn't support SVG
- expect(0)
+ assert.expect(0)
return
}
+ assert.expect(2)
var done = assert.async()
@@ -928,9 +1068,9 @@ $(function () {
.on('shown.bs.tooltip', function () {
var offset = $('.tooltip').offset()
$styles.remove()
- ok(Math.abs(offset.left - 88) <= 1, 'tooltip has correct horizontal location')
+ assert.ok(Math.abs(offset.left - 88) <= 1, 'tooltip has correct horizontal location')
$circle.bootstrapTooltip('hide')
- equal($('.tooltip').length, 0, 'tooltip removed from dom')
+ assert.strictEqual($('.tooltip').length, 0, 'tooltip removed from dom')
done()
})
.bootstrapTooltip({ container: 'body', placement: 'top', trigger: 'manual' })
@@ -938,7 +1078,8 @@ $(function () {
$circle.bootstrapTooltip('show')
})
- test('should correctly determine auto placement based on container rather than parent', function (assert) {
+ QUnit.test('should correctly determine auto placement based on container rather than parent', function (assert) {
+ assert.expect(2)
var done = assert.async()
var styles = '<style>'
@@ -961,13 +1102,13 @@ $(function () {
var $tip = $('.tooltip-inner')
var tipXrightEdge = $tip.offset().left + $tip.width()
var triggerXleftEdge = $trigger.offset().left
- ok(tipXrightEdge < triggerXleftEdge, 'tooltip with auto left placement, when near the right edge of the viewport, gets left placement')
+ assert.ok(tipXrightEdge < triggerXleftEdge, 'tooltip with auto left placement, when near the right edge of the viewport, gets left placement')
$trigger.bootstrapTooltip('hide')
})
.on('hidden.bs.tooltip', function () {
$styles.remove()
$(this).remove()
- equal($('.tooltip').length, 0, 'tooltip removed from dom')
+ assert.strictEqual($('.tooltip').length, 0, 'tooltip removed from dom')
done()
})
.bootstrapTooltip({
@@ -979,9 +1120,10 @@ $(function () {
$trigger.bootstrapTooltip('show')
})
- test('should not reload the tooltip on subsequent mouseenter events', function () {
+ QUnit.test('should not reload the tooltip on subsequent mouseenter events', function (assert) {
+ assert.expect(1)
var titleHtml = function () {
- var uid = 'fatTooltip'
+ var uid = $.fn.bootstrapTooltip.Constructor.prototype.getUID('tooltip')
return '<p id="tt-content">' + uid + '</p><p>' + uid + '</p><p>' + uid + '</p>'
}
@@ -1002,12 +1144,13 @@ $(function () {
var currentUid = $('#tt-content').text()
$('#tt-content').trigger('mouseenter')
- equal(currentUid, $('#tt-content').text())
+ assert.strictEqual(currentUid, $('#tt-content').text())
})
- test('should not reload the tooltip if the mouse leaves and re-enters before hiding', function () {
+ QUnit.test('should not reload the tooltip if the mouse leaves and re-enters before hiding', function (assert) {
+ assert.expect(4)
var titleHtml = function () {
- var uid = 'fatTooltip'
+ var uid = $.fn.bootstrapTooltip.Constructor.prototype.getUID('tooltip')
return '<p id="tt-content">' + uid + '</p><p>' + uid + '</p><p>' + uid + '</p>'
}
@@ -1030,19 +1173,18 @@ $(function () {
var currentUid = $('#tt-content').text()
$('#tt-outer').trigger('mouseleave')
- equal(currentUid, $('#tt-content').text())
-
- debugger
+ assert.strictEqual(currentUid, $('#tt-content').text())
- ok(obj.getHoverState() == 'out', 'the tooltip hoverState should be set to "out"')
+ assert.ok(obj.hoverState == 'out', 'the tooltip hoverState should be set to "out"')
$('#tt-content').trigger('mouseenter')
- ok(obj.getHoverState() == 'in', 'the tooltip hoverState should be set to "in"')
+ assert.ok(obj.hoverState == 'in', 'the tooltip hoverState should be set to "in"')
- equal(currentUid, $('#tt-content').text())
+ assert.strictEqual(currentUid, $('#tt-content').text())
})
- test('should position arrow correctly when tooltip is moved to not appear offscreen', function (assert) {
+ QUnit.test('should position arrow correctly when tooltip is moved to not appear offscreen', function (assert) {
+ assert.expect(2)
var done = assert.async()
var styles = '<style>'
@@ -1056,14 +1198,14 @@ $(function () {
$('<a href="#" title="tooltip title" style="position: absolute; bottom: 0; right: 0;">Foobar</a>')
.appendTo('body')
.on('shown.bs.tooltip', function () {
- var arrowStyles = $('.tooltip').find('.tooltip-arrow').attr('style')
- ok(/left/i.test(arrowStyles) && !/top/i.test(arrowStyles), 'arrow positioned correctly')
+ var arrowStyles = $(this).data('bs.tooltip').$tip.find('.tooltip-arrow').attr('style')
+ assert.ok(/left/i.test(arrowStyles) && !/top/i.test(arrowStyles), 'arrow positioned correctly')
$(this).bootstrapTooltip('hide')
})
.on('hidden.bs.tooltip', function () {
$styles.remove()
$(this).remove()
- equal($('.tooltip').length, 0, 'tooltip removed from dom')
+ assert.strictEqual($('.tooltip').length, 0, 'tooltip removed from dom')
done()
})
.bootstrapTooltip({
@@ -1074,12 +1216,13 @@ $(function () {
.bootstrapTooltip('show')
})
- test('should correctly position tooltips on transformed elements', function (assert) {
+ QUnit.test('should correctly position tooltips on transformed elements', function (assert) {
var styleProps = document.documentElement.style
if (!('transform' in styleProps) && !('webkitTransform' in styleProps) && !('msTransform' in styleProps)) {
- expect(0)
+ assert.expect(0)
return
}
+ assert.expect(2)
var done = assert.async()
@@ -1092,14 +1235,14 @@ $(function () {
+ '</style>'
var $styles = $(styles).appendTo('head')
- var $element = $('<div id="target" title="1"></div>').appendTo('#qunit-fixture')
+ var $element = $('<div id="target" title="1"/>').appendTo('#qunit-fixture')
$element
.on('shown.bs.tooltip', function () {
var offset = $('.tooltip').offset()
$styles.remove()
- ok(Math.abs(offset.left - 88) <= 1, 'tooltip has correct horizontal location')
- ok(Math.abs(offset.top - 126) <= 1, 'tooltip has correct vertical location')
+ assert.ok(Math.abs(offset.left - 88) <= 1, 'tooltip has correct horizontal location')
+ assert.ok(Math.abs(offset.top - 126) <= 1, 'tooltip has correct vertical location')
$element.bootstrapTooltip('hide')
done()
})
@@ -1112,15 +1255,71 @@ $(function () {
$element.bootstrapTooltip('show')
})
- QUnit.test('should throw an error when trying to show a tooltip on a hidden element', function (assert) {
+ QUnit.test('should throw an error when initializing tooltip on the document object without specifying a delegation selector', function (assert) {
+ assert.expect(1)
+ assert.throws(function () {
+ $(document).bootstrapTooltip({ title: 'What am I on?' })
+ }, new Error('`selector` option must be specified when initializing tooltip on the window.document object!'))
+ })
+
+ QUnit.test('should do nothing when an attempt is made to hide an uninitialized tooltip', function (assert) {
assert.expect(1)
- var $target = $('<a href="#" rel="tooltip" title="Another tooltip" style="display: none;">I am hidden</a>').appendTo('#qunit-fixture')
+ var $tooltip = $('<span data-toggle="tooltip" title="some tip">some text</span>')
+ .appendTo('#qunit-fixture')
+ .on('hidden.bs.tooltip shown.bs.tooltip', function () {
+ assert.ok(false, 'should not fire any tooltip events')
+ })
+ .bootstrapTooltip('hide')
+ assert.strictEqual($tooltip.data('bs.tooltip'), undefined, 'should not initialize the tooltip')
+ })
+
+ QUnit.test('should throw an error when template contains multiple top-level elements', function (assert) {
+ assert.expect(1)
assert.throws(function () {
- $target.bootstrapTooltip('show')
- }, new Error('Can\'t show a tooltip/popover on a hidden element'))
+ $('<a href="#" data-toggle="tooltip" title="Another tooltip"></a>')
+ .appendTo('#qunit-fixture')
+ .bootstrapTooltip({ template: '<div>Foo</div><div>Bar</div>' })
+ .bootstrapTooltip('show')
+ }, new Error('tooltip `template` option must consist of exactly 1 top-level element!'))
+ })
+
+ QUnit.test('should not remove tooltip if multiple triggers are set and one is still active', function (assert) {
+ assert.expect(41)
+ var $el = $('<button>Trigger</button>')
+ .appendTo('#qunit-fixture')
+ .bootstrapTooltip({ trigger: 'click hover focus', animation: false })
+ var tooltip = $el.data('bs.tooltip')
+ var $tooltip = tooltip.tip()
+
+ function showingTooltip() { return $tooltip.hasClass('in') || tooltip.hoverState == 'in' }
+
+ var tests = [
+ ['mouseenter', 'mouseleave'],
- $target.remove()
+ ['focusin', 'focusout'],
+
+ ['click', 'click'],
+
+ ['mouseenter', 'focusin', 'focusout', 'mouseleave'],
+ ['mouseenter', 'focusin', 'mouseleave', 'focusout'],
+
+ ['focusin', 'mouseenter', 'mouseleave', 'focusout'],
+ ['focusin', 'mouseenter', 'focusout', 'mouseleave'],
+
+ ['click', 'focusin', 'mouseenter', 'focusout', 'mouseleave', 'click'],
+ ['mouseenter', 'click', 'focusin', 'focusout', 'mouseleave', 'click'],
+ ['mouseenter', 'focusin', 'click', 'click', 'mouseleave', 'focusout']
+ ]
+
+ assert.ok(!showingTooltip())
+
+ $.each(tests, function (idx, triggers) {
+ for (var i = 0, len = triggers.length; i < len; i++) {
+ $el.trigger(triggers[i]);
+ assert.equal(i < (len - 1), showingTooltip())
+ }
+ })
})
})