tooltip.js 38.4 KB
Newer Older
Jacob Thornton's avatar
Jacob Thornton committed
1
$(function () {
XhmikosR's avatar
XhmikosR committed
2
  'use strict';
Jacob Thornton's avatar
Jacob Thornton committed
3

4
  module('tooltip plugin')
XhmikosR's avatar
XhmikosR committed
5
6

  test('should be defined on jquery object', function () {
Dan Dascalescu's avatar
Dan Dascalescu committed
7
    ok($(document.body).tooltip, 'tooltip method is defined')
XhmikosR's avatar
XhmikosR committed
8
9
  })

10
  module('tooltip', {
XhmikosR's avatar
XhmikosR committed
11
    setup: function () {
12
13
14
      // 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()
    },
XhmikosR's avatar
XhmikosR committed
15
    teardown: function () {
16
17
18
19
20
21
      $.fn.tooltip = $.fn.bootstrapTooltip
      delete $.fn.bootstrapTooltip
    }
  })

  test('should provide no conflict', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
22
    strictEqual($.fn.tooltip, undefined, 'tooltip was set back to undefined (org value)')
23
24
  })

Heinrich Fenkart's avatar
Heinrich Fenkart committed
25
26
27
28
29
  test('should return jquery collection containing the element', function () {
    var $el = $('<div/>')
    var $tooltip = $el.bootstrapTooltip()
    ok($tooltip instanceof $, 'returns jquery collection')
    strictEqual($tooltip[0], $el[0], 'collection contains element')
XhmikosR's avatar
XhmikosR committed
30
31
32
  })

  test('should expose default settings', function () {
fat's avatar
fat committed
33
    ok($.fn.bootstrapTooltip.Constructor.Defaults, 'defaults is defined')
XhmikosR's avatar
XhmikosR committed
34
35
36
  })

  test('should empty title attribute', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
37
38
    var $trigger = $('<a href="#" rel="tooltip" title="Another tooltip"/>').bootstrapTooltip()
    strictEqual($trigger.attr('title'), '', 'title attribute was emptied')
XhmikosR's avatar
XhmikosR committed
39
40
41
  })

  test('should add data attribute for referencing original title', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
42
43
    var $trigger = $('<a href="#" rel="tooltip" title="Another tooltip"/>').bootstrapTooltip()
    strictEqual($trigger.attr('data-original-title'), 'Another tooltip', 'original title preserved in data attribute')
XhmikosR's avatar
XhmikosR committed
44
45
  })

Heinrich Fenkart's avatar
Heinrich Fenkart committed
46
  test('should add aria-describedby to the trigger on show', function () {
47
    var $trigger = $('<a href="#" rel="tooltip" title="Another tooltip">Tooltip trigger</a>')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
48
      .bootstrapTooltip()
49
50
      .appendTo('#qunit-fixture')
      .bootstrapTooltip('show')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
51

52
53
    var id = $('.tooltip').attr('id')

Heinrich Fenkart's avatar
Heinrich Fenkart committed
54
55
56
    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')
57
58
  })

Heinrich Fenkart's avatar
Heinrich Fenkart committed
59
  test('should remove aria-describedby from trigger on hide', function () {
60
    var $trigger = $('<a href="#" rel="tooltip" title="Another tooltip">Tooltip trigger</a>')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
61
      .bootstrapTooltip()
62
      .appendTo('#qunit-fixture')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
63
64
65
66
67
68

    $trigger.bootstrapTooltip('show')
    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')
69
70
71
  })

  test('should assign a unique id tooltip element', function () {
72
    $('<a href="#" rel="tooltip" title="Another tooltip">Tooltip trigger</a>')
73
      .appendTo('#qunit-fixture')
XhmikosR's avatar
XhmikosR committed
74
      .bootstrapTooltip('show')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
75

XhmikosR's avatar
XhmikosR committed
76
    var id = $('.tooltip').attr('id')
77

Heinrich Fenkart's avatar
Heinrich Fenkart committed
78
79
    strictEqual($('#' + id).length, 1, 'tooltip has unique id')
    strictEqual(id.indexOf('tooltip'), 0, 'tooltip id has prefix')
80
81
  })

XhmikosR's avatar
XhmikosR committed
82
  test('should place tooltips relative to placement option', function () {
83
    var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip">Tooltip trigger</a>')
XhmikosR's avatar
XhmikosR committed
84
      .appendTo('#qunit-fixture')
XhmikosR's avatar
XhmikosR committed
85
      .bootstrapTooltip({ placement: 'bottom' })
XhmikosR's avatar
XhmikosR committed
86

Heinrich Fenkart's avatar
Heinrich Fenkart committed
87
    $tooltip.bootstrapTooltip('show')
88
    ok($('.tooltip').is('.fade.tooltip-bottom.in'), 'has correct classes applied')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
89
90
91

    $tooltip.bootstrapTooltip('hide')
    equal($('.tooltip').length, 0, 'tooltip removed')
XhmikosR's avatar
XhmikosR committed
92
93
94
  })

  test('should allow html entities', function () {
95
    var $tooltip = $('<a href="#" rel="tooltip" title="&lt;b&gt;@fat&lt;/b&gt;">Tooltip trigger</a>')
XhmikosR's avatar
XhmikosR committed
96
      .appendTo('#qunit-fixture')
XhmikosR's avatar
XhmikosR committed
97
      .bootstrapTooltip({ html: true })
XhmikosR's avatar
XhmikosR committed
98

Heinrich Fenkart's avatar
Heinrich Fenkart committed
99
100
101
102
103
    $tooltip.bootstrapTooltip('show')
    notEqual($('.tooltip b').length, 0, 'b tag was inserted')

    $tooltip.bootstrapTooltip('hide')
    equal($('.tooltip').length, 0, 'tooltip removed')
XhmikosR's avatar
XhmikosR committed
104
105
106
  })

  test('should respect custom classes', function () {
107
    var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip">Tooltip trigger</a>')
XhmikosR's avatar
XhmikosR committed
108
      .appendTo('#qunit-fixture')
XhmikosR's avatar
XhmikosR committed
109
      .bootstrapTooltip({ template: '<div class="tooltip some-class"><div class="tooltip-arrow"/><div class="tooltip-inner"/></div>' })
XhmikosR's avatar
XhmikosR committed
110

Heinrich Fenkart's avatar
Heinrich Fenkart committed
111
    $tooltip.bootstrapTooltip('show')
XhmikosR's avatar
XhmikosR committed
112
    ok($('.tooltip').hasClass('some-class'), 'custom class is present')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
113
114
115

    $tooltip.bootstrapTooltip('hide')
    equal($('.tooltip').length, 0, 'tooltip removed')
XhmikosR's avatar
XhmikosR committed
116
117
  })

