| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  | $(function () { | 
					
						
							| 
									
										
										
										
											2014-03-17 15:12:55 +08:00
										 |  |  |   'use strict'; | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-24 14:04:48 +08:00
										 |  |  |   QUnit.module('tabs plugin') | 
					
						
							| 
									
										
										
										
											2012-12-08 06:06:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-24 14:04:48 +08:00
										 |  |  |   QUnit.test('should be defined on jquery object', function (assert) { | 
					
						
							| 
									
										
										
										
											2015-03-01 22:33:48 +08:00
										 |  |  |     assert.expect(1) | 
					
						
							| 
									
										
										
										
											2015-02-24 13:55:07 +08:00
										 |  |  |     assert.ok($(document.body).tab, 'tabs method is defined') | 
					
						
							| 
									
										
										
										
											2014-02-13 15:55:12 +08:00
										 |  |  |   }) | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-24 14:04:48 +08:00
										 |  |  |   QUnit.module('tabs', { | 
					
						
							| 
									
										
										
										
											2015-02-26 15:20:42 +08:00
										 |  |  |     beforeEach: function () { | 
					
						
							| 
									
										
										
										
											2014-04-22 13:03:33 +08:00
										 |  |  |       // Run all tests in noConflict mode -- it's the only way to ensure that the plugin works in noConflict mode
 | 
					
						
							|  |  |  |       $.fn.bootstrapTab = $.fn.tab.noConflict() | 
					
						
							|  |  |  |     }, | 
					
						
							| 
									
										
										
										
											2015-02-26 15:20:42 +08:00
										 |  |  |     afterEach: function () { | 
					
						
							| 
									
										
										
										
											2014-04-22 13:03:33 +08:00
										 |  |  |       $.fn.tab = $.fn.bootstrapTab | 
					
						
							|  |  |  |       delete $.fn.bootstrapTab | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-24 14:04:48 +08:00
										 |  |  |   QUnit.test('should provide no conflict', function (assert) { | 
					
						
							| 
									
										
										
										
											2015-03-01 22:33:48 +08:00
										 |  |  |     assert.expect(1) | 
					
						
							| 
									
										
										
										
											2015-02-24 13:55:07 +08:00
										 |  |  |     assert.strictEqual($.fn.tab, undefined, 'tab was set back to undefined (org value)') | 
					
						
							| 
									
										
										
										
											2014-04-22 13:03:33 +08:00
										 |  |  |   }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-24 14:04:48 +08:00
										 |  |  |   QUnit.test('should return jquery collection containing the element', function (assert) { | 
					
						
							| 
									
										
										
										
											2015-03-01 22:33:48 +08:00
										 |  |  |     assert.expect(2) | 
					
						
							| 
									
										
										
										
											2014-06-19 03:34:53 +08:00
										 |  |  |     var $el = $('<div/>') | 
					
						
							|  |  |  |     var $tab = $el.bootstrapTab() | 
					
						
							| 
									
										
										
										
											2015-02-24 13:55:07 +08:00
										 |  |  |     assert.ok($tab instanceof $, 'returns jquery collection') | 
					
						
							|  |  |  |     assert.strictEqual($tab[0], $el[0], 'collection contains element') | 
					
						
							| 
									
										
										
										
											2014-02-13 15:55:12 +08:00
										 |  |  |   }) | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-24 14:04:48 +08:00
										 |  |  |   QUnit.test('should activate element by tab id', function (assert) { | 
					
						
							| 
									
										
										
										
											2015-03-01 22:33:48 +08:00
										 |  |  |     assert.expect(2) | 
					
						
							| 
									
										
										
										
											2014-07-06 17:56:12 +08:00
										 |  |  |     var tabsHTML = '<ul class="tabs">' | 
					
						
							|  |  |  |         + '<li><a href="#home">Home</a></li>' | 
					
						
							|  |  |  |         + '<li><a href="#profile">Profile</a></li>' | 
					
						
							|  |  |  |         + '</ul>' | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-19 03:34:53 +08:00
										 |  |  |     $('<ul><li id="home"/><li id="profile"/></ul>').appendTo('#qunit-fixture') | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-22 13:03:33 +08:00
										 |  |  |     $(tabsHTML).find('li:last a').bootstrapTab('show') | 
					
						
							| 
									
										
										
										
											2015-02-24 14:41:08 +08:00
										 |  |  |     assert.strictEqual($('#qunit-fixture').find('.active').attr('id'), 'profile') | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-22 13:03:33 +08:00
										 |  |  |     $(tabsHTML).find('li:first a').bootstrapTab('show') | 
					
						
							| 
									
										
										
										
											2015-02-24 14:41:08 +08:00
										 |  |  |     assert.strictEqual($('#qunit-fixture').find('.active').attr('id'), 'home') | 
					
						
							| 
									
										
										
										
											2014-02-13 15:55:12 +08:00
										 |  |  |   }) | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-24 14:04:48 +08:00
										 |  |  |   QUnit.test('should activate element by tab id', function (assert) { | 
					
						
							| 
									
										
										
										
											2015-03-01 22:33:48 +08:00
										 |  |  |     assert.expect(2) | 
					
						
							| 
									
										
										
										
											2014-07-06 17:56:12 +08:00
										 |  |  |     var pillsHTML = '<ul class="pills">' | 
					
						
							|  |  |  |         + '<li><a href="#home">Home</a></li>' | 
					
						
							|  |  |  |         + '<li><a href="#profile">Profile</a></li>' | 
					
						
							|  |  |  |         + '</ul>' | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-19 03:34:53 +08:00
										 |  |  |     $('<ul><li id="home"/><li id="profile"/></ul>').appendTo('#qunit-fixture') | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-22 13:03:33 +08:00
										 |  |  |     $(pillsHTML).find('li:last a').bootstrapTab('show') | 
					
						
							| 
									
										
										
										
											2015-02-24 14:41:08 +08:00
										 |  |  |     assert.strictEqual($('#qunit-fixture').find('.active').attr('id'), 'profile') | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-22 13:03:33 +08:00
										 |  |  |     $(pillsHTML).find('li:first a').bootstrapTab('show') | 
					
						
							| 
									
										
										
										
											2015-02-24 14:41:08 +08:00
										 |  |  |     assert.strictEqual($('#qunit-fixture').find('.active').attr('id'), 'home') | 
					
						
							| 
									
										
										
										
											2014-02-13 15:55:12 +08:00
										 |  |  |   }) | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-24 14:04:48 +08:00
										 |  |  |   QUnit.test('should not fire shown when show is prevented', function (assert) { | 
					
						
							| 
									
										
										
										
											2015-03-01 22:33:48 +08:00
										 |  |  |     assert.expect(1) | 
					
						
							| 
									
										
										
										
											2015-01-21 11:40:50 +08:00
										 |  |  |     var done = assert.async() | 
					
						
							| 
									
										
										
										
											2014-06-19 03:34:53 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-13 15:55:12 +08:00
										 |  |  |     $('<div class="tab"/>') | 
					
						
							|  |  |  |       .on('show.bs.tab', function (e) { | 
					
						
							| 
									
										
										
										
											2014-02-18 03:56:46 +08:00
										 |  |  |         e.preventDefault() | 
					
						
							| 
									
										
										
										
											2015-02-24 13:55:07 +08:00
										 |  |  |         assert.ok(true, 'show event fired') | 
					
						
							| 
									
										
										
										
											2015-01-21 11:40:50 +08:00
										 |  |  |         done() | 
					
						
							| 
									
										
										
										
											2012-03-25 09:20:09 +08:00
										 |  |  |       }) | 
					
						
							| 
									
										
										
										
											2014-02-13 15:55:12 +08:00
										 |  |  |       .on('shown.bs.tab', function () { | 
					
						
							| 
									
										
										
										
											2015-02-24 13:55:07 +08:00
										 |  |  |         assert.ok(false, 'shown event fired') | 
					
						
							| 
									
										
										
										
											2014-02-13 15:55:12 +08:00
										 |  |  |       }) | 
					
						
							| 
									
										
										
										
											2014-04-22 13:03:33 +08:00
										 |  |  |       .bootstrapTab('show') | 
					
						
							| 
									
										
										
										
											2014-02-13 15:55:12 +08:00
										 |  |  |   }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-24 14:04:48 +08:00
										 |  |  |   QUnit.test('show and shown events should reference correct relatedTarget', function (assert) { | 
					
						
							| 
									
										
										
										
											2015-03-01 22:33:48 +08:00
										 |  |  |     assert.expect(2) | 
					
						
							| 
									
										
										
										
											2015-01-21 11:40:50 +08:00
										 |  |  |     var done = assert.async() | 
					
						
							| 
									
										
										
										
											2014-06-19 03:34:53 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-06 17:56:12 +08:00
										 |  |  |     var dropHTML = '<ul class="drop">' | 
					
						
							|  |  |  |         + '<li class="dropdown"><a data-toggle="dropdown" href="#">1</a>' | 
					
						
							|  |  |  |         + '<ul class="dropdown-menu">' | 
					
						
							|  |  |  |         + '<li><a href="#1-1" data-toggle="tab">1-1</a></li>' | 
					
						
							|  |  |  |         + '<li><a href="#1-2" data-toggle="tab">1-2</a></li>' | 
					
						
							|  |  |  |         + '</ul>' | 
					
						
							|  |  |  |         + '</li>' | 
					
						
							|  |  |  |         + '</ul>' | 
					
						
							| 
									
										
										
										
											2014-02-13 15:55:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-19 03:34:53 +08:00
										 |  |  |     $(dropHTML) | 
					
						
							|  |  |  |       .find('ul > li:first a') | 
					
						
							|  |  |  |         .bootstrapTab('show') | 
					
						
							|  |  |  |       .end() | 
					
						
							|  |  |  |       .find('ul > li:last a') | 
					
						
							|  |  |  |         .on('show.bs.tab', function (e) { | 
					
						
							| 
									
										
										
										
											2015-02-24 14:41:08 +08:00
										 |  |  |           assert.strictEqual(e.relatedTarget.hash, '#1-1', 'references correct element as relatedTarget') | 
					
						
							| 
									
										
										
										
											2014-06-19 03:34:53 +08:00
										 |  |  |         }) | 
					
						
							|  |  |  |         .on('shown.bs.tab', function (e) { | 
					
						
							| 
									
										
										
										
											2015-02-24 14:41:08 +08:00
										 |  |  |           assert.strictEqual(e.relatedTarget.hash, '#1-1', 'references correct element as relatedTarget') | 
					
						
							| 
									
										
										
										
											2015-01-21 12:16:42 +08:00
										 |  |  |           done() | 
					
						
							| 
									
										
										
										
											2014-06-19 03:34:53 +08:00
										 |  |  |         }) | 
					
						
							|  |  |  |         .bootstrapTab('show') | 
					
						
							| 
									
										
										
										
											2014-02-13 15:55:12 +08:00
										 |  |  |   }) | 
					
						
							| 
									
										
										
										
											2012-10-09 13:29:44 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-24 14:04:48 +08:00
										 |  |  |   QUnit.test('should fire hide and hidden events', function (assert) { | 
					
						
							| 
									
										
										
										
											2015-03-01 22:33:48 +08:00
										 |  |  |     assert.expect(2) | 
					
						
							| 
									
										
										
										
											2015-01-21 11:40:50 +08:00
										 |  |  |     var done = assert.async() | 
					
						
							| 
									
										
										
										
											2014-10-10 22:50:00 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     var tabsHTML = '<ul class="tabs">' | 
					
						
							|  |  |  |         + '<li><a href="#home">Home</a></li>' | 
					
						
							|  |  |  |         + '<li><a href="#profile">Profile</a></li>' | 
					
						
							|  |  |  |         + '</ul>' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     $(tabsHTML) | 
					
						
							|  |  |  |       .find('li:first a') | 
					
						
							|  |  |  |         .on('hide.bs.tab', function () { | 
					
						
							| 
									
										
										
										
											2015-02-24 13:55:07 +08:00
										 |  |  |           assert.ok(true, 'hide event fired') | 
					
						
							| 
									
										
										
										
											2014-10-10 22:50:00 +08:00
										 |  |  |         }) | 
					
						
							|  |  |  |         .bootstrapTab('show') | 
					
						
							|  |  |  |       .end() | 
					
						
							|  |  |  |       .find('li:last a') | 
					
						
							|  |  |  |         .bootstrapTab('show') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     $(tabsHTML) | 
					
						
							|  |  |  |       .find('li:first a') | 
					
						
							|  |  |  |         .on('hidden.bs.tab', function () { | 
					
						
							| 
									
										
										
										
											2015-02-24 13:55:07 +08:00
										 |  |  |           assert.ok(true, 'hidden event fired') | 
					
						
							| 
									
										
										
										
											2015-01-21 11:40:50 +08:00
										 |  |  |           done() | 
					
						
							| 
									
										
										
										
											2014-10-10 22:50:00 +08:00
										 |  |  |         }) | 
					
						
							|  |  |  |         .bootstrapTab('show') | 
					
						
							|  |  |  |       .end() | 
					
						
							|  |  |  |       .find('li:last a') | 
					
						
							|  |  |  |         .bootstrapTab('show') | 
					
						
							|  |  |  |   }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-24 14:04:48 +08:00
										 |  |  |   QUnit.test('should not fire hidden when hide is prevented', function (assert) { | 
					
						
							| 
									
										
										
										
											2015-03-01 22:33:48 +08:00
										 |  |  |     assert.expect(1) | 
					
						
							| 
									
										
										
										
											2015-01-21 11:40:50 +08:00
										 |  |  |     var done = assert.async() | 
					
						
							| 
									
										
										
										
											2014-10-10 22:50:00 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     var tabsHTML = '<ul class="tabs">' | 
					
						
							|  |  |  |         + '<li><a href="#home">Home</a></li>' | 
					
						
							|  |  |  |         + '<li><a href="#profile">Profile</a></li>' | 
					
						
							|  |  |  |         + '</ul>' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     $(tabsHTML) | 
					
						
							|  |  |  |       .find('li:first a') | 
					
						
							|  |  |  |         .on('hide.bs.tab', function (e) { | 
					
						
							|  |  |  |           e.preventDefault() | 
					
						
							| 
									
										
										
										
											2015-02-24 13:55:07 +08:00
										 |  |  |           assert.ok(true, 'hide event fired') | 
					
						
							| 
									
										
										
										
											2015-01-21 11:40:50 +08:00
										 |  |  |           done() | 
					
						
							| 
									
										
										
										
											2014-10-10 22:50:00 +08:00
										 |  |  |         }) | 
					
						
							|  |  |  |         .on('hidden.bs.tab', function () { | 
					
						
							| 
									
										
										
										
											2015-02-24 13:55:07 +08:00
										 |  |  |           assert.ok(false, 'hidden event fired') | 
					
						
							| 
									
										
										
										
											2014-10-10 22:50:00 +08:00
										 |  |  |         }) | 
					
						
							|  |  |  |         .bootstrapTab('show') | 
					
						
							|  |  |  |       .end() | 
					
						
							|  |  |  |       .find('li:last a') | 
					
						
							|  |  |  |         .bootstrapTab('show') | 
					
						
							|  |  |  |   }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-24 14:04:48 +08:00
										 |  |  |   QUnit.test('hide and hidden events contain correct relatedTarget', function (assert) { | 
					
						
							| 
									
										
										
										
											2015-03-01 22:33:48 +08:00
										 |  |  |     assert.expect(2) | 
					
						
							| 
									
										
										
										
											2015-01-21 11:40:50 +08:00
										 |  |  |     var done = assert.async() | 
					
						
							| 
									
										
										
										
											2014-10-10 22:50:00 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     var tabsHTML = '<ul class="tabs">' | 
					
						
							|  |  |  |         + '<li><a href="#home">Home</a></li>' | 
					
						
							|  |  |  |         + '<li><a href="#profile">Profile</a></li>' | 
					
						
							|  |  |  |         + '</ul>' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     $(tabsHTML) | 
					
						
							|  |  |  |       .find('li:first a') | 
					
						
							|  |  |  |         .on('hide.bs.tab', function (e) { | 
					
						
							| 
									
										
										
										
											2015-02-24 14:41:08 +08:00
										 |  |  |           assert.strictEqual(e.relatedTarget.hash, '#profile', 'references correct element as relatedTarget') | 
					
						
							| 
									
										
										
										
											2014-10-10 22:50:00 +08:00
										 |  |  |         }) | 
					
						
							|  |  |  |         .on('hidden.bs.tab', function (e) { | 
					
						
							| 
									
										
										
										
											2015-02-24 14:41:08 +08:00
										 |  |  |           assert.strictEqual(e.relatedTarget.hash, '#profile', 'references correct element as relatedTarget') | 
					
						
							| 
									
										
										
										
											2015-01-21 11:40:50 +08:00
										 |  |  |           done() | 
					
						
							| 
									
										
										
										
											2014-10-10 22:50:00 +08:00
										 |  |  |         }) | 
					
						
							|  |  |  |         .bootstrapTab('show') | 
					
						
							|  |  |  |       .end() | 
					
						
							|  |  |  |       .find('li:last a') | 
					
						
							|  |  |  |         .bootstrapTab('show') | 
					
						
							|  |  |  |   }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-24 14:04:48 +08:00
										 |  |  |   QUnit.test('selected tab should have aria-expanded', function (assert) { | 
					
						
							| 
									
										
										
										
											2015-03-01 22:33:48 +08:00
										 |  |  |     assert.expect(8) | 
					
						
							| 
									
										
										
										
											2014-09-10 00:17:56 +08:00
										 |  |  |     var tabsHTML = '<ul class="nav nav-tabs">' | 
					
						
							| 
									
										
										
										
											2015-08-19 13:03:34 +08:00
										 |  |  |         + '<li><a class="nav-item active" href="#home" toggle="tab" aria-expanded="true">Home</a></li>' | 
					
						
							|  |  |  |         + '<li><a class="nav-item" href="#profile" toggle="tab" aria-expanded="false">Profile</a></li>' | 
					
						
							| 
									
										
										
										
											2014-09-10 00:17:56 +08:00
										 |  |  |         + '</ul>' | 
					
						
							|  |  |  |     var $tabs = $(tabsHTML).appendTo('#qunit-fixture') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     $tabs.find('li:first a').bootstrapTab('show') | 
					
						
							| 
									
										
										
										
											2015-08-19 13:03:34 +08:00
										 |  |  |     assert.strictEqual($tabs.find('.active').attr('aria-expanded'), 'true', 'shown tab has aria-expanded = true') | 
					
						
							|  |  |  |     assert.strictEqual($tabs.find('a:not(.active)').attr('aria-expanded'), 'false', 'hidden tab has aria-expanded = false') | 
					
						
							| 
									
										
										
										
											2014-09-10 00:17:56 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-06 20:34:28 +08:00
										 |  |  |     $tabs.find('li:last a').trigger('click') | 
					
						
							| 
									
										
										
										
											2015-08-19 13:03:34 +08:00
										 |  |  |     assert.strictEqual($tabs.find('.active').attr('aria-expanded'), 'true', 'after click, shown tab has aria-expanded = true') | 
					
						
							|  |  |  |     assert.strictEqual($tabs.find('a:not(.active)').attr('aria-expanded'), 'false', 'after click, hidden tab has aria-expanded = false') | 
					
						
							| 
									
										
										
										
											2014-09-10 00:17:56 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     $tabs.find('li:first a').bootstrapTab('show') | 
					
						
							| 
									
										
										
										
											2015-08-19 13:03:34 +08:00
										 |  |  |     assert.strictEqual($tabs.find('.active').attr('aria-expanded'), 'true', 'shown tab has aria-expanded = true') | 
					
						
							|  |  |  |     assert.strictEqual($tabs.find('a:not(.active)').attr('aria-expanded'), 'false', 'hidden tab has aria-expanded = false') | 
					
						
							| 
									
										
										
										
											2014-09-10 00:17:56 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-06 20:34:28 +08:00
										 |  |  |     $tabs.find('li:first a').trigger('click') | 
					
						
							| 
									
										
										
										
											2015-08-19 13:03:34 +08:00
										 |  |  |     assert.strictEqual($tabs.find('.active').attr('aria-expanded'), 'true', 'after second show event, shown tab still has aria-expanded = true') | 
					
						
							|  |  |  |     assert.strictEqual($tabs.find('a:not(.active)').attr('aria-expanded'), 'false', 'after second show event, hidden tab has aria-expanded = false') | 
					
						
							| 
									
										
										
										
											2014-09-10 00:17:56 +08:00
										 |  |  |   }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-23 15:34:27 +08:00
										 |  |  | }) |