2012-12-17 20:32:57 +00:00
|
|
|
/*!
|
|
|
|
* TableSorter QUnit Testing
|
|
|
|
*/
|
|
|
|
/*jshint unused: false */
|
2014-05-08 17:05:01 +00:00
|
|
|
/*global QUnit: false, JSHINT: false, ok: false, start: false, deepEqual: false, asyncTest: false,
|
|
|
|
strictEqual: false, jQuery: false, equal: false, $: false, expect: false, module: false,
|
|
|
|
test: false, stop: false, ipv6tests: false */
|
2012-12-17 20:32:57 +00:00
|
|
|
|
2015-03-01 00:41:27 +00:00
|
|
|
// Accepts a function with a single argument -- deferred object, which should be resolved at some point in a function.
|
|
|
|
// Returns a promise, wrapping this function call.
|
|
|
|
QUnit.deferredCallback = function(func) {
|
|
|
|
return function(){
|
|
|
|
var defer = $.Deferred();
|
|
|
|
func(defer);
|
|
|
|
return defer.promise();
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
// SequentialRunner is an object to build and run a list of asynchronous calls in a sequential way.
|
|
|
|
// It wraps a deferred object; initially it's resolved, but .next and .nextTask calls add runners to be invoked.
|
|
|
|
// Underlying promise can be obtained by .promise() call.
|
|
|
|
// Each runner should accept deferred object and resolve it at some point when it's safe to invoke the next runner.
|
|
|
|
//
|
|
|
|
// Its constructor has an optional argument runnerCreator -- function which accepts task arguments
|
|
|
|
// and returns a runner (i.e. another function). If runnerCreator supplied, SequentialRunner object gets
|
|
|
|
// an additional method #nextTask(<task arguments>...) that is useful when you run lots of similar tasks.
|
|
|
|
//
|
|
|
|
// Example:
|
|
|
|
//
|
|
|
|
// QUnit.SequentialRunner(function(buttonSelector){
|
|
|
|
// return function(defer){ // each task is to wait until specified button is clicked
|
|
|
|
// $(buttonSelector).click(function(){
|
|
|
|
// defer.resolve()
|
|
|
|
// })
|
|
|
|
// };
|
|
|
|
// })
|
|
|
|
// .nextTask('#login').nextTask('#demo').nextTask('button')
|
|
|
|
// .promise()
|
|
|
|
// .then(function(){ console.log('Login, demo and any other button were clicked in that order.') });
|
|
|
|
//
|
|
|
|
QUnit.SequentialRunner = function(runnerCreator){
|
|
|
|
var result = {
|
|
|
|
defer: $.Deferred().resolve(),
|
|
|
|
promise: function(){
|
|
|
|
return this.defer.promise();
|
|
|
|
},
|
|
|
|
next: function(runner) {
|
|
|
|
this.defer = this.defer.then( QUnit.deferredCallback(runner) );
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
};
|
|
|
|
if (runnerCreator) {
|
|
|
|
result.nextTask = function(args) { // any argument list
|
|
|
|
var deferredRunner = QUnit.deferredCallback( runnerCreator.apply(this, arguments) );
|
|
|
|
this.defer = this.defer.then(deferredRunner);
|
|
|
|
return this;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Returns an runner which runs some actions and wait for an event to be triggered.
|
|
|
|
// When an event is triggered assertions block is called and defer is resolved (independent on assertion result).
|
|
|
|
// This runner is useful when you want to check some conditions which should be met after an event was triggered.
|
|
|
|
//
|
|
|
|
// Example:
|
|
|
|
// QUnit.test('tablesorter initialization', function(assert){
|
|
|
|
// return QUnit.SequentialRunner()
|
|
|
|
// .next(
|
|
|
|
// QUnit.assertOnEvent(
|
|
|
|
// $('table'),
|
|
|
|
// 'tablesorter-initialized',
|
|
|
|
// function() {
|
|
|
|
// $('table').tablesorter( {sortList: [[0,0]]} );
|
|
|
|
// },
|
|
|
|
// function() {
|
|
|
|
// QUnit.assert.deepEqual($('table')[0].config.sortList, [[0,0]], 'sortList should be present in config');
|
|
|
|
// }
|
|
|
|
// )
|
|
|
|
// ).promise();
|
|
|
|
// });
|
|
|
|
//
|
|
|
|
QUnit.assertOnEvent = function($element, eventType, actions, assertions) {
|
|
|
|
return function(defer){
|
|
|
|
$element
|
|
|
|
.off(eventType)
|
|
|
|
.on(eventType, function() {
|
|
|
|
$element.off(eventType);
|
|
|
|
assertions();
|
|
|
|
defer && defer.resolve();
|
|
|
|
});
|
|
|
|
actions();
|
|
|
|
};
|
|
|
|
};
|
2012-12-17 20:32:57 +00:00
|
|
|
|
2015-03-01 00:41:27 +00:00
|
|
|
QUnit.extend(QUnit.assert, {
|
2012-12-17 20:32:57 +00:00
|
|
|
/************************************************
|
|
|
|
test table data cache
|
|
|
|
************************************************/
|
2014-04-23 21:11:13 +00:00
|
|
|
cacheCompare : function(table, col, expected, txt, filtered){
|
2015-03-28 21:50:52 +00:00
|
|
|
var flat = [],
|
|
|
|
result = $.tablesorter.getColumnText( table, col, function( data ){
|
|
|
|
return !( filtered && data.$row.hasClass( table.config.widgetOptions.filter_filteredRow ) );
|
|
|
|
});
|
|
|
|
// flatten array
|
|
|
|
flat = flat.concat.apply( flat, result.parsed );
|
|
|
|
QUnit.assert.deepEqual( flat, expected, 'testing parser cache: ' + txt);
|
2012-12-17 20:32:57 +00:00
|
|
|
}
|
2015-03-01 00:41:27 +00:00
|
|
|
});
|
2014-03-07 18:53:21 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
Core plugin tested
|
|
|
|
========================
|
|
|
|
OPTIONS:
|
|
|
|
cssAsc, cssChildRow, cssDesc, cssHeader, cssHeaderRow, cssInfoBlock, dateFormat, emptyTo, headerList,
|
|
|
|
headers, ignoreCase, initialized, parsers, sortList, sortLocaleCompare, sortReset, stringTo, tableClass,
|
2014-03-13 23:47:40 +00:00
|
|
|
usNumberFormat, widgets (just zebra), sortAppend, sortForce, sortMultiSortKey, sortResetKey, numberSorter
|
2014-03-07 18:53:21 +00:00
|
|
|
|
|
|
|
METHODS:
|
|
|
|
addRows, applyWidgets, destroy, sorton, sortReset, update/updateRow, updateAll, updateCell
|
|
|
|
|
|
|
|
EVENTS:
|
|
|
|
initialized, sortBegin, sortEnd, sortStart, updateComplete
|
|
|
|
|
|
|
|
Not yet tested
|
|
|
|
=========================
|
|
|
|
OPTIONS:
|
|
|
|
cancelSelection, cssIcon, cssProcessing, debug, delayInit, headerTemplate, initWidgets, onRenderHeader,
|
|
|
|
onRenderTemplate, selectorHeaders, selectorRemove, selectorSort, serverSideSorting, showProcessing,
|
|
|
|
sortInitialOrder, sortRestart, strings,
|
|
|
|
textExtraction, textSorter, theme, widthFixed, widgets (also need priority testing)
|
|
|
|
|
|
|
|
METHODS:
|
|
|
|
appendCache, applyWidgetId, sort, refreshWidgets
|
|
|
|
|
|
|
|
EVENTS:
|
|
|
|
-
|
|
|
|
*/
|
|
|
|
|
|
|
|
$(function(){
|
|
|
|
|
|
|
|
var ts = $.tablesorter,
|
2014-03-31 20:53:01 +00:00
|
|
|
$table1 = $('#table1'),
|
|
|
|
$table2 = $('#table2'),
|
|
|
|
$table3 = $('#table3'),
|
|
|
|
$table4 = $('#table4'),
|
|
|
|
$table5 = $('#table5'), // empty table
|
2014-03-07 18:53:21 +00:00
|
|
|
table1 = $table1[0],
|
|
|
|
table2 = $table2[0],
|
|
|
|
table3 = $table3[0],
|
|
|
|
table4 = $table4[0],
|
2014-05-08 17:05:01 +00:00
|
|
|
table5 = $table5[0],
|
2014-03-07 18:53:21 +00:00
|
|
|
th0 = $table1.find('th')[0], // first table header cell
|
|
|
|
init = false,
|
|
|
|
sortIndx = 0,
|
|
|
|
updateIndx = 0,
|
|
|
|
updateCallback = 0,
|
2014-04-18 23:41:20 +00:00
|
|
|
events = ['sortStart', 'sortBegin', 'sortEnd', ' '],
|
2014-03-07 18:53:21 +00:00
|
|
|
returnTime = function(string){
|
|
|
|
return new Date(string).getTime();
|
|
|
|
},
|
2014-05-08 17:05:01 +00:00
|
|
|
undef, c1, c2, c3, c4, e, i, t;
|
2014-03-07 18:53:21 +00:00
|
|
|
|
|
|
|
$table1
|
|
|
|
.bind('tablesorter-initialized', function(){
|
|
|
|
init = true;
|
|
|
|
})
|
|
|
|
.tablesorter();
|
|
|
|
|
|
|
|
$table2.tablesorter({
|
|
|
|
headers: {
|
|
|
|
0: { sorter: 'text' },
|
|
|
|
1: { sorter: 'text' },
|
|
|
|
2: { sorter: false }
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$table3.tablesorter({
|
|
|
|
emptyTo: "bottom",
|
|
|
|
stringTo: "max", // non-numeric content is treated as a MAX value
|
|
|
|
headers: {
|
|
|
|
0: { empty : "top" }, // sort empty cells to the top
|
|
|
|
2: { string: "min" }, // non-numeric content is treated as a MIN value
|
|
|
|
3: { sorter: "digit", empty : "zero", string : "top" }
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$table4.tablesorter({
|
|
|
|
sortAppend : [[2,0],[3,0]],
|
|
|
|
sortForce : [[0,0],[1,0]],
|
2014-05-14 12:51:44 +00:00
|
|
|
textExtraction : {
|
|
|
|
'.te-test' : function(node){
|
|
|
|
return $(node).find('span').text();
|
|
|
|
},
|
|
|
|
2 : function(node){
|
|
|
|
return $(node).find('span').text();
|
|
|
|
}
|
|
|
|
},
|
2014-03-07 18:53:21 +00:00
|
|
|
initialized: function(table){
|
|
|
|
var e, c = table.config;
|
|
|
|
// trigger sort on 5th column
|
|
|
|
// this method is used because triggering a "sorton" would ignore sortForce/sortAppend
|
|
|
|
c.$headers.eq(4).trigger('sort');
|
|
|
|
e = $.Event('sort');
|
|
|
|
e.which = 1;
|
|
|
|
e.shiftKey = true;
|
|
|
|
c.$headers.eq(5).trigger(e);
|
2014-03-13 23:47:40 +00:00
|
|
|
},
|
|
|
|
numberSorter: function(a, b, dir){
|
|
|
|
return dir ? a-b : b-a;
|
2014-03-07 18:53:21 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-04-18 23:41:20 +00:00
|
|
|
$table5.tablesorter();
|
2014-03-07 18:53:21 +00:00
|
|
|
|
2014-05-03 04:47:52 +00:00
|
|
|
module('core');
|
2014-03-07 18:53:21 +00:00
|
|
|
/************************************************
|
|
|
|
Initialization
|
|
|
|
************************************************/
|
2015-03-01 00:41:27 +00:00
|
|
|
QUnit.test( "tablesorter loaded & initialized", function(assert) {
|
|
|
|
assert.expect(3);
|
|
|
|
assert.equal( typeof ts, 'object', "tablesorter loaded");
|
|
|
|
assert.equal( table1.hasInitialized, true, "tablesorter initialized flag");
|
|
|
|
assert.equal( init, true, "tablesorter initialized event");
|
2014-03-07 18:53:21 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
c1 = table1.config;
|
|
|
|
c2 = table2.config;
|
|
|
|
c3 = table3.config;
|
|
|
|
c4 = table4.config;
|
|
|
|
|
2014-03-31 20:53:01 +00:00
|
|
|
/************************************************
|
|
|
|
Test column numbering
|
|
|
|
************************************************/
|
|
|
|
// later: include a table header with colspan & rowspan
|
2015-03-01 00:41:27 +00:00
|
|
|
QUnit.test( "column numbering", function(assert) {
|
|
|
|
assert.expect(2);
|
2014-03-31 20:53:01 +00:00
|
|
|
var internalColumn = true,
|
|
|
|
dataColumn = true;
|
|
|
|
$table4.find('thead th').each(function(i){
|
|
|
|
internalColumn = internalColumn && this.column === i;
|
|
|
|
dataColumn = dataColumn && $(this).attr('data-column') == i;
|
|
|
|
});
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.equal( internalColumn, true, "Correct internal column numbering" );
|
|
|
|
assert.equal( dataColumn, true, "Correct data-column attribute numbering" );
|
2014-03-31 20:53:01 +00:00
|
|
|
});
|
|
|
|
|
2014-03-07 18:53:21 +00:00
|
|
|
/************************************************
|
|
|
|
check isDigit function
|
|
|
|
************************************************/
|
|
|
|
var d = ts.isDigit;
|
2015-03-01 00:41:27 +00:00
|
|
|
QUnit.test( "isDigit", function(assert) {
|
2015-04-10 15:16:14 +00:00
|
|
|
assert.expect(18);
|
2014-03-07 18:53:21 +00:00
|
|
|
ok( d('-1'), "allow negative (-1)");
|
|
|
|
ok( d('+1'), "allow plus (+1)");
|
|
|
|
ok( d('(1)'), "allow parenthesis (1)");
|
|
|
|
ok( d('123'), "string has numbers ('123')");
|
|
|
|
ok( d(123), "has numbers (123)");
|
|
|
|
ok( d('1.2'), "remove decimal (1.2)");
|
|
|
|
ok( d('1,234'),"remove commas (1,234)");
|
|
|
|
ok( d("11'"), "remove apostrophe's (11')"); // 11 feet
|
|
|
|
ok( d('3\'4"'),"remove quotes (3'4\")"); // 3 foot 4 inches
|
|
|
|
ok( d(' 12 '), "remove spaces ( 12 )");
|
|
|
|
ok( !d('x'), "non-digit alphabet");
|
|
|
|
ok( !d('1x'), "digit + alphabet");
|
|
|
|
ok( !d('x1'), "alphabet + digit");
|
|
|
|
ok( !d('@'), "non-digit symbols");
|
|
|
|
ok( !d('1-'), "negative after (1-) not allowed?");
|
|
|
|
ok( !d('1+'), "plus after (1+) not allowed?");
|
|
|
|
ok( !d('$2'), "no money; the currency parser will catch these");
|
2015-04-10 15:16:14 +00:00
|
|
|
ok( !d(''), "empty string ('')");
|
2014-03-07 18:53:21 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
/************************************************
|
|
|
|
check formatFloat function
|
|
|
|
************************************************/
|
|
|
|
var ff = function(str) {
|
|
|
|
return ts.formatFloat(str, table1);
|
|
|
|
};
|
2015-03-01 00:41:27 +00:00
|
|
|
QUnit.test( "formatFloat", function(assert) {
|
|
|
|
assert.expect(18);
|
|
|
|
assert.strictEqual( ff(''), '', 'returns empty string' );
|
|
|
|
assert.strictEqual( ff(5), 5, 'returns numerical values');
|
2014-03-07 18:53:21 +00:00
|
|
|
|
|
|
|
c1.usNumberFormat = false;
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.strictEqual( ts.formatFloat('1,234,567.89'), 1234567.89, 'use format float without including table - defaults to US number format');
|
2014-03-07 18:53:21 +00:00
|
|
|
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.strictEqual( ff('1 234,56'), 1234.56, 'parse non-U.S. (French) number format');
|
|
|
|
assert.strictEqual( ff('1.234,56'), 1234.56, 'parse non-U.S. (German) number format');
|
|
|
|
assert.strictEqual( ff('-32,32'), -32.32, 'negative non-U.S. signed numbers');
|
|
|
|
assert.strictEqual( ff('-1.234,56'), -1234.56, 'negative non-U.S. signed numbers');
|
|
|
|
assert.strictEqual( ff('(32,32)'), -32.32, 'parenthesis wrapped non-U.S. negative number');
|
|
|
|
assert.strictEqual( ff(' (32,32) '), -32.32, 'space + parenthesis wrapped non-U.S. negative number');
|
2014-03-07 18:53:21 +00:00
|
|
|
|
|
|
|
c1.usNumberFormat = true;
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.strictEqual( ff('1,234.56'), 1234.56, 'parse U.S. number format');
|
|
|
|
assert.strictEqual( ff('-32.32'), -32.32, 'negative U.S. signed numbers');
|
|
|
|
assert.strictEqual( ff('(32.32)'), -32.32, 'parenthesis wrapped U.S. negative number');
|
|
|
|
assert.strictEqual( ff(' (32.32)'), -32.32, 'space + parenthesis wrapped U.S. negative number');
|
2014-03-07 18:53:21 +00:00
|
|
|
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.strictEqual( ff('fred'), 'fred', 'return string if not a number');
|
|
|
|
assert.strictEqual( ff(' fred '), 'fred', 'return trimmed string if not a number');
|
|
|
|
assert.strictEqual( ff('fred 12'), 'fred 12', 'return string if number not at beginning');
|
|
|
|
assert.strictEqual( ff('12fred'), 12, 'parse number + string into number only');
|
|
|
|
assert.strictEqual( ff('(fred)'), '(fred)', 'leave parenthesis intact on strings');
|
2014-03-07 18:53:21 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
/************************************************
|
|
|
|
get data function - jQuery data > meta > headers option > header class name
|
|
|
|
************************************************/
|
|
|
|
var gd = function(n){
|
|
|
|
return ts.getData( c2.$headers[n], c2.headers[n], 'sorter' );
|
|
|
|
};
|
|
|
|
|
2015-03-01 00:41:27 +00:00
|
|
|
QUnit.test( "getData", function(assert) {
|
|
|
|
assert.expect(4);
|
2014-03-07 18:53:21 +00:00
|
|
|
var txt = [ 'jQuery data', 'meta data', 'headers option', 'header class name' ];
|
|
|
|
for (i = 0; i < 4; i++) {
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.equal( gd(i), 'false', txt[i]); // all columns have sorter false set
|
2014-03-07 18:53:21 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
/************************************************
|
|
|
|
character equivalent replacement
|
|
|
|
************************************************/
|
2015-03-01 00:41:27 +00:00
|
|
|
QUnit.test( "replace accents", function(assert) {
|
|
|
|
assert.expect(6);
|
|
|
|
assert.strictEqual( ts.replaceAccents('\u00e1\u00e0\u00e2\u00e3\u00e4\u0105\u00e5\u00c1\u00c0\u00c2\u00c3\u00c4\u0104\u00c5'), 'aaaaaaaAAAAAAA', "replaced a's");
|
|
|
|
assert.strictEqual( ts.replaceAccents('\u00e9\u00e8\u00ea\u00eb\u011b\u0119\u00c9\u00c8\u00ca\u00cb\u011a\u0118'), 'eeeeeeEEEEEE', "replaced e's");
|
|
|
|
assert.strictEqual( ts.replaceAccents('\u00ed\u00ec\u0130\u00ee\u00ef\u0131\u00cd\u00cc\u0130\u00ce\u00cf'), 'iiiiiiIIiII', "replaced i's");
|
|
|
|
assert.strictEqual( ts.replaceAccents('\u00f3\u00f2\u00f4\u00f5\u00f6\u00d3\u00d2\u00d4\u00d5\u00d6'), 'oooooOOOOO', "replaced o's");
|
|
|
|
assert.strictEqual( ts.replaceAccents('\u00fa\u00f9\u00fb\u00fc\u016f\u00da\u00d9\u00db\u00dc\u016e'), 'uuuuuUUUUU', "replaced u's");
|
|
|
|
assert.strictEqual( ts.replaceAccents('\u00e7\u0107\u010d\u00c7\u0106\u010c\u00df\u1e9e'), 'cccCCCssSS', "replaced c & s sharp");
|
2014-03-07 18:53:21 +00:00
|
|
|
});
|
|
|
|
|
2014-05-08 17:05:01 +00:00
|
|
|
/************************************************
|
|
|
|
detect parsers
|
|
|
|
************************************************/
|
2015-03-01 00:41:27 +00:00
|
|
|
QUnit.test( "detect parsers", function(assert) {
|
|
|
|
var done = assert.async();
|
|
|
|
assert.expect(2);
|
2014-05-08 17:05:01 +00:00
|
|
|
$('#testblock2').html('<table class="tablesorter"><thead>' +
|
|
|
|
'<tr><th class="col-off" colspan="2">Info</th><th class="col-off" colspan="4">Details</th></tr>' +
|
|
|
|
'<tr>' +
|
|
|
|
'<th class="col-first">First Name</th>' +
|
|
|
|
'<th class="col-last">Last Name</th>' +
|
|
|
|
'<th class="col-age" id="age">Age</th>' +
|
|
|
|
'<th class="col-total">Total</th>' +
|
|
|
|
'<th class="col-discount">Discount</th>' +
|
|
|
|
'<th class="col-date">Date</th>' +
|
|
|
|
'</tr></thead>' +
|
|
|
|
'<tbody>' +
|
|
|
|
'<tr><td>Peter</td><td>Parker</td><td>28</td><td>$9.99</td><td>20%</td><td>Jul 6, 2006 8:14 AM</td></tr>' +
|
|
|
|
'<tr><td>John</td><td>Hood</td><td>33</td><td>$19.99</td><td>25%</td><td>Dec 10, 2002 5:14 AM</td></tr>' +
|
|
|
|
'<tr><td>Clark</td><td>Kent</td><td>18</td><td>$15.89</td><td>44%</td><td>Jan 12, 2003 11:14 AM</td></tr>' +
|
|
|
|
'<tr><td>Bruce</td><td>Almighty</td><td>45</td><td>$153.19</td><td>44%</td><td>Jan 18, 2001 9:12 AM</td></tr>' +
|
|
|
|
'<tr><td>Bruce</td><td>Evans</td><td>22</td><td>$13.19</td><td>11%</td><td>Jan 18, 2007 9:12 AM</td></tr>' +
|
|
|
|
'</tbody></table>')
|
|
|
|
.find('table')
|
|
|
|
.tablesorter({
|
|
|
|
headers : {
|
|
|
|
0 : { sorter: false },
|
|
|
|
1 : { sorter: false },
|
|
|
|
3 : { sorter: 'digit' } // 3 sets the 4th column, not the 3rd header cell now
|
|
|
|
},
|
|
|
|
initialized: function(table){
|
|
|
|
var i,
|
|
|
|
result = true,
|
|
|
|
parsers = [ 'text', 'digit', 'digit', 'currency', 'percent', 'usLongDate' ],
|
|
|
|
c = table.config;
|
|
|
|
for (i = 0; i < c.columns; i++){
|
|
|
|
result = result && c.parsers[i].id === parsers[i];
|
|
|
|
}
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.equal( result, true, 'detect parsers by header index' );
|
2014-05-08 17:05:01 +00:00
|
|
|
// table inception!
|
|
|
|
$(table)
|
|
|
|
.trigger('destroy')
|
|
|
|
.tablesorter({
|
|
|
|
headers : {
|
|
|
|
'.col-first' : { sorter: 'url' },
|
|
|
|
'.col-off' : { sorter: false },
|
|
|
|
'.col-total' : { sorter : 'percent' },
|
|
|
|
'#age, .col-last' : { sorter: 'currency' },
|
|
|
|
'.col-date' : { sorter : 'time' },
|
|
|
|
'.col-discount' : { sorter: 'digit' }
|
|
|
|
},
|
|
|
|
initialized: function(table){
|
|
|
|
var i,
|
|
|
|
result = true,
|
|
|
|
parsers = [ 'url', 'currency', 'currency', 'percent', 'digit', 'time' ],
|
|
|
|
c = table.config;
|
|
|
|
for (i = 0; i < c.columns; i++){
|
|
|
|
result = result && c.parsers[i].id === parsers[i];
|
|
|
|
}
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.equal( result, true, 'detect parsers by class/id' );
|
|
|
|
done();
|
2014-05-08 17:05:01 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2014-03-07 18:53:21 +00:00
|
|
|
/************************************************
|
|
|
|
check all default parsers
|
|
|
|
************************************************/
|
|
|
|
var p = ts.parsers,
|
|
|
|
// test by parser
|
|
|
|
parserTests = 85,
|
|
|
|
// skipping metadata parser
|
|
|
|
sample1 = {
|
|
|
|
'text' : { 'test': 'test', 'TesT': 'test', '\u00e1 test': '\u00e1 test' },
|
|
|
|
'currency' : { '\u00a31': 1, '($2.23)': -2.23, '5\u20ac': 5, '(11\u00a4)': -11, '500\u00a5': 500, '25\u00a2': 25, '$1,000.50': 1000.5 },
|
|
|
|
'ipAddress' : { '255.255.255.255': 255255255255, '32.32.32.32': 32032032032, '1.1.1.1': 1001001001 },
|
|
|
|
'url' : { 'http://google.com': 'google.com', 'ftp://fred.com': 'fred.com', 'https://github.com': 'github.com' },
|
|
|
|
'isoDate' : { '2012/12/12': returnTime('2012/12/12'), '2012-12/12': returnTime('2012/12/12'), '2013-1-1': returnTime('2013/1/1'), '2013/1/1 12:34:56 AM': returnTime('2013/1/1 12:34:56 AM') },
|
|
|
|
'percent' : { '100%': 100, '22%': 22, '%2': 2, '2 %': 2, '(4%)': -4, '1,234.56 %': 1234.56 },
|
|
|
|
'usLongDate': { 'Feb 23, 1999': returnTime('Feb 23, 1999'), 'Feb 23, 1999 12:34': returnTime('Feb 23, 1999 12:34'), 'Feb 23, 1999 12:34 AM': returnTime('Feb 23, 1999 12:34 AM'), 'Feb 23, 1999 12:34:56 PM': returnTime('Feb 23, 1999 12:34:56 PM'), '01 Jan 2013': returnTime('01 Jan 2013') },
|
|
|
|
'shortDate' : { '1/2/2001': returnTime('1/2/2001'), '1 2 2001': returnTime('1/2/2001'), '1.2.2001': returnTime('1/2/2001'), '1-2-2001': returnTime('1/2/2001'), '1/2/2001 12:34 PM' : returnTime('1/2/2001 12:34 PM'), '1.2.2001 13:34' : returnTime('1/2/2001 13:34') },
|
|
|
|
'time' : { '12:34 AM': returnTime('2000/01/01 12:34 AM'), '1:00 pm': returnTime('2000/01/01 1:00 pm') },
|
|
|
|
'digit' : { '12': 12, '$23': 23, '&44^': 44, '#(33)': -33, '1,000': 1000, '12.34': 12.34 }
|
|
|
|
},
|
|
|
|
// switch ignoreCase, sortLocalCompare & shortDate "ddmmyyyy"
|
|
|
|
sample2 = {
|
|
|
|
'text' : { 'TesT': 'TesT', '\u00e1 test': 'a test' },
|
|
|
|
'currency' : { '\u20ac 123 456,78': 123456.78, '\u20ac 123.456,78': 123456.78 },
|
|
|
|
'shortDate' : { '2/1/2001': returnTime('1/2/2001'), '2-1-2001': returnTime('1/2/2001'), '2 1,2001': returnTime('1/2/2001') }
|
|
|
|
},
|
|
|
|
// shortdate to "yyyymmdd"
|
|
|
|
sample3 = {
|
|
|
|
'shortDate' : { '2001/1/2': returnTime('1/2/2001'), '2001-1/2': returnTime('1/2/2001'), '2001,1.2': returnTime('1/2/2001') }
|
|
|
|
},
|
2015-03-01 00:41:27 +00:00
|
|
|
report = function(assert, s) {
|
2014-03-07 18:53:21 +00:00
|
|
|
for (i = 0; i < p.length; i++) {
|
|
|
|
t = p[i].id;
|
|
|
|
if (s.hasOwnProperty(t)) {
|
2014-05-08 17:05:01 +00:00
|
|
|
/*jshint loopfunc:true */
|
2014-03-07 18:53:21 +00:00
|
|
|
$.each(s[t], function(k,v){
|
|
|
|
// check "is" and "format" functions
|
|
|
|
if (p[i].is(k)) {
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.equal( p[i].format(k, table1, th0, 0), v, t + ' parser: "' + k + '" parsed to ' + v );
|
2014-03-07 18:53:21 +00:00
|
|
|
} else {
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.equal( p[i].format(k, table1, th0, 0), v, t + ' parser **NOT DETECTED**: "' + k + '", but returns ' + v );
|
2014-03-07 18:53:21 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
// test for undefined & null - probably overkill
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.strictEqual( p[i].format(undef, table1, th0, 0), undef, t + ' parser: will return undefined values properly' );
|
|
|
|
assert.strictEqual( p[i].format(null, table1, th0, 0), null, t + ' parser: will return null values properly' );
|
2014-03-07 18:53:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-03-01 00:41:27 +00:00
|
|
|
QUnit.test( "testing parsers", function(assert) {
|
|
|
|
assert.expect(parserTests);
|
|
|
|
report(assert, sample1);
|
2014-03-07 18:53:21 +00:00
|
|
|
|
|
|
|
c1.sortLocaleCompare = true;
|
|
|
|
c1.ignoreCase = false;
|
|
|
|
c1.usNumberFormat = false;
|
|
|
|
th0.dateFormat = c1.dateFormat = "ddmmyyyy";
|
2015-03-01 00:41:27 +00:00
|
|
|
report(assert, sample2);
|
2014-03-07 18:53:21 +00:00
|
|
|
|
|
|
|
c1.usNumberFormat = true;
|
|
|
|
th0.dateFormat = c1.dateFormat = "yyyymmdd";
|
2015-03-01 00:41:27 +00:00
|
|
|
report(assert, sample3);
|
2014-03-07 18:53:21 +00:00
|
|
|
|
|
|
|
// undocumented sortValue
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.equal( ts.getParserById('metadata').format(null, table1, th0, 0), 'zzz', 'metadata parser found sortValue');
|
2014-03-07 18:53:21 +00:00
|
|
|
c1.parserMetadataName = 'poe';
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.equal( ts.getParserById('metadata').format(null, table1, th0, 0), 'nevermore', 'metadata parser found poe');
|
2014-03-07 18:53:21 +00:00
|
|
|
});
|
|
|
|
|
2015-03-01 00:41:27 +00:00
|
|
|
QUnit.test( "textExtraction Method", function(assert) {
|
|
|
|
assert.expect(4);
|
2014-04-18 23:41:20 +00:00
|
|
|
|
|
|
|
$table1.trigger('sorton', [[[ 0,0 ]]]);
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.cacheCompare( table1, 0, [ 'test1', 'test2', 'test3',
|
2015-02-14 21:00:04 +00:00
|
|
|
'testa', 'testb', 'testc' ], 'from data-attribute' );
|
2014-04-18 23:41:20 +00:00
|
|
|
|
|
|
|
$table3.trigger('sorton', [[[ 0,1 ]]]);
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.cacheCompare( table3, 0, [ '', 'a255', 'a102', 'a87', 'a55', 'a43', 'a33', 'a10', 'a02', 'a1' ], 'ignore data-attribute' );
|
2014-04-18 23:41:20 +00:00
|
|
|
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.cacheCompare( table4, 1, [ 'f11', 'f11', 'f12', 'f12', 'f12', 'f12', 'f12', 'f13', 'f13', 'f13' ], 'extract using class name' );
|
2014-05-14 12:51:44 +00:00
|
|
|
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.cacheCompare( table4, 2, [ 'a21', 'a21', 'a23', 'a23', 'a23', 'a22', 'a22', 'a23', 'a24', 'a24' ], 'extract using column index' );
|
2014-05-14 12:51:44 +00:00
|
|
|
|
2014-04-18 23:41:20 +00:00
|
|
|
});
|
|
|
|
|
2014-03-07 18:53:21 +00:00
|
|
|
/************************************************
|
|
|
|
test parser cache
|
|
|
|
************************************************/
|
2015-03-01 00:41:27 +00:00
|
|
|
QUnit.test( "parser cache; sorton methods; empty & string", function(assert) {
|
|
|
|
assert.expect(18);
|
2014-03-07 18:53:21 +00:00
|
|
|
$table1.trigger('sortReset');
|
2014-03-12 21:51:51 +00:00
|
|
|
|
2014-03-07 18:53:21 +00:00
|
|
|
// lower case because table was parsed before c1.ignoreCase was changed
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.cacheCompare( table1, 'all', [ 'test2', 'x2', 'test1', 'x3', 'test3', 'x1',
|
2015-02-14 21:00:04 +00:00
|
|
|
'testb', 'x5', 'testc', 'x4', 'testa', 'x6' ], 'unsorted' );
|
2014-03-07 18:53:21 +00:00
|
|
|
|
|
|
|
$table1.trigger('sorton', [[[ 0,0 ]]]);
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.cacheCompare( table1, 'all', [ 'test1', 'x3', 'test2', 'x2', 'test3', 'x1',
|
2015-02-14 21:00:04 +00:00
|
|
|
'testa', 'x6', 'testb', 'x5', 'testc', 'x4' ], 'ascending sort' );
|
2014-03-07 18:53:21 +00:00
|
|
|
|
|
|
|
$table1.trigger('sorton', [[[ 0,1 ]]]);
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.cacheCompare( table1, 'all', [ 'test3', 'x1', 'test2', 'x2', 'test1', 'x3',
|
2015-02-14 21:00:04 +00:00
|
|
|
'testc', 'x4', 'testb', 'x5', 'testa', 'x6' ], 'descending sort' );
|
2014-03-07 18:53:21 +00:00
|
|
|
|
|
|
|
// empty cell position
|
|
|
|
$table3.trigger('sorton', [[[ 0,0 ]]]);
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.cacheCompare( table3, 0, [ '', 'a1', 'a02', 'a10', 'a33', 'a43', 'a55', 'a87', 'a102', 'a255' ], 'asc sort; empty to top' );
|
2014-03-07 18:53:21 +00:00
|
|
|
|
|
|
|
$table3.trigger('sorton', [[[ 0,1 ]]]);
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.cacheCompare( table3, 0, [ '', 'a255', 'a102', 'a87', 'a55', 'a43', 'a33', 'a10', 'a02', 'a1' ], 'desc sort; empty to top' );
|
2014-03-07 18:53:21 +00:00
|
|
|
|
|
|
|
// string position within number column
|
|
|
|
$table3.trigger('sorton', [[[ 1,0 ]]]);
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.cacheCompare( table3, 1, [ -35, -5, -1, 1, 2, 4, 33, 44, 'nr', '' ], 'asc sort; empty to bottom; string to max' );
|
2014-03-07 18:53:21 +00:00
|
|
|
|
|
|
|
$table3.trigger('sorton', [[[ 1,1 ]]]);
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.cacheCompare( table3, 1, [ 'nr', 44, 33, 4, 2, 1, -1, -5, -35, '' ], 'desc sort; empty to bottom; string to max' );
|
2014-03-07 18:53:21 +00:00
|
|
|
|
|
|
|
$table3.trigger('sorton', [[[ 2,0 ]]]);
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.cacheCompare( table3, 2, [ 'nr', 'nr', 1, 2, 3, 4, 5, 6, 7, '' ], 'asc sort; empty to bottom; string to min' );
|
2014-03-07 18:53:21 +00:00
|
|
|
|
|
|
|
$table3.trigger('sorton', [[[ 2,1 ]]]);
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.cacheCompare( table3, 2, [ 7, 6, 5, 4, 3, 2, 1, 'nr', 'nr', '' ], 'desc sort; empty to bottom; string to min' );
|
2014-03-07 18:53:21 +00:00
|
|
|
|
|
|
|
$table3.trigger('sorton', [[[ 3,0 ]]]);
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.cacheCompare( table3, 3, [ 'n/a #2', 'n/a #1', -8.4, -2.2, -0.1, '', 5.2, 11.4, 23.6, 97.4 ], 'asc sort; empty to zero; string to top' );
|
2014-03-07 18:53:21 +00:00
|
|
|
|
|
|
|
$table3.trigger('sorton', [[[ 3,1 ]]]);
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.cacheCompare( table3, 3, [ 'n/a #2', 'n/a #1', 97.4, 23.6, 11.4, 5.2, '', -0.1, -2.2, -8.4 ], 'desc sort; empty to zero; string to top' );
|
2014-03-07 18:53:21 +00:00
|
|
|
|
|
|
|
$table3.find('th:eq(3)').data('string', 'bottom');
|
|
|
|
$table3.trigger('update');
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.cacheCompare( table3, 3, [ 97.4, 23.6, 11.4, 5.2, '', -0.1, -2.2, -8.4, 'n/a #1', 'n/a #2' ], 'desc sort; empty to zero; string to bottom' );
|
2014-03-07 18:53:21 +00:00
|
|
|
|
|
|
|
$table3.trigger('sorton', [[[ 3,0 ]]]);
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.cacheCompare( table3, 3, [ -8.4, -2.2, -0.1, '', 5.2, 11.4, 23.6, 97.4, 'n/a #1', 'n/a #2' ], 'asc sort; empty to zero; string to bottom' );
|
2014-03-07 18:53:21 +00:00
|
|
|
|
|
|
|
$table3.find('th:eq(3)').data('string', 'none');
|
|
|
|
c3.headers[3].empty = "bottom";
|
|
|
|
c3.sortList = [[ 3, 1 ]]; // added to test sortList
|
|
|
|
$table3.trigger('update');
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.cacheCompare( table3, 3, [ 97.4, 23.6, 11.4, 5.2, 'n/a #1', 'n/a #2', -0.1, -2.2, -8.4, '' ], 'desc sort; empty to zero; string to none/zero' );
|
2014-03-07 18:53:21 +00:00
|
|
|
|
|
|
|
$table3.trigger('sorton', [[[ 3,0 ]]]);
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.cacheCompare( table3, 3, [ -8.4, -2.2, -0.1, 'n/a #1', 'n/a #2', 5.2, 11.4, 23.6, 97.4, '' ], 'asc sort; empty to zero; string to none/zero' );
|
2014-03-07 18:53:21 +00:00
|
|
|
|
|
|
|
t = [ 'x', 'X', 'y', 'Y', 'z', 'Z', 'a', 'A', 'b', 'B', 'c', 'C' ];
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.deepEqual( t.sort($.tablesorter.sortText), [ 'A', 'B', 'C', 'X', 'Y', 'Z', 'a', 'b', 'c', 'x', 'y', 'z' ], 'test sortText function directly' );
|
2014-03-07 18:53:21 +00:00
|
|
|
|
|
|
|
t = [ 'a02', 'a10', 'a43', 'a255', 'a102', 'a33', '', 'a1', 'a55', 'a87' ];
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.deepEqual( t.sort($.tablesorter.sortNatural), [ '', 'a1', 'a02', 'a10', 'a33', 'a43', 'a55', 'a87', 'a102', 'a255' ], 'test sortNatural function directly' );
|
2014-03-07 18:53:21 +00:00
|
|
|
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.cacheCompare( table4, 6, [ '', '', '', '', '', '', '', '', '', '' ], 'parser-false does not extract text' );
|
2014-05-28 12:29:43 +00:00
|
|
|
|
2014-03-07 18:53:21 +00:00
|
|
|
});
|
|
|
|
|
2015-03-01 00:41:27 +00:00
|
|
|
QUnit.test( "sorton methods", function(assert) {
|
|
|
|
assert.expect(6);
|
2014-05-13 15:45:32 +00:00
|
|
|
|
|
|
|
$table3.trigger('sorton', [[[ 0,'d' ]]]);
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.equal( c3.sortList + '', '0,1', 'sorton desc [0,"d"]' );
|
2014-05-13 15:45:32 +00:00
|
|
|
|
|
|
|
$table3.trigger('sorton', [[[ 0,'a' ]]]);
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.equal( c3.sortList + '', '0,0', 'sorton asc [0,"a"]' );
|
2014-05-13 15:45:32 +00:00
|
|
|
|
|
|
|
$table3.trigger('sorton', [[[ 0,'n' ]]]);
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.equal( c3.sortList + '', '0,1', 'sorton next [0,"n"]' );
|
2014-05-13 15:45:32 +00:00
|
|
|
$table3.trigger('sorton', [[[ 0,'n' ]]]);
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.equal( c3.sortList + '', '0,0', 'sorton next [0,"n"]' );
|
2014-05-13 15:45:32 +00:00
|
|
|
|
|
|
|
$table3.trigger('sorton', [[ [ 0,'n'], [1,'o'], [2,'s'] ]]);
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.equal( c3.sortList + '', '0,1,1,0,2,1', 'sorton next/opposite/same [0,"n"],[1,"o"],[2,"s"]' );
|
2014-05-13 15:45:32 +00:00
|
|
|
|
|
|
|
$table3.trigger('sorton', [[ [ 0,'n'], [1,'o'], [2,'s'] ]]);
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.equal( c3.sortList + '', '0,0,1,1,2,0', 'sorton next/opposite/same [0,"n"],[1,"o"],[2,"s"]' );
|
2014-05-13 15:45:32 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2015-03-01 00:41:27 +00:00
|
|
|
QUnit.test( "sort Events", function(assert) {
|
|
|
|
assert.expect(1);
|
2014-04-18 23:41:20 +00:00
|
|
|
|
|
|
|
$table1.add($table5).bind( events.join('.testing '), function(e){
|
|
|
|
if (e.type === events[sortIndx%3]) {
|
|
|
|
sortIndx++;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$table1.trigger('sorton', [[[ 0,0 ]]]);
|
|
|
|
$table1.trigger('sorton', [[[ 1,0 ]]]);
|
|
|
|
|
|
|
|
// ensure all sort events fire on an empty table
|
|
|
|
$table5.trigger('sorton', [ [[0,0]] ]);
|
|
|
|
|
|
|
|
$table1.add($table5).unbind( events.join('.testing ') );
|
|
|
|
|
2014-03-07 18:53:21 +00:00
|
|
|
// table1 sorted twice in the above test; sortIndx = 9 then empty table5 x1 (total = 3 events x 3)
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.equal( sortIndx, 9, 'sortStart, sortBegin & sortEnd fired in order x2; including empty table' );
|
2014-03-07 18:53:21 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
/************************************************
|
|
|
|
test update methods
|
|
|
|
************************************************/
|
2015-03-01 00:41:27 +00:00
|
|
|
QUnit.test( "parser cache; update methods & callbacks", function(assert) {
|
|
|
|
assert.expect(10);
|
2014-03-12 21:51:51 +00:00
|
|
|
var oldColMax;
|
2014-03-07 18:53:21 +00:00
|
|
|
c1.ignoreCase = true;
|
|
|
|
// updateAll
|
|
|
|
$table1
|
2014-04-18 23:41:20 +00:00
|
|
|
.trigger('sorton', [ [[0,1]] ])
|
|
|
|
.bind('updateComplete.testing', function(){ updateIndx++; })
|
2014-03-07 18:53:21 +00:00
|
|
|
.find('th:eq(1)').removeAttr('class').html('num').end()
|
|
|
|
.find('td:nth-child(2)').html(function(i,h){
|
|
|
|
return h.substring(1);
|
|
|
|
});
|
2014-04-18 23:41:20 +00:00
|
|
|
$table1
|
|
|
|
.trigger('updateAll', [false, function(){
|
2014-03-07 18:53:21 +00:00
|
|
|
updateCallback++;
|
|
|
|
var nw = $table1.find('th:eq(1)')[0],
|
|
|
|
hc = c1.headerContent[1] === 'num',
|
|
|
|
hd = c1.$headers[1] === nw,
|
|
|
|
hl = c1.headerList[1] === nw,
|
|
|
|
p1 = c1.parsers[1].id === 'digit';
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.equal(hc && hd && hl && p1, true, 'testing header cache: updateAll - thead');
|
|
|
|
assert.cacheCompare( table1, 'all', [ 'test3', 1, 'test2', 2, 'test1', 3,
|
2015-02-14 21:00:04 +00:00
|
|
|
'testc', 4, 'testb', 5, 'testa', 6 ], 'updateAll - tbody' );
|
2014-03-07 18:53:21 +00:00
|
|
|
}]);
|
|
|
|
|
|
|
|
// addRows
|
|
|
|
t = $('<tr class="temp"><td>testd</td><td>7</td></tr>');
|
2014-03-12 21:51:51 +00:00
|
|
|
$table1.find('tbody:last').prepend(t);
|
2015-02-14 21:00:04 +00:00
|
|
|
oldColMax = c1.cache[1].colMax[1];
|
2014-03-07 18:53:21 +00:00
|
|
|
$table1.trigger('addRows', [t, true, function(){
|
|
|
|
updateCallback++;
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.equal( oldColMax === 6 && c1.cache[1].colMax[1] === 7, true, 'addRows includes updating colMax value');
|
|
|
|
assert.cacheCompare( table1, 'all', [ 'test3', 1, 'test2', 2, 'test1', 3,
|
2015-02-14 21:00:04 +00:00
|
|
|
'testd', 7, 'testc', 4, 'testb', 5, 'testa', 6 ], 'addRows method' );
|
2014-03-07 18:53:21 +00:00
|
|
|
}]);
|
|
|
|
|
|
|
|
// updateCell
|
2014-03-12 21:51:51 +00:00
|
|
|
t = $table1.find('td:contains("7")');
|
|
|
|
t.html('-8');
|
2015-02-14 21:00:04 +00:00
|
|
|
oldColMax = c1.cache[1].colMax[1];
|
2014-03-07 18:53:21 +00:00
|
|
|
$table1.trigger('updateCell', [t[0], true, function(){
|
|
|
|
updateCallback++;
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.equal( oldColMax === 7 && c1.cache[1].colMax[1] === 8, true, 'updateCell includes updating colMax value');
|
|
|
|
assert.cacheCompare( table1, 'all', [ 'test3', 1, 'test2', 2, 'test1', 3,
|
2015-02-14 21:00:04 +00:00
|
|
|
'testd', -8, 'testc', 4, 'testb', 5, 'testa', 6 ], 'updateCell method' );
|
2014-03-07 18:53:21 +00:00
|
|
|
}]);
|
|
|
|
|
|
|
|
// update
|
|
|
|
$table1.find('tr.temp').remove();
|
2015-02-14 21:00:04 +00:00
|
|
|
oldColMax = c1.cache[1].colMax[1];
|
2014-03-07 18:53:21 +00:00
|
|
|
$table1.trigger('update', [true, function(){
|
|
|
|
updateCallback++;
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.equal( oldColMax === 8 && c1.cache[1].colMax[1] === 6, true, 'update includes updating colMax value');
|
|
|
|
assert.cacheCompare( table1, 'all', [ 'test3', 1, 'test2', 2, 'test1', 3,
|
2015-02-14 21:00:04 +00:00
|
|
|
'testc', 4, 'testb', 5, 'testa', 6 ], 'update method' );
|
2014-03-07 18:53:21 +00:00
|
|
|
}]);
|
|
|
|
|
2014-04-18 23:41:20 +00:00
|
|
|
$table5
|
|
|
|
.bind('updateComplete.testing', function(){ updateIndx++; })
|
|
|
|
.trigger('update', [true, function(){
|
|
|
|
updateCallback++;
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.cacheCompare( table5, 'all', [], 'update method on empty table' );
|
2014-04-18 23:41:20 +00:00
|
|
|
}]);
|
2014-03-07 18:53:21 +00:00
|
|
|
|
2014-04-18 23:41:20 +00:00
|
|
|
$table1.add($table5).unbind('updateComplete.testing');
|
2014-03-07 18:53:21 +00:00
|
|
|
|
|
|
|
// table1 updated 4x in the above test
|
|
|
|
// table5 updated 1x
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.equal( updateIndx, updateCallback, 'updatedComplete and update callback functions working properly' );
|
2014-04-18 23:41:20 +00:00
|
|
|
|
2014-03-07 18:53:21 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
/************************************************
|
|
|
|
test sortForce, sortAppend, sortMultiSortKey and sortResetKey options
|
|
|
|
************************************************/
|
2015-03-01 00:41:27 +00:00
|
|
|
QUnit.test( "sortForce, sortAppend, sortMultiSortKey & sortResetKey; and numberSorter option", function(assert){
|
|
|
|
assert.expect(3);
|
|
|
|
|
|
|
|
assert.cacheCompare( table4, 3, [ 2, 1, 7, 6, 5, 3, 4, 8, 9, 10 ], 'force x2 + sorted x2 + append x2, ascending' );
|
|
|
|
|
|
|
|
return QUnit.SequentialRunner(
|
|
|
|
function(actions, assertions){
|
|
|
|
return QUnit.assertOnEvent($table4, 'sortEnd', actions, assertions);
|
|
|
|
}
|
|
|
|
).nextTask(
|
|
|
|
function(){
|
|
|
|
c4.sortMultiSortKey = 'altKey';
|
|
|
|
c4.$headers.eq(5).trigger( $.Event('sort', { which: 1, altKey: true }) );
|
|
|
|
},
|
|
|
|
function(){
|
|
|
|
assert.cacheCompare( table4, 3, [ 2, 1, 6, 7, 5, 4, 3, 8, 10, 9 ], 'force x2 + sorted x2 + append x2, descending' );
|
|
|
|
}
|
|
|
|
).nextTask(
|
|
|
|
function() {
|
2014-03-07 18:53:21 +00:00
|
|
|
c4.sortResetKey = 'shiftKey';
|
2015-03-01 00:41:27 +00:00
|
|
|
c4.$headers.eq(0).trigger( $.Event('sort', {which: 1, shiftKey: true}) );
|
|
|
|
},
|
|
|
|
function() {
|
|
|
|
assert.cacheCompare( table4, 3, [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ], 'sortResetKey' );
|
2014-03-07 18:53:21 +00:00
|
|
|
}
|
2015-03-01 00:41:27 +00:00
|
|
|
).promise();
|
2014-03-07 18:53:21 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
/************************************************
|
|
|
|
check header css
|
|
|
|
************************************************/
|
2015-03-01 00:41:27 +00:00
|
|
|
QUnit.test( "testing header css & sortReset method", function(assert) {
|
|
|
|
assert.expect(7);
|
2014-03-07 18:53:21 +00:00
|
|
|
t = $(th0);
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.equal( $table1.hasClass(ts.css.table), true, 'table class applied');
|
|
|
|
assert.equal( t.hasClass(ts.css.header), true, 'Header class present' );
|
|
|
|
assert.equal( t.parent().hasClass(ts.css.headerRow), true, 'Header row class present' );
|
|
|
|
assert.equal( $table1.find('tbody:eq(1)').hasClass(c1.cssInfoBlock), true, 'Tbody info block class present' );
|
2014-03-07 18:53:21 +00:00
|
|
|
$table1.trigger('sorton', [[[ 0,1 ]]] );
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.equal( t.hasClass(ts.css.sortDesc), true, 'Descending class present' );
|
2014-03-07 18:53:21 +00:00
|
|
|
$table1.trigger('sorton', [[[ 0,0 ]]] );
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.equal( t.hasClass(ts.css.sortAsc), true, 'Ascending class present' );
|
2014-03-07 18:53:21 +00:00
|
|
|
$table1.trigger('sortReset');
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.equal( t.hasClass(ts.css.sortAsc) || t.hasClass(ts.css.sortDesc), false, 'Testing sortReset' );
|
2014-03-07 18:53:21 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
/************************************************
|
|
|
|
test apply widgets function using zebra widget
|
|
|
|
************************************************/
|
|
|
|
var zebra = function(){
|
|
|
|
t = true;
|
2014-03-31 20:40:44 +00:00
|
|
|
var classes = ['odd','even'];
|
|
|
|
$table2.find('tbody tr').each(function(i){
|
|
|
|
t = t ? $(this).hasClass( classes[i%2] ) : false;
|
2014-03-07 18:53:21 +00:00
|
|
|
});
|
|
|
|
return t;
|
|
|
|
};
|
|
|
|
|
2015-03-01 00:41:27 +00:00
|
|
|
QUnit.test( "apply zebra widget", function(assert) {
|
|
|
|
assert.expect(3);
|
|
|
|
assert.equal( zebra(), false, 'zebra not applied' );
|
2014-03-07 18:53:21 +00:00
|
|
|
c2.widgets = [ 'zebra' ];
|
|
|
|
$table2.trigger('applyWidgets');
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.equal( zebra(), true, 'zebra is applied' );
|
2014-03-31 20:40:44 +00:00
|
|
|
$table2
|
|
|
|
.append('<tr><td>s</td><td>t</td><td>u</td><td>v</td></tr>')
|
|
|
|
.trigger('update');
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.equal( zebra(), true, 'zebra is applied after update' );
|
2014-03-07 18:53:21 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
/************************************************
|
|
|
|
check destroy method
|
|
|
|
************************************************/
|
2015-03-01 00:41:27 +00:00
|
|
|
QUnit.test("testing destroy method", function(assert) {
|
2014-03-07 18:53:21 +00:00
|
|
|
$table2.trigger('sorton', [[[ 0,1 ]]] );
|
|
|
|
$table2.trigger('destroy');
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.expect(7);
|
2014-03-07 18:53:21 +00:00
|
|
|
t = $table2.find('th:first');
|
|
|
|
e = jQuery._data(table2, 'events'); // get a list of all bound events
|
2015-03-01 00:41:27 +00:00
|
|
|
assert.equal( $.isEmptyObject(e), true, 'no events applied' );
|
|
|
|
assert.equal( $table2.data().hasOwnProperty('tablesorter'), false, 'Data removed' );
|
|
|
|
assert.equal( $table2.attr('class'), 'tester', 'All table classes removed' );
|
|
|
|
assert.equal( $table2.find('tr:first').attr('class'), '', 'Header row class removed' );
|
|
|
|
assert.equal( t.attr('class').match('tablesorter'), null, 'Header classes removed' );
|
|
|
|
assert.equal( t.children().length, 0, 'Inner wrapper removed' );
|
|
|
|
assert.equal( typeof (t.data().column) , 'undefined', 'data-column removed');
|
2014-03-07 18:53:21 +00:00
|
|
|
|
|
|
|
$table2.tablesorter();
|
|
|
|
});
|
|
|
|
|
|
|
|
/************************************************
|
|
|
|
ipv6 parser testing
|
|
|
|
************************************************/
|
|
|
|
ipv6tests();
|
|
|
|
|
|
|
|
});
|