118
119
  test('should fire show event', function (assert) {
    var done = assert.async()
Heinrich Fenkart's avatar
Heinrich Fenkart committed
120

121
122
    $('<div title="tooltip title">Tooltip trigger</div>')
      .appendTo('#qunit-fixture')
XhmikosR's avatar
XhmikosR committed
123
      .on('show.bs.tooltip', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
124
        ok(true, 'show event fired')
125
        done()
XhmikosR's avatar
XhmikosR committed
126
      })
127
      .bootstrapTooltip('show')
XhmikosR's avatar
XhmikosR committed
128
129
  })

130
131
  test('should fire shown event', function (assert) {
    var done = assert.async()
Heinrich Fenkart's avatar
Heinrich Fenkart committed
132

133
    $('<div title="tooltip title">Tooltip trigger</div>')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
134
      .appendTo('#qunit-fixture')
XhmikosR's avatar
XhmikosR committed
135
136
      .on('shown.bs.tooltip', function () {
        ok(true, 'shown was called')
137
        done()
XhmikosR's avatar
XhmikosR committed
138
      })
139
      .bootstrapTooltip('show')
XhmikosR's avatar
XhmikosR committed
140
141
  })

142
143
  test('should not fire shown event when show was prevented', function (assert) {
    var done = assert.async()
Heinrich Fenkart's avatar
Heinrich Fenkart committed
144

145
146
    $('<div title="tooltip title">Tooltip trigger</div>')
      .appendTo('#qunit-fixture')
XhmikosR's avatar
XhmikosR committed
147
148
      .on('show.bs.tooltip', function (e) {
        e.preventDefault()
Heinrich Fenkart's avatar
Heinrich Fenkart committed
149
        ok(true, 'show event fired')
150
        done()
XhmikosR's avatar
XhmikosR committed
151
152
      })
      .on('shown.bs.tooltip', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
153
        ok(false, 'shown event fired')
XhmikosR's avatar
XhmikosR committed
154
      })
155
      .bootstrapTooltip('show')
XhmikosR's avatar
XhmikosR committed
156
157
  })

158
159
  test('should fire hide event', function (assert) {
    var done = assert.async()
Heinrich Fenkart's avatar
Heinrich Fenkart committed
160

161
    $('<div title="tooltip title">Tooltip trigger</div>')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
162
      .appendTo('#qunit-fixture')
XhmikosR's avatar
XhmikosR committed
163
      .on('shown.bs.tooltip', function () {
164
        $(this).bootstrapTooltip('hide')
XhmikosR's avatar
XhmikosR committed
165
166
      })
      .on('hide.bs.tooltip', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
167
        ok(true, 'hide event fired')
168
        done()
XhmikosR's avatar
XhmikosR committed
169
      })
170
      .bootstrapTooltip('show')
XhmikosR's avatar
XhmikosR committed
171
172
  })

173
174
  test('should fire hidden event', function (assert) {
    var done = assert.async()
Heinrich Fenkart's avatar
Heinrich Fenkart committed
175

176
    $('<div title="tooltip title">Tooltip trigger</div>')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
177
      .appendTo('#qunit-fixture')
XhmikosR's avatar
XhmikosR committed
178
      .on('shown.bs.tooltip', function () {
179
        $(this).bootstrapTooltip('hide')
XhmikosR's avatar
XhmikosR committed
180
181
      })
      .on('hidden.bs.tooltip', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
182
        ok(true, 'hidden event fired')
183
        done()
XhmikosR's avatar
XhmikosR committed
184
      })
185
      .bootstrapTooltip('show')
XhmikosR's avatar
XhmikosR committed
186
187
  })

