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 83 84
|
describe('core - events - search', function() {
dt.libs({
js: ['jquery', 'datatables'],
css: ['datatables']
});
let table;
let params;
describe('Check the defaults', function() {
dt.html('basic');
it('Called before the draw', function() {
let firstCell;
table = $('#example').DataTable();
table.on('search.dt', function() {
params = arguments;
firstCell = $('tbody tr:eq(0) td:eq(0)').text();
});
table.search('cox').draw(false);
expect(firstCell).toBe('Airi Satou');
expect($('tbody tr:last td:eq(0)').text()).toBe('Ashton Cox');
});
it('Called with expected parameters', function() {
expect(params.length).toBe(2);
expect(params[0] instanceof $.Event).toBe(true);
expect(params[1]).toBe(table.settings()[0]);
});
});
describe('Functional tests', function() {
let count = 0;
let length;
dt.html('basic');
it('Called on initial draw', function() {
table = $('#example')
.on('search.dt', function() {
count++;
})
.DataTable();
expect(count).toBe(1);
});
it('Called when API searches', function() {
table.search('cox');
expect(count).toBe(2);
expect($('tbody tr:eq(0) td:eq(0)').text()).toBe('Airi Satou');
});
it('Called when draw shows the filter', function() {
table.draw(false);
expect(count).toBe(3);
expect($('tbody tr:eq(0) td:eq(0)').text()).toBe('Ashton Cox');
});
it('Called when search cleared', function() {
table.search('').draw(false);
expect(count).toBe(5);
expect($('tbody tr:eq(0) td:eq(0)').text()).toBe('Airi Satou');
});
it('Called when column search', function() {
table
.column(0)
.search('cox')
.draw(false);
expect(count).toBe(7);
expect($('tbody tr:eq(0) td:eq(0)').text()).toBe('Ashton Cox');
});
it('Called when column search cleared', function() {
table
.column(0)
.search('')
.draw(false);
expect(count).toBe(9);
expect($('tbody tr:eq(0) td:eq(0)').text()).toBe('Airi Satou');
});
it('Called just once when user searches', function() {
$('div.dataTables_filter label input')
.val('cox')
.keyup();
expect(count).toBe(10);
expect($('tbody tr:eq(0) td:eq(0)').text()).toBe('Ashton Cox');
});
});
});
|