1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
describe('rows - row().cache()', function() {
dt.libs({
js: ['jquery', 'datatables'],
css: ['datatables']
});
let table;
describe('Check the defaults', function() {
dt.html('basic');
it('Exists and is a function', function() {
table = $('#example').DataTable();
expect(typeof table.row().cache).toBe('function');
});
it('Returns an API instance', function() {
expect(table.row().cache('search') instanceof $.fn.dataTable.Api).toBe(true);
});
it('Defaults to "order"', function() {
expect(table.row(2).cache()[0]).toBe('ashton cox');
});
});
describe('Check the behaviour (no orthogonal data)', function() {
dt.html('basic');
it('Get initial cached order data', function() {
table = $('#example').DataTable();
let test = table.row(2).cache('order');
expect(test.length).toBe(1);
expect(test[0]).toBe('ashton cox');
});
it('Get initial cached search data', function() {
let test = table.row(2).cache('search');
expect(test.length).toBe(6);
expect(test[0]).toBe('Ashton Cox');
});
it('Get cached order data when second column used in order', function() {
var clickEvent = $.Event('click');
clickEvent.shiftKey = true;
$('#example thead th:eq(1)').trigger(clickEvent);
let test = table.row(2).cache('order');
expect(test.length).toBe(2);
expect(test[0]).toBe('ashton cox');
expect(test[1]).toBe('junior technical author');
});
it('Get cached search data', function() {
let test = table.row(2).cache('search');
expect(test.length).toBe(6);
expect(test[0]).toBe('Ashton Cox');
});
});
describe('Check the behaviour (orthogonal data)', function() {
dt.html('basic');
it('Get table data', function() {
table = $('#example').DataTable({
columnDefs: [
{
targets: 0,
render: function(data, type, row, meta) {
if (type === 'filter') return 'Filter ' + data;
if (type === 'sort') return 'Sort ' + data;
return data;
}
}
]
});
let test = table.row(2).data();
expect(test[0]).toBe('Ashton Cox');
});
it('Get cached order data', function() {
let test = table.row(2).cache('order');
expect(test.length).toBe(1);
expect(test[0]).toBe('sort ashton cox');
});
it('Get cached search data', function() {
let test = table.row(2).cache('search');
expect(test.length).toBe(6);
expect(test[0]).toBe('Filter Ashton Cox');
});
});
});
|