188
189
  test('should not fire hidden event when hide was prevented', function (assert) {
    var done = assert.async()
Heinrich Fenkart's avatar
Heinrich Fenkart committed
190

191
    $('<div title="tooltip title">Tooltip trigger</div>')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
192
      .appendTo('#qunit-fixture')
XhmikosR's avatar
XhmikosR committed
193
      .on('shown.bs.tooltip', function () {
194
        $(this).bootstrapTooltip('hide')
XhmikosR's avatar
XhmikosR committed
195
196
197
      })
      .on('hide.bs.tooltip', function (e) {
        e.preventDefault()
Heinrich Fenkart's avatar
Heinrich Fenkart committed
198
        ok(true, 'hide event fired')
199
        done()
XhmikosR's avatar
XhmikosR committed
200
201
      })
      .on('hidden.bs.tooltip', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
202
        ok(false, 'hidden event fired')
XhmikosR's avatar
XhmikosR committed
203
      })
204
      .bootstrapTooltip('show')
XhmikosR's avatar
XhmikosR committed
205
206
207
  })

  test('should destroy tooltip', function () {
208
209
    var $tooltip = $('<div>Tooltip trigger</div>')
      .appendTo('#qunit-fixture')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
210
211
212
213
214
215
216
217
218
219
220
221
222
223
      .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')

    $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')
XhmikosR's avatar
XhmikosR committed
224
225
226
  })

  test('should show tooltip with delegate selector on click', function () {
227
    var $div = $('<div><a href="#" rel="tooltip" title="Another tooltip">Tooltip trigger</a></div>')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
228
229
230
231
232
233
234
      .appendTo('#qunit-fixture')
      .bootstrapTooltip({
        selector: 'a[rel="tooltip"]',
        trigger: 'click'
      })

    $div.find('a').click()
XhmikosR's avatar
XhmikosR committed
235
    ok($('.tooltip').is('.fade.in'), 'tooltip is faded in')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
236
237
238

    $div.find('a').click()
    equal($('.tooltip').length, 0, 'tooltip was removed from dom')
XhmikosR's avatar
XhmikosR committed
239
240
241
  })

  test('should show tooltip when toggle is called', function () {
242
    $('<a href="#" rel="tooltip" title="tooltip on toggle">Tooltip trigger</a>')
XhmikosR's avatar
XhmikosR committed
243
      .appendTo('#qunit-fixture')
XhmikosR's avatar
XhmikosR committed
244
      .bootstrapTooltip({ trigger: 'manual' })
245
      .bootstrapTooltip('toggle')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
246
247

    ok($('.tooltip').is('.fade.in'), 'tooltip is faded in')
XhmikosR's avatar
XhmikosR committed
248
249
  })

Heinrich Fenkart's avatar
Heinrich Fenkart committed
250
251
  test('should hide previously shown tooltip when toggle is called on tooltip', function () {
    $('<a href="#" rel="tooltip" title="tooltip on toggle">@ResentedHook</a>')
252
      .appendTo('#qunit-fixture')
XhmikosR's avatar
XhmikosR committed
253
      .bootstrapTooltip({ trigger: 'manual' })
Heinrich Fenkart's avatar
Heinrich Fenkart committed
254
255
256
257
      .bootstrapTooltip('show')

    $('.tooltip').bootstrapTooltip('toggle')
    ok($('.tooltip').not('.fade.in'), 'tooltip was faded out')
258
259
  })

Heinrich Fenkart's avatar
Heinrich Fenkart committed
260
  test('should place tooltips inside body when container is body', function () {
261
    var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip">Tooltip trigger</a>')
XhmikosR's avatar
XhmikosR committed
262
      .appendTo('#qunit-fixture')
XhmikosR's avatar
XhmikosR committed
263
      .bootstrapTooltip({ container: 'body' })
264
      .bootstrapTooltip('show')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
265
266
267
268
269
270

    notEqual($('body > .tooltip').length, 0, 'tooltip is direct descendant of body')
    equal($('#qunit-fixture > .tooltip').length, 0, 'tooltip is not in parent')

    $tooltip.bootstrapTooltip('hide')
    equal($('body > .tooltip').length, 0, 'tooltip was removed from dom')
XhmikosR's avatar
XhmikosR committed
271
272
273
  })

  test('should add position class before positioning so that position-specific styles are taken into account', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
274
    var styles = '<style>'
275
276
        + '.tooltip.tooltip-right { white-space: nowrap; }'
        + '.tooltip.tooltip-right .tooltip-inner { max-width: none; }'
Heinrich Fenkart's avatar
Heinrich Fenkart committed
277
        + '</style>'
278
    var $styles = $(styles).appendTo('head')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
279

fat's avatar
fat committed
280
    var $container = $('<div/>').appendTo('#qunit-fixture')
281
    var $target = $('<a href="#" rel="tooltip" title="very very very very very very very very long tooltip in one line">m</a>')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
282
283
284
285
286
287
288
      .appendTo($container)
      .bootstrapTooltip({
        placement: 'right',
        viewport: null
      })
      .bootstrapTooltip('show')
    var $tooltip = $container.find('.tooltip')
XhmikosR's avatar
XhmikosR committed
289
290

    // this is some dumb hack shit because sub pixels in firefox
Heinrich Fenkart's avatar
Heinrich Fenkart committed
291
292
    var top = Math.round($target.offset().top + ($target[0].offsetHeight / 2) - ($tooltip[0].offsetHeight / 2))
    var top2 = Math.round($tooltip.offset().top)
XhmikosR's avatar
XhmikosR committed
293
    var topDiff = top - top2
XhmikosR's avatar
XhmikosR committed
294
    ok(topDiff <= 1 && topDiff >= -1)
Heinrich Fenkart's avatar
Heinrich Fenkart committed
295
296
297
298
    $target.bootstrapTooltip('hide')

    $container.remove()
    $styles.remove()
XhmikosR's avatar
XhmikosR committed
299
300
  })

Heinrich Fenkart's avatar
Heinrich Fenkart committed
301
  test('should use title attribute for tooltip text', function () {
302
    var $tooltip = $('<a href="#" rel="tooltip" title="Simple tooltip">Tooltip trigger</a>')
XhmikosR's avatar
XhmikosR committed
303
      .appendTo('#qunit-fixture')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
304
305
306
      .bootstrapTooltip()

    $tooltip.bootstrapTooltip('show')
XhmikosR's avatar
XhmikosR committed
307
    equal($('.tooltip').children('.tooltip-inner').text(), 'Simple tooltip', 'title from title attribute is set')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
308
309
310

    $tooltip.bootstrapTooltip('hide')
    equal($('.tooltip').length, 0, 'tooltip removed from dom')
XhmikosR's avatar
XhmikosR committed
311
312
  })

