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('Paging option', function() {
dt.libs({
js: ['jquery', 'datatables'],
css: ['datatables']
});
describe('Check Default', function() {
dt.html('basic');
it('Enabled by default', function() {
expect($.fn.dataTable.defaults.bPaginate).toBe(true);
});
it('Check table is paged', function() {
table = $('#example').DataTable();
expect($('#example tbody tr').length).toBe(10);
expect(table.page.info().pages).toBe(6);
});
it('Paging control is in the DOM', function() {
table = $('#example').DataTable();
expect($('div.dataTables_paginate')[0]).toBeInDOM();
});
it('Length control is in the DOM', function() {
expect($('div.dataTables_length')[0]).toBeInDOM();
});
it('Correct place in DOM', function() {
expect(
$('#example_paginate')
.prev()
.attr('id') == 'example_info'
).toBe(true);
});
});
describe('Functional tests', function() {
dt.html('basic');
it('Can disable paging using option', function() {
$('#example').DataTable({
paging: false
});
expect($('#example tbody tr').length).toBe(57);
});
it('Paging control is not in the DOM', function() {
expect($('div.dataTables_paginate')[0]).not.toBeInDOM();
});
it('Length control has been removed', function() {
expect($('div.dataTables_length')[0]).not.toBeInDOM();
});
dt.html('basic');
it('When manually enabled it is indeed enabled', function() {
$('#example').DataTable({
paging: true
});
expect($('#example tbody tr').length).toBe(10);
});
it('Length control has been removed', function() {
expect($('div.dataTables_length')[0]).toBeInDOM();
});
dt.html('basic');
it('Default can be set to disabled', function() {
$.fn.dataTable.defaults.paging = false;
$('#example').DataTable();
expect($('#example tbody tr').length).toBe(57);
});
dt.html('basic');
it('And enabled from the options', function() {
$.fn.dataTable.defaults.paging = true;
$('#example').DataTable({
paging: true
});
expect($('#example tbody tr').length).toBe(10);
});
});
});
|