2011-03-26 19:00:39 +00:00
|
|
|
|
(function( $ ) {
|
|
|
|
|
|
2011-03-27 02:14:17 +00:00
|
|
|
|
module("tabs (deprecated): core");
|
|
|
|
|
|
|
|
|
|
test( "#4581 - title attribute for remote tabs does not support foreign languages", function() {
|
|
|
|
|
expect( 1 );
|
|
|
|
|
|
|
|
|
|
$( "#tabs2" ).tabs({
|
|
|
|
|
selected: 3,
|
|
|
|
|
beforeload: function( event, ui ) {
|
|
|
|
|
event.preventDefault();
|
|
|
|
|
equal( ui.panel.id, "∫ßáö_Սե", "proper title" );
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
2011-03-26 20:29:57 +00:00
|
|
|
|
module("tabs (deprecated): options");
|
2011-03-26 19:00:39 +00:00
|
|
|
|
|
|
|
|
|
test('ajaxOptions', function() {
|
|
|
|
|
ok(false, "missing test - untested code is broken code.");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test('cache', function() {
|
|
|
|
|
ok(false, "missing test - untested code is broken code.");
|
|
|
|
|
});
|
|
|
|
|
|
2011-03-27 19:12:53 +00:00
|
|
|
|
test('idPrefix', function() {
|
|
|
|
|
ok(false, "missing test - untested code is broken code.");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test('tabTemplate', function() {
|
|
|
|
|
ok(false, "missing test - untested code is broken code.");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test('panelTemplate', function() {
|
|
|
|
|
ok(false, "missing test - untested code is broken code.");
|
|
|
|
|
});
|
|
|
|
|
|
2011-03-29 02:46:31 +00:00
|
|
|
|
test('cookie', function() {
|
|
|
|
|
expect(6);
|
|
|
|
|
|
|
|
|
|
el = $('#tabs1');
|
|
|
|
|
var cookieName = 'tabs_test', cookieObj = { name: cookieName };
|
|
|
|
|
$.cookie(cookieName, null); // blank state
|
|
|
|
|
var cookie = function() {
|
|
|
|
|
return parseInt($.cookie(cookieName), 10);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
el.tabs({ cookie: cookieObj });
|
|
|
|
|
equals(cookie(), 0, 'initial cookie value');
|
|
|
|
|
|
|
|
|
|
el.tabs('destroy');
|
|
|
|
|
el.tabs({ active: 1, cookie: cookieObj });
|
|
|
|
|
equals(cookie(), 1, 'initial cookie value, from active property');
|
|
|
|
|
|
|
|
|
|
el.tabs('option', 'active', 2);
|
|
|
|
|
equals(cookie(), 2, 'cookie value updated after activating');
|
|
|
|
|
|
|
|
|
|
el.tabs('destroy');
|
|
|
|
|
$.cookie(cookieName, 1);
|
|
|
|
|
el.tabs({ cookie: cookieObj });
|
|
|
|
|
equals(cookie(), 1, 'initial cookie value, from existing cookie');
|
|
|
|
|
|
|
|
|
|
el.tabs('destroy');
|
|
|
|
|
el.tabs({ cookie: cookieObj, collapsible: true });
|
|
|
|
|
el.tabs('option', 'active', false);
|
|
|
|
|
equals(cookie(), -1, 'cookie value for all tabs unselected');
|
|
|
|
|
|
|
|
|
|
el.tabs('destroy');
|
|
|
|
|
ok($.cookie(cookieName) === null, 'erase cookie after destroy');
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
2011-03-26 19:48:53 +00:00
|
|
|
|
test('spinner', function() {
|
|
|
|
|
expect(4);
|
|
|
|
|
stop();
|
|
|
|
|
|
|
|
|
|
el = $('#tabs2');
|
|
|
|
|
|
|
|
|
|
el.tabs({
|
|
|
|
|
selected: 2,
|
|
|
|
|
load: function() {
|
|
|
|
|
// spinner: default spinner
|
|
|
|
|
setTimeout(function() {
|
|
|
|
|
equals($('li:eq(2) > a > span', el).length, 1, "should restore tab markup after spinner is removed");
|
|
|
|
|
equals($('li:eq(2) > a > span', el).html(), '3', "should restore tab label after spinner is removed");
|
|
|
|
|
el.tabs('destroy');
|
|
|
|
|
el.tabs({
|
|
|
|
|
selected: 2,
|
|
|
|
|
spinner: '<img src="spinner.gif" alt="">',
|
|
|
|
|
load: function() {
|
|
|
|
|
// spinner: image
|
|
|
|
|
equals($('li:eq(2) > a > span', el).length, 1, "should restore tab markup after spinner is removed");
|
|
|
|
|
equals($('li:eq(2) > a > span', el).html(), '3', "should restore tab label after spinner is removed");
|
|
|
|
|
start();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}, 1);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
2011-03-27 20:37:43 +00:00
|
|
|
|
test('selected', function() {
|
|
|
|
|
expect(11);
|
|
|
|
|
|
|
|
|
|
el = $('#tabs1').tabs();
|
|
|
|
|
equals(el.tabs('option', 'selected'), 0, 'should be 0 by default');
|
|
|
|
|
|
|
|
|
|
el.tabs('destroy');
|
|
|
|
|
//set a hash in the url
|
|
|
|
|
location.hash = '#fragment-2';
|
|
|
|
|
//selection of tab with divs ordered differently than list
|
|
|
|
|
el = $('#tabs1').tabs();
|
|
|
|
|
equals(el.tabs('option', 'selected'), 1, 'second tab should be selected');
|
|
|
|
|
|
|
|
|
|
el.tabs('destroy');
|
|
|
|
|
//set a hash in the url
|
|
|
|
|
location.hash = '#tabs7-2';
|
|
|
|
|
//selection of tab with divs ordered differently than list
|
|
|
|
|
el = $('#tabs7').tabs();
|
|
|
|
|
equals(el.tabs('option', 'selected'), 1, 'second tab should be selected');
|
|
|
|
|
|
|
|
|
|
el.tabs('destroy');
|
|
|
|
|
el = $('#tabs1').tabs({ selected: -1 });
|
|
|
|
|
equals(el.tabs('option', 'selected'), -1, 'should be -1 for all tabs unselected');
|
|
|
|
|
equals( $('li.ui-tabs-selected', el).length, 0, 'no tab should be selected' );
|
2011-03-29 11:44:01 +00:00
|
|
|
|
equals( $('div:hidden', '#tabs1').length, 3, 'all panels should be hidden' );
|
2011-03-27 20:37:43 +00:00
|
|
|
|
|
|
|
|
|
el.tabs('destroy');
|
|
|
|
|
el.tabs({ selected: null });
|
|
|
|
|
equals(el.tabs('option', 'selected'), -1, 'should be -1 for all tabs unselected with value null (deprecated)');
|
|
|
|
|
|
|
|
|
|
el.tabs('destroy');
|
|
|
|
|
el.tabs({ selected: 1 });
|
|
|
|
|
equals(el.tabs('option', 'selected'), 1, 'should be specified tab');
|
|
|
|
|
|
|
|
|
|
el.tabs('destroy');
|
|
|
|
|
el.tabs({ selected: 99 });
|
|
|
|
|
equals(el.tabs('option', 'selected'), 0, 'selected should default to zero if given value is out of index');
|
|
|
|
|
|
|
|
|
|
el.tabs('destroy');
|
|
|
|
|
el.tabs({ collapsible: true });
|
|
|
|
|
el.tabs('option', 'selected', 0);
|
|
|
|
|
equals(el.tabs('option', 'selected'), 0, 'should not collapse tab if value is same as selected');
|
|
|
|
|
|
|
|
|
|
el.tabs('destroy');
|
|
|
|
|
el = $('#tabs1').tabs();
|
|
|
|
|
el.tabs('select', 1);
|
|
|
|
|
equals(el.tabs('option', 'selected'), 1, 'should select tab');
|
|
|
|
|
});
|
|
|
|
|
|
2011-03-26 20:29:57 +00:00
|
|
|
|
module("tabs (deprecated): events");
|
2011-03-26 20:12:05 +00:00
|
|
|
|
|
|
|
|
|
test('enable', function() {
|
|
|
|
|
expect(4);
|
|
|
|
|
|
|
|
|
|
var uiObj;
|
|
|
|
|
el = $('#tabs1').tabs({
|
|
|
|
|
disabled: [ 0, 1 ],
|
|
|
|
|
enable: function (event, ui) {
|
|
|
|
|
uiObj = ui;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
el.tabs('enable', 1);
|
|
|
|
|
ok(uiObj !== undefined, 'trigger callback');
|
|
|
|
|
equals(uiObj.tab, $('a', el)[1], 'contain tab as DOM anchor element');
|
|
|
|
|
equals(uiObj.panel, $('div', el)[1], 'contain panel as DOM div element');
|
|
|
|
|
equals(uiObj.index, 1, 'contain index');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test('disable', function() {
|
|
|
|
|
expect(4);
|
|
|
|
|
|
|
|
|
|
var uiObj;
|
|
|
|
|
el = $('#tabs1').tabs({
|
|
|
|
|
disable: function (event, ui) {
|
|
|
|
|
uiObj = ui;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
el.tabs('disable', 1);
|
|
|
|
|
ok(uiObj !== undefined, 'trigger callback');
|
|
|
|
|
equals(uiObj.tab, $('a', el)[1], 'contain tab as DOM anchor element');
|
|
|
|
|
equals(uiObj.panel, $('div', el)[1], 'contain panel as DOM div element');
|
|
|
|
|
equals(uiObj.index, 1, 'contain index');
|
|
|
|
|
});
|
|
|
|
|
|
2011-03-26 20:29:57 +00:00
|
|
|
|
test('add', function() {
|
|
|
|
|
|
|
|
|
|
// TODO move to methods, not at all event related...
|
|
|
|
|
|
|
|
|
|
var el = $('<div id="tabs"><ul></ul></div>').tabs();
|
|
|
|
|
equals(el.tabs('option', 'selected'), -1, 'Initially empty, no selected tab');
|
|
|
|
|
|
|
|
|
|
el.tabs('add', '#test1', 'Test 1');
|
|
|
|
|
equals(el.tabs('option', 'selected'), 0, 'First tab added should be auto selected');
|
|
|
|
|
|
|
|
|
|
el.tabs('add', '#test2', 'Test 2');
|
|
|
|
|
equals(el.tabs('option', 'selected'), 0, 'Second tab added should not be auto selected');
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test('remove', function() {
|
|
|
|
|
ok(false, "missing test - untested code is broken code.");
|
|
|
|
|
});
|
|
|
|
|
|
2011-03-27 20:55:05 +00:00
|
|
|
|
test('show', function() {
|
|
|
|
|
expect(5);
|
|
|
|
|
|
|
|
|
|
var uiObj, eventObj;
|
|
|
|
|
el = $('#tabs1').tabs({
|
|
|
|
|
show: function(event, ui) {
|
|
|
|
|
uiObj = ui;
|
|
|
|
|
eventObj = event;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
ok(uiObj !== undefined, 'trigger callback after initialization');
|
|
|
|
|
equals(uiObj.tab, $('a', el)[0], 'contain tab as DOM anchor element');
|
|
|
|
|
equals(uiObj.panel, $('div', el)[0], 'contain panel as DOM div element');
|
|
|
|
|
equals(uiObj.index, 0, 'contain index');
|
|
|
|
|
|
|
|
|
|
el.find( "li:eq(1) a" ).simulate( "click" );
|
|
|
|
|
equals( eventObj.originalEvent.type, "click", "show triggered by click" );
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
2011-03-27 21:02:58 +00:00
|
|
|
|
test('select', function() {
|
|
|
|
|
expect(7);
|
|
|
|
|
|
|
|
|
|
var eventObj;
|
|
|
|
|
el = $('#tabs1').tabs({
|
|
|
|
|
select: function(event, ui) {
|
|
|
|
|
ok(true, 'select triggered after initialization');
|
|
|
|
|
equals(this, el[0], "context of callback");
|
|
|
|
|
equals(event.type, 'tabsselect', 'event type in callback');
|
|
|
|
|
equals(ui.tab, el.find('a')[1], 'contain tab as DOM anchor element');
|
|
|
|
|
equals(ui.panel, el.find('div')[1], 'contain panel as DOM div element');
|
|
|
|
|
equals(ui.index, 1, 'contain index');
|
|
|
|
|
evenObj = event;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
el.tabs('select', 1);
|
|
|
|
|
|
|
|
|
|
el.find( "li:eq(1) a" ).simulate( "click" );
|
|
|
|
|
equals( evenObj.originalEvent.type, "click", "select triggered by click" );
|
|
|
|
|
});
|
|
|
|
|
|
2011-03-26 20:29:57 +00:00
|
|
|
|
module("tabs (deprecated): methods");
|
|
|
|
|
|
|
|
|
|
test('add', function() {
|
|
|
|
|
expect(4);
|
|
|
|
|
|
|
|
|
|
el = $('#tabs1').tabs();
|
|
|
|
|
el.tabs('add', '#new', 'New');
|
|
|
|
|
|
|
|
|
|
var added = $('li:last', el).simulate('mouseover');
|
|
|
|
|
ok(added.is('.ui-state-hover'), 'should add mouseover handler to added tab');
|
|
|
|
|
added.simulate('mouseout');
|
|
|
|
|
var other = $('li:first', el).simulate('mouseover');
|
|
|
|
|
ok(other.is('.ui-state-hover'), 'should not remove mouseover handler from existing tab');
|
|
|
|
|
other.simulate('mouseout');
|
|
|
|
|
|
|
|
|
|
equals($('a', added).attr('href'), '#new', 'should not expand href to full url of current page');
|
|
|
|
|
|
|
|
|
|
ok(false, "missing test - untested code is broken code.");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test('remove', function() {
|
|
|
|
|
expect(4);
|
|
|
|
|
|
|
|
|
|
el = $('#tabs1').tabs();
|
|
|
|
|
|
|
|
|
|
el.tabs('remove', 0);
|
|
|
|
|
equals(el.tabs('length'), 2, 'remove tab');
|
|
|
|
|
equals($('li a[href$="fragment-1"]', el).length, 0, 'remove associated list item');
|
|
|
|
|
equals($('#fragment-1').length, 0, 'remove associated panel');
|
|
|
|
|
|
|
|
|
|
// TODO delete tab -> focus tab to right
|
|
|
|
|
// TODO delete last tab -> focus tab to left
|
|
|
|
|
|
|
|
|
|
el.tabs('select', 1);
|
|
|
|
|
el.tabs('remove', 1);
|
|
|
|
|
equals(el.tabs('option', 'selected'), 0, 'update selected property');
|
|
|
|
|
});
|
|
|
|
|
|
2011-03-29 02:28:59 +00:00
|
|
|
|
test('select', function() {
|
|
|
|
|
expect(6);
|
|
|
|
|
|
|
|
|
|
el = $('#tabs1').tabs();
|
|
|
|
|
|
|
|
|
|
el.tabs('select', 1);
|
|
|
|
|
equals(el.tabs('option', 'active'), 1, 'should select tab');
|
|
|
|
|
|
|
|
|
|
el.tabs('destroy');
|
|
|
|
|
el.tabs({ collapsible: true });
|
|
|
|
|
el.tabs('select', 0);
|
|
|
|
|
equals(el.tabs('option', 'active'), -1, 'should collapse tab passing in the already active tab');
|
|
|
|
|
|
|
|
|
|
el.tabs('destroy');
|
|
|
|
|
el.tabs({ collapsible: true });
|
|
|
|
|
el.tabs('select', -1);
|
|
|
|
|
equals(el.tabs('option', 'active'), -1, 'should collapse tab passing in -1');
|
|
|
|
|
|
|
|
|
|
el.tabs('destroy');
|
|
|
|
|
el.tabs();
|
|
|
|
|
el.tabs('select', 0);
|
|
|
|
|
equals(el.tabs('option', 'active'), 0, 'should not collapse tab if collapsible is not set to true');
|
|
|
|
|
el.tabs('select', -1);
|
|
|
|
|
equals(el.tabs('option', 'active'), 0, 'should not collapse tab if collapsible is not set to true');
|
|
|
|
|
|
|
|
|
|
el.tabs('select', '#fragment-2');
|
|
|
|
|
equals(el.tabs('option', 'active'), 1, 'should select tab by id');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
2011-03-26 20:29:57 +00:00
|
|
|
|
test('#5069 - ui.tabs.add creates two tab panels when using a full URL', function() {
|
|
|
|
|
// http://dev.jqueryui.com/ticket/5069
|
|
|
|
|
expect(2);
|
|
|
|
|
|
|
|
|
|
el = $('#tabs2').tabs();
|
|
|
|
|
equals(el.children('div').length, el.find('> ul > li').length, 'After creation, number of panels should be equal to number of tabs');
|
|
|
|
|
el.tabs('add', '/ajax_html_echo', 'Test');
|
|
|
|
|
equals(el.children('div').length, el.find('> ul > li').length, 'After add, number of panels should be equal to number of tabs');
|
2011-03-26 20:49:14 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test('length', function() {
|
|
|
|
|
expect(1);
|
2011-03-26 20:29:57 +00:00
|
|
|
|
|
2011-03-26 20:49:14 +00:00
|
|
|
|
el = $('#tabs1').tabs();
|
|
|
|
|
equals(el.tabs('length'), $('ul a', el).length, ' should return length');
|
2011-03-26 20:29:57 +00:00
|
|
|
|
});
|
|
|
|
|
|
2011-03-27 02:14:17 +00:00
|
|
|
|
test('url', function() {
|
|
|
|
|
el = $('#tabs2').tabs();
|
|
|
|
|
var tab = el.find('a:eq(3)'),
|
|
|
|
|
url = tab.attr('href');
|
|
|
|
|
|
|
|
|
|
el.tabs('url', 3, "data/test2.html");
|
|
|
|
|
equals(tab.attr('href'), 'data/test2.html', 'Url was updated');
|
|
|
|
|
tab.attr('href', url );
|
|
|
|
|
});
|
|
|
|
|
|
2011-03-26 19:00:39 +00:00
|
|
|
|
}( jQuery ) );
|