Heinrich Fenkart's avatar
Heinrich Fenkart committed
313
  test('should prefer title attribute over title option', function () {
314
    var $tooltip = $('<a href="#" rel="tooltip" title="Simple tooltip">Tooltip trigger</a>')
XhmikosR's avatar
XhmikosR committed
315
      .appendTo('#qunit-fixture')
316
      .bootstrapTooltip({
XhmikosR's avatar
XhmikosR committed
317
318
        title: 'This is a tooltip with some content'
      })
Heinrich Fenkart's avatar
Heinrich Fenkart committed
319
320

    $tooltip.bootstrapTooltip('show')
321
    equal($('.tooltip').children('.tooltip-inner').text(), 'Simple tooltip', 'title is set from title attribute while preferred over title option')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
322
323
324

    $tooltip.bootstrapTooltip('hide')
    equal($('.tooltip').length, 0, 'tooltip removed from dom')
XhmikosR's avatar
XhmikosR committed
325
326
  })

Heinrich Fenkart's avatar
Heinrich Fenkart committed
327
  test('should use title option', function () {
328
    var $tooltip = $('<a href="#" rel="tooltip">Tooltip trigger</a>')
XhmikosR's avatar
XhmikosR committed
329
      .appendTo('#qunit-fixture')
330
      .bootstrapTooltip({
XhmikosR's avatar
XhmikosR committed
331
332
        title: 'This is a tooltip with some content'
      })
Heinrich Fenkart's avatar
Heinrich Fenkart committed
333
334

    $tooltip.bootstrapTooltip('show')
XhmikosR's avatar
XhmikosR committed
335
    equal($('.tooltip').children('.tooltip-inner').text(), 'This is a tooltip with some content', 'title from title option is set')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355

    $tooltip.bootstrapTooltip('hide')
    equal($('.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>')
    var $container = $('<div/>')
      .css({
        position: 'absolute',
        overflow: 'hidden',
        width: 600,
        height: 400,
        top: 0,
        left: 0
      })
      .appendTo(document.body)

    var $topTooltip = $('<div style="left: 0; top: 0;" rel="tooltip" title="Top tooltip">Top Dynamic Tooltip</div>')
      .appendTo($container)
XhmikosR's avatar
XhmikosR committed
356
      .bootstrapTooltip({ placement: 'auto' })
XhmikosR's avatar
XhmikosR committed
357

Heinrich Fenkart's avatar
Heinrich Fenkart committed
358
    $topTooltip.bootstrapTooltip('show')
359
    ok($('.tooltip').is('.tooltip-bottom'), 'top positioned tooltip is dynamically positioned to bottom')
XhmikosR's avatar
XhmikosR committed
360

Heinrich Fenkart's avatar
Heinrich Fenkart committed
361
362
    $topTooltip.bootstrapTooltip('hide')
    equal($('.tooltip').length, 0, 'top positioned tooltip removed from dom')
XhmikosR's avatar
XhmikosR committed
363

Heinrich Fenkart's avatar
Heinrich Fenkart committed
364
365
    var $rightTooltip = $('<div style="right: 0;" rel="tooltip" title="Right tooltip">Right Dynamic Tooltip</div>')
      .appendTo($container)
XhmikosR's avatar
XhmikosR committed
366
      .bootstrapTooltip({ placement: 'right auto' })
XhmikosR's avatar
XhmikosR committed
367

Heinrich Fenkart's avatar
Heinrich Fenkart committed
368
    $rightTooltip.bootstrapTooltip('show')
369
    ok($('.tooltip').is('.tooltip-left'), 'right positioned tooltip is dynamically positioned left')
XhmikosR's avatar
XhmikosR committed
370

Heinrich Fenkart's avatar
Heinrich Fenkart committed
371
372
373
374
375
    $rightTooltip.bootstrapTooltip('hide')
    equal($('.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)
XhmikosR's avatar
XhmikosR committed
376
      .bootstrapTooltip({ placement: 'auto left' })
XhmikosR's avatar
XhmikosR committed
377

Heinrich Fenkart's avatar
Heinrich Fenkart committed
378
    $leftTooltip.bootstrapTooltip('show')
379
    ok($('.tooltip').is('.tooltip-right'), 'left positioned tooltip is dynamically positioned right')
XhmikosR's avatar
XhmikosR committed
380

Heinrich Fenkart's avatar
Heinrich Fenkart committed
381
382
383
384
385
    $leftTooltip.bootstrapTooltip('hide')
    equal($('.tooltip').length, 0, 'left positioned tooltip removed from dom')

    $container.remove()
    $style.remove()
XhmikosR's avatar
XhmikosR committed
386
  })
387

388
389
390
  test('should position tip on top if viewport has enough space and placement is "auto top"', function () {
    var styles = '<style>'
        + 'body { padding-top: 100px; }'
391
        + '#section { height: 300px; border: 1px solid red; padding-top: 50px }'
392
393
394
395
        + 'div[rel="tooltip"] { width: 150px; border: 1px solid blue; }'
        + '</style>'
    var $styles = $(styles).appendTo('head')

396
    var $container = $('<div id="section"/>').appendTo('#qunit-fixture')
397
398
399
400
    var $target = $('<div rel="tooltip" title="tip"/>')
      .appendTo($container)
      .bootstrapTooltip({
        placement: 'auto top',
401
        viewport: '#section'
402
403
404
      })

    $target.bootstrapTooltip('show')
405
    ok($('.tooltip').is('.tooltip-top'), 'top positioned tooltip is dynamically positioned to top')
406
407
408
409
410
411
412
413
414
415

    $target.bootstrapTooltip('hide')
    equal($('.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 () {
    var styles = '<style>'
        + 'body { padding-top: 100px; }'
416
        + '#section { height: 300px; border: 1px solid red; }'
417
418
419
420
        + 'div[rel="tooltip"] { width: 150px; border: 1px solid blue; }'
        + '</style>'
    var $styles = $(styles).appendTo('head')

421
    var $container = $('<div id="section"/>').appendTo('#qunit-fixture')
422
423
424
425
    var $target = $('<div rel="tooltip" title="tip"/>')
      .appendTo($container)
      .bootstrapTooltip({
        placement: 'auto top',
426
        viewport: '#section'
427
428
429
      })

    $target.bootstrapTooltip('show')
430
    ok($('.tooltip').is('.tooltip-bottom'), 'top positioned tooltip is dynamically positioned to bottom')
431
432
433
434
435
436
437

    $target.bootstrapTooltip('hide')
    equal($('.tooltip').length, 0, 'tooltip removed from dom')

    $styles.remove()
  })

438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
  test('should display the tip on top whenever scrollable viewport has enough room if the given placement is "auto top"', function () {
    var styles = '<style>'
        + '#scrollable-div { height: 200px; overflow: auto; }'
        + '.tooltip-item { margin: 200px 0 400px; width: 150px; }'
        + '</style>'
    var $styles = $(styles).appendTo('head')

    var $container = $('<div id="scrollable-div"/>').appendTo('#qunit-fixture')
    var $target = $('<div rel="tooltip" title="tip" class="tooltip-item">Tooltip Item</div>')
      .appendTo($container)
      .bootstrapTooltip({
        placement: 'top auto',
        viewport: '#scrollable-div'
      })

    $('#scrollable-div').scrollTop(100)

    $target.bootstrapTooltip('show')
456
    ok($('.tooltip').is('.fade.tooltip-top.in'), 'has correct classes applied')
457
458
459
460
461
462
463
464
465
466

    $target.bootstrapTooltip('hide')
    equal($('.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 () {
    var styles = '<style>'
        + '#scrollable-div { height: 200px; overflow: auto; }'
467
        + '.tooltip-item { padding: 200px 0 400px; width: 150px; }'
468
469
470
471
472
473
474
475
476
477
478
479
480
481
        + '</style>'
    var $styles = $(styles).appendTo('head')

    var $container = $('<div id="scrollable-div"/>').appendTo('#qunit-fixture')
    var $target = $('<div rel="tooltip" title="tip" class="tooltip-item">Tooltip Item</div>')
      .appendTo($container)
      .bootstrapTooltip({
        placement: 'top auto',
        viewport: '#scrollable-div'
      })

    $('#scrollable-div').scrollTop(200)

    $target.bootstrapTooltip('show')
482
    ok($('.tooltip').is('.fade.tooltip-bottom.in'), 'has correct classes applied')
483
484
485
486
487
488
489
490
491
492

    $target.bootstrapTooltip('hide')
    equal($('.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 () {
    var styles = '<style>'
        + '#scrollable-div { height: 200px; overflow: auto; }'
493
494
495
        + '.spacer { height: 400px; }'
        + '.spacer:first-child { height: 200px; }'
        + '.tooltip-item { width: 150px; }'
496
497
498
499
500
501
        + '</style>'
    var $styles = $(styles).appendTo('head')

    var $container = $('<div id="scrollable-div"/>').appendTo('#qunit-fixture')
    var $target = $('<div rel="tooltip" title="tip" class="tooltip-item">Tooltip Item</div>')
      .appendTo($container)
502
503
      .before('<div class="spacer"/>')
      .after('<div class="spacer"/>')
504
505
506
507
508
509
510
511
      .bootstrapTooltip({
        placement: 'bottom auto',
        viewport: '#scrollable-div'
      })

    $('#scrollable-div').scrollTop(200)

    $target.bootstrapTooltip('show')
512
    ok($('.tooltip').is('.fade.tooltip-bottom.in'), 'has correct classes applied')
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537

    $target.bootstrapTooltip('hide')
    equal($('.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 () {
    var styles = '<style>'
        + '#scrollable-div { height: 200px; overflow: auto; }'
        + '.tooltip-item { margin-top: 400px; width: 150px; }'
        + '</style>'
    var $styles = $(styles).appendTo('head')

    var $container = $('<div id="scrollable-div"/>').appendTo('#qunit-fixture')
    var $target = $('<div rel="tooltip" title="tip" class="tooltip-item">Tooltip Item</div>')
      .appendTo($container)
      .bootstrapTooltip({
        placement: 'bottom auto',
        viewport: '#scrollable-div'
      })

    $('#scrollable-div').scrollTop(400)

    $target.bootstrapTooltip('show')
538
    ok($('.tooltip').is('.fade.tooltip-top.in'), 'has correct classes applied')
539
540
541
542
543
544
545

    $target.bootstrapTooltip('hide')
    equal($('.tooltip').length, 0, 'tooltip removed from dom')

    $styles.remove()
  })

Heinrich Fenkart's avatar
Heinrich Fenkart committed
546
  test('should adjust the tip\'s top position when up against the top of the viewport', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
547
548
549
550
    var styles = '<style>'
        + '.tooltip .tooltip-inner { width: 200px; height: 200px; max-width: none; }'
        + 'a[rel="tooltip"] { position: fixed; }'
        + '</style>'
551
    var $styles = $(styles).appendTo('head')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
552

fat's avatar
fat committed
553
    var $container = $('<div/>').appendTo('#qunit-fixture')
554
    var $target = $('<a href="#" rel="tooltip" title="tip" style="top: 0px; left: 0px;">m</a>')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
555
556
557
558
559
560
561
562
563
564
565
      .appendTo($container)
      .bootstrapTooltip({
        placement: 'right',
        viewport: {
          selector: 'body',
          padding: 12
        }
      })

    $target.bootstrapTooltip('show')
    equal(Math.round($container.find('.tooltip').offset().top), 12)
566

Heinrich Fenkart's avatar
Heinrich Fenkart committed
567
568
    $target.bootstrapTooltip('hide')
    equal($('.tooltip').length, 0, 'tooltip removed from dom')
569

Heinrich Fenkart's avatar
Heinrich Fenkart committed
570
    $styles.remove()
571
572
  })

Heinrich Fenkart's avatar
Heinrich Fenkart committed
573
  test('should adjust the tip\'s top position when up against the bottom of the viewport', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
574
575
576
577
    var styles = '<style>'
        + '.tooltip .tooltip-inner { width: 200px; height: 200px; max-width: none; }'
        + 'a[rel="tooltip"] { position: fixed; }'
        + '</style>'
578
    var $styles = $(styles).appendTo('head')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
579

fat's avatar
fat committed
580
    var $container = $('<div/>').appendTo('#qunit-fixture')
581
    var $target = $('<a href="#" rel="tooltip" title="tip" style="bottom: 0px; left: 0px;">m</a>')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
582
583
584
585
586
587
588
589
      .appendTo($container)
      .bootstrapTooltip({
        placement: 'right',
        viewport: {
          selector: 'body',
          padding: 12
        }
      })
590

Heinrich Fenkart's avatar
Heinrich Fenkart committed
591
592
593
    $target.bootstrapTooltip('show')
    var $tooltip = $container.find('.tooltip')
    strictEqual(Math.round($tooltip.offset().top), Math.round($(window).height() - 12 - $tooltip[0].offsetHeight))
594

Heinrich Fenkart's avatar
Heinrich Fenkart committed
595
596
597
598
599
    $target.bootstrapTooltip('hide')
    equal($('.tooltip').length, 0, 'tooltip removed from dom')

    $container.remove()
    $styles.remove()
600
601
  })

Heinrich Fenkart's avatar
Heinrich Fenkart committed
602
  test('should adjust the tip\'s left position when up against the left of the viewport', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
603
604
605
606
    var styles = '<style>'
        + '.tooltip .tooltip-inner { width: 200px; height: 200px; max-width: none; }'
        + 'a[rel="tooltip"] { position: fixed; }'
        + '</style>'
607
    var $styles = $(styles).appendTo('head')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
608

fat's avatar
fat committed
609
    var $container = $('<div/>').appendTo('#qunit-fixture')
610
    var $target = $('<a href="#" rel="tooltip" title="tip" style="top: 0px; left: 0px;">m</a>')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
611
612
613
614
615
616
617
618
619
620
621
      .appendTo($container)
      .bootstrapTooltip({
        placement: 'bottom',
        viewport: {
          selector: 'body',
          padding: 12
        }
      })

    $target.bootstrapTooltip('show')
    strictEqual(Math.round($container.find('.tooltip').offset().left), 12)
622

Heinrich Fenkart's avatar
Heinrich Fenkart committed
623
624
    $target.bootstrapTooltip('hide')
    equal($('.tooltip').length, 0, 'tooltip removed from dom')
625

Heinrich Fenkart's avatar
Heinrich Fenkart committed
626
627
    $container.remove()
    $styles.remove()
628
629
  })

Heinrich Fenkart's avatar
Heinrich Fenkart committed
630
  test('should adjust the tip\'s left position when up against the right of the viewport', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
631
632
633
634
    var styles = '<style>'
        + '.tooltip .tooltip-inner { width: 200px; height: 200px; max-width: none; }'
        + 'a[rel="tooltip"] { position: fixed; }'
        + '</style>'
635
    var $styles = $(styles).appendTo('head')
636

Heinrich Fenkart's avatar
Heinrich Fenkart committed
637
    var $container = $('<div/>').appendTo('body')
638
    var $target = $('<a href="#" rel="tooltip" title="tip" style="top: 0px; right: 0px;">m</a>')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
639
640
641
642
643
644
645
646
647
648
649
650
      .appendTo($container)
      .bootstrapTooltip({
        placement: 'bottom',
        viewport: {
          selector: 'body',
          padding: 12
        }
      })

    $target.bootstrapTooltip('show')
    var $tooltip = $container.find('.tooltip')
    strictEqual(Math.round($tooltip.offset().left), Math.round($(window).width() - 12 - $tooltip[0].offsetWidth))
651

Heinrich Fenkart's avatar
Heinrich Fenkart committed
652
653
654
655
656
    $target.bootstrapTooltip('hide')
    equal($('.tooltip').length, 0, 'tooltip removed from dom')

    $container.remove()
    $styles.remove()
657
658
659
  })

  test('should adjust the tip when up against the right of an arbitrary viewport', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
660
661
662
663
664
    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>'
665
    var $styles = $(styles).appendTo('head')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
666
667

    var $container = $('<div class="container-viewport"/>').appendTo(document.body)
668
    var $target = $('<a href="#" rel="tooltip" title="tip" style="top: 50px; left: 350px;">m</a>')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
669
670
671
672
673
674
675
676
677
      .appendTo($container)
      .bootstrapTooltip({
        placement: 'bottom',
        viewport: '.container-viewport'
      })

    $target.bootstrapTooltip('show')
    var $tooltip = $container.find('.tooltip')
    strictEqual(Math.round($tooltip.offset().left), Math.round(60 + $container.width() - $tooltip[0].offsetWidth))
678

Heinrich Fenkart's avatar
Heinrich Fenkart committed
679
680
    $target.bootstrapTooltip('hide')
    equal($('.tooltip').length, 0, 'tooltip removed from dom')
681

Heinrich Fenkart's avatar
Heinrich Fenkart committed
682
683
    $container.remove()
    $styles.remove()
684
  })
Chris Rebert's avatar
Chris Rebert committed
685
686

  test('should not error when trying to show an auto-placed tooltip that has been removed from the dom', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
687
    var passed = true
688
    var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip">Tooltip trigger</a>')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
689
      .appendTo('#qunit-fixture')
Chris Rebert's avatar
Chris Rebert committed
690
      .one('show.bs.tooltip', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
691
        $(this).remove()
Chris Rebert's avatar
Chris Rebert committed
692
693
694
695
      })
      .bootstrapTooltip({ placement: 'auto' })

    try {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
696
697
      $tooltip.bootstrapTooltip('show')
    } catch (err) {
Chris Rebert's avatar
Chris Rebert committed
698
699
700
701
      passed = false
      console.log(err)
    }

Heinrich Fenkart's avatar
Heinrich Fenkart committed
702
    ok(passed, '.tooltip(\'show\') should not throw an error if element no longer is in dom')
Chris Rebert's avatar
Chris Rebert committed
703
  })
fat's avatar
fat committed
704

705
706
  test('should place tooltip on top of element', function (assert) {
    var done = assert.async()
fat's avatar
fat committed
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737

    var containerHTML = '<div>'
        + '<p style="margin-top: 200px">'
        + '<a href="#" title="very very very very very very very long tooltip">Hover me</a>'
        + '</p>'
        + '</div>'

    var $container = $(containerHTML)
      .css({
        position: 'absolute',
        bottom: 0,
        left: 0,
        textAlign: 'right',
        width: 300,
        height: 300
      })
      .appendTo('#qunit-fixture')

    var $trigger = $container
      .find('a')
      .css('margin-top', 200)
      .bootstrapTooltip({
        placement: 'top',
        animate: false
      })
      .bootstrapTooltip('show')

    var $tooltip = $container.find('.tooltip')

    setTimeout(function () {
      ok(Math.round($tooltip.offset().top + $tooltip.outerHeight()) <= Math.round($trigger.offset().top))
738
      done()
fat's avatar
fat committed
739
740
741
    }, 0)
  })

742
743
  test('should place tooltip inside viewport', function (assert) {
    var done = assert.async()
fat's avatar
fat committed
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768

    var $container = $('<div/>')
      .css({
        position: 'absolute',
        width: 200,
        height: 200,
        bottom: 0,
        left: 0
      })
      .appendTo('#qunit-fixture')

    $('<a href="#" title="Very very very very very very very very long tooltip">Hover me</a>')
      .css({
        position: 'absolute',
        top: 0,
        left: 0
      })
      .appendTo($container)
      .bootstrapTooltip({
        placement: 'top'
      })
      .bootstrapTooltip('show')

    setTimeout(function () {
      ok($('.tooltip').offset().left >= 0)
769
      done()
fat's avatar
fat committed
770
771
772
    }, 0)
  })

773
774
  test('should show tooltip if leave event hasn\'t occurred before delay expires', function (assert) {
    var done = assert.async()
fat's avatar
fat committed
775

776
    var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip">Tooltip trigger</a>')
fat's avatar
fat committed
777
      .appendTo('#qunit-fixture')
778
      .bootstrapTooltip({ delay: 150 })
fat's avatar
fat committed
779
780

    setTimeout(function () {
781
782
      ok(!$('.tooltip').is('.fade.in'), '100ms: tooltip is not faded in')
    }, 100)
fat's avatar
fat committed
783
784

    setTimeout(function () {
785
      ok($('.tooltip').is('.fade.in'), '200ms: tooltip is faded in')
786
      done()
787
    }, 200)
fat's avatar
fat committed
788
789
790
791

    $tooltip.trigger('mouseenter')
  })

792
793
  test('should not show tooltip if leave event occurs before delay expires', function (assert) {
    var done = assert.async()
fat's avatar
fat committed
794

795
    var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip">Tooltip trigger</a>')
fat's avatar
fat committed
796
      .appendTo('#qunit-fixture')
797
      .bootstrapTooltip({ delay: 150 })
fat's avatar
fat committed
798
799

    setTimeout(function () {
800
      ok(!$('.tooltip').is('.fade.in'), '100ms: tooltip not faded in')
fat's avatar
fat committed
801
      $tooltip.trigger('mouseout')
802
    }, 100)
fat's avatar
fat committed
803
804

    setTimeout(function () {
805
      ok(!$('.tooltip').is('.fade.in'), '200ms: tooltip not faded in')
806
      done()
807
    }, 200)
fat's avatar
fat committed
808
809
810
811

    $tooltip.trigger('mouseenter')
  })

812
813
  test('should not hide tooltip if leave event occurs and enter event occurs within the hide delay', function (assert) {
    var done = assert.async()
fat's avatar
fat committed
814

815
    var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip">Tooltip trigger</a>')
fat's avatar
fat committed
816
      .appendTo('#qunit-fixture')
817
      .bootstrapTooltip({ delay: { show: 0, hide: 150 }})
fat's avatar
fat committed
818
819
820
821
822
823

    setTimeout(function () {
      ok($('.tooltip').is('.fade.in'), '1ms: tooltip faded in')
      $tooltip.trigger('mouseout')

      setTimeout(function () {
824
        ok($('.tooltip').is('.fade.in'), '100ms: tooltip still faded in')
fat's avatar
fat committed
825
        $tooltip.trigger('mouseenter')
826
      }, 100)
fat's avatar
fat committed
827
828

      setTimeout(function () {
829
        ok($('.tooltip').is('.fade.in'), '200ms: tooltip still faded in')
830
        done()
831
      }, 200)
fat's avatar
fat committed
832
833
834
835
836
    }, 0)

    $tooltip.trigger('mouseenter')
  })

837
838
  test('should not show tooltip if leave event occurs before delay expires', function (assert) {
    var done = assert.async()
fat's avatar
fat committed
839

840
    var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip">Tooltip trigger</a>')
fat's avatar
fat committed
841
      .appendTo('#qunit-fixture')
842
      .bootstrapTooltip({ delay: 150 })
fat's avatar
fat committed
843
844

    setTimeout(function () {
845
      ok(!$('.tooltip').is('.fade.in'), '100ms: tooltip not faded in')
fat's avatar
fat committed
846
      $tooltip.trigger('mouseout')
847
    }, 100)
fat's avatar
fat committed
848
849

    setTimeout(function () {
850
      ok(!$('.tooltip').is('.fade.in'), '200ms: tooltip not faded in')
851
      done()
852
    }, 200)
fat's avatar
fat committed
853
854
855
856

    $tooltip.trigger('mouseenter')
  })

857
858
  test('should not show tooltip if leave event occurs before delay expires, even if hide delay is 0', function (assert) {
    var done = assert.async()
fat's avatar
fat committed
859

860
    var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip">Tooltip trigger</a>')
fat's avatar
fat committed
861
      .appendTo('#qunit-fixture')
862
      .bootstrapTooltip({ delay: { show: 150, hide: 0 }})
fat's avatar
fat committed
863
864

    setTimeout(function () {
865
      ok(!$('.tooltip').is('.fade.in'), '100ms: tooltip not faded in')
fat's avatar
fat committed
866
      $tooltip.trigger('mouseout')
867
    }, 100)
fat's avatar
fat committed
868
869

    setTimeout(function () {
870
      ok(!$('.tooltip').is('.fade.in'), '250ms: tooltip not faded in')
871
      done()
872
    }, 250)
fat's avatar
fat committed
873
874
875
876

    $tooltip.trigger('mouseenter')
  })

877
878
  test('should wait 200ms before hiding the tooltip', function (assert) {
    var done = assert.async()
fat's avatar
fat committed
879

880
    var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip">Tooltip trigger</a>')
fat's avatar
fat committed
881
      .appendTo('#qunit-fixture')
882
      .bootstrapTooltip({ delay: { show: 0, hide: 150 }})
fat's avatar
fat committed
883
884

    setTimeout(function () {
fat's avatar
fat committed
885
      ok($('.tooltip').is('.fade.in'), '1ms: tooltip faded in')
fat's avatar
fat committed
886
887
888
889

      $tooltip.trigger('mouseout')

      setTimeout(function () {
fat's avatar
fat committed
890
        ok($('.tooltip').is('.fade.in'), '100ms: tooltip still faded in')
891
      }, 100)
fat's avatar
fat committed
892
893

      setTimeout(function () {
fat's avatar
fat committed
894
895
        ok(!$('.tooltip').is('.in'), '200ms: tooltip removed')
        start()
896
      }, 200)
fat's avatar
fat committed
897
898
899
900
901
902

    }, 0)

    $tooltip.trigger('mouseenter')
  })

903
  test('should correctly position tooltips on SVG elements', function (assert) {
904
905
906
907
908
909
    if (!window.SVGElement) {
      // Skip IE8 since it doesn't support SVG
      expect(0)
      return
    }

910
    var done = assert.async()
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931

    var styles = '<style>'
        + '.tooltip, .tooltip *, .tooltip *:before, .tooltip *:after { box-sizing: border-box; }'
        + '.tooltip { position: absolute; }'
        + '.tooltip .tooltip-inner { width: 24px; height: 24px; font-family: Helvetica; }'
        + '</style>'
    var $styles = $(styles).appendTo('head')

    $('#qunit-fixture').append(
        '<div style="position: fixed; top: 0; left: 0;">'
      + '  <svg width="200" height="200">'
      + '    <circle cx="100" cy="100" r="10" title="m" id="theCircle" />'
      + '  </svg>'
      + '</div>')
    var $circle = $('#theCircle')

    $circle
      .on('shown.bs.tooltip', function () {
        var offset = $('.tooltip').offset()
        $styles.remove()
        ok(Math.abs(offset.left - 88) <= 1, 'tooltip has correct horizontal location')
932
933
        $circle.bootstrapTooltip('hide')
        equal($('.tooltip').length, 0, 'tooltip removed from dom')
934
        done()
935
936
937
938
939
940
      })
      .bootstrapTooltip({ container: 'body', placement: 'top', trigger: 'manual' })

    $circle.bootstrapTooltip('show')
  })

941
942
  test('should correctly determine auto placement based on container rather than parent', function (assert) {
    var done = assert.async()
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970

    var styles = '<style>'
        + '.tooltip, .tooltip *, .tooltip *:before, .tooltip *:after { box-sizing: border-box; }'
        + '.tooltip { position: absolute; display: block; font-size: 12px; line-height: 1.4; }'
        + '.tooltip .tooltip-inner { max-width: 200px; padding: 3px 8px; font-family: Helvetica; text-align: center; }'
        + '#trigger-parent {'
        + '  position: fixed;'
        + '  top: 100px;'
        + '  right: 17px;'
        + '}'
        + '</style>'
    var $styles = $(styles).appendTo('head')

    $('#qunit-fixture').append('<span id="trigger-parent"><a id="tt-trigger" title="If a_larger_text is written here, it won\'t fit using older broken version of BS">HOVER OVER ME</a></span>')
    var $trigger = $('#tt-trigger')

    $trigger
      .on('shown.bs.tooltip', 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')
        $trigger.bootstrapTooltip('hide')
      })
      .on('hidden.bs.tooltip', function () {
        $styles.remove()
        $(this).remove()
        equal($('.tooltip').length, 0, 'tooltip removed from dom')
971
        done()
972
973
974
975
976
977
978
979
980
981
      })
      .bootstrapTooltip({
        container: 'body',
        placement: 'auto left',
        trigger: 'manual'
      })

    $trigger.bootstrapTooltip('show')
  })

982
983
  test('should not reload the tooltip on subsequent mouseenter events', function () {
    var titleHtml = function () {
fat's avatar
fat committed
984
      var uid = 'fatTooltip'
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
      return '<p id="tt-content">' + uid + '</p><p>' + uid + '</p><p>' + uid + '</p>'
    }

    var $tooltip = $('<span id="tt-outer" rel="tooltip" data-trigger="hover" data-placement="top">some text</span>')
      .appendTo('#qunit-fixture')

    $tooltip.bootstrapTooltip({
      html: true,
      animation: false,
      trigger: 'hover',
      delay: { show: 0, hide: 500 },
      container: $tooltip,
      title: titleHtml
    })

    $('#tt-outer').trigger('mouseenter')
For faster browsing, not all history is shown. View entire blame