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 85
|
// todo tests
// - Check it exists and is a function
// - Check it returns an API instance
// - Check it triggers a save
// - Check that when reloaded the table will reflect this saved state
describe('core - state.save()', function() {
dt.libs({
js: ['jquery', 'datatables'],
css: ['datatables']
});
describe('Check the defaults', function() {
dt.html('basic');
it('Exists and is a function', function() {
expect(typeof $('#example').DataTable().state.save).toBe('function');
});
it('Returns an object', function() {
let table = $('#example').DataTable();
expect(table.state.save() instanceof $.fn.dataTable.Api).toBe(true);
});
});
describe('Functional tests', function() {
// Clear down save state before proceeding (otherwise old stuff may be lurking that will affect us)
dt.html('basic');
it('Clear state save', function() {
let table = $('#example').DataTable();
table.state.clear();
});
dt.html('basic');
it('State save does initiate a stateSaveCallback', function() {
let inTest = false;
let pageLength = 0;
let table = $('#example').DataTable({
stateSave: true,
stateSaveCallback: function(settings, data) {
if (inTest) {
// stops the update from an automatic stave save
pageLength = data.length;
}
}
});
table.page.len(15).draw();
expect(pageLength).toBe(0);
inTest = true;
table.state.save();
expect(pageLength).toBe(15);
});
dt.html('basic');
it('Save state for reloading', function() {
let table = $('#example').DataTable({
stateSave: true
});
// note page() doesn't initiate a save - only the draw() does
table.page(1);
table.state.save();
expect(table.page()).toBe(1);
});
dt.html('basic');
it('Save state loads', function() {
let table = $('#example').DataTable({
stateSave: true
});
expect(table.page()).toBe(1);
});
dt.html('basic');
it('Ensure no errors if stateSave not enabled', function() {
let table = $('#example').DataTable({
stateSave: false
});
table.state.save();
expect(table.page.info().start).toBe(0);
});
});
});
|