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 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
|
// TK COLIN need to consider the second arg to visible - redrawCalculations - not covered here
describe('columns - column().visible()', function() {
dt.libs({
js: ['jquery', 'datatables'],
css: ['datatables']
});
describe('Check the defaults', function() {
dt.html('basic');
it('Exists and is a function', function() {
let table = $('#example').DataTable();
expect(typeof table.columns().visible).toBe('function');
});
it('Getter returns an API instance', function() {
var table = $('#example').DataTable();
expect(table.columns().visible(true) instanceof $.fn.dataTable.Api).toBe(true);
});
it('Setter returns an API instance', function() {
var table = $('#example').DataTable();
expect(table.columns().visible(true) instanceof $.fn.dataTable.Api).toBe(true);
});
});
describe('Getter', function() {
dt.html('basic');
it("Column visibility set by 'columns.visible' at init returns expected", function() {
let table = $('#example').DataTable({
columnDefs: [{ visible: false, targets: [0, 2] }]
});
expect(dt.isColumnHBFExpected(0, 'Position', 'Accountant')).toBe(true);
expect(dt.areColumnsInvisible([0, 2])).toBe(true);
});
dt.html('basic');
it('Column hidden at init and then made visible returns true', function() {
let table = $('#example').DataTable({
columnDefs: [{ visible: false, targets: [0, 2, 3] }]
});
table.columns([0, 2]).visible(true);
expect(dt.isColumnHBFExpected(0, 'Name', 'Airi Satou')).toBe(true);
expect(dt.areColumnsInvisible([3])).toBe(true);
});
});
describe('Setter', function() {
dt.html('basic');
it('Hide a column (check header, body and footer nodes)', function() {
let table = $('#example').DataTable();
table.columns([0, 2]).visible(false);
expect(dt.isColumnHBFExpected(0, 'Position', 'Accountant')).toBe(true);
expect(dt.areColumnsInvisible([0, 2])).toBe(true);
});
dt.html('basic');
it('Unhide a column (check header, body and footer nodes)', function() {
let table = $('#example').DataTable({
columnDefs: [{ visible: false, targets: [0, 3] }]
});
table.columns([0, 1]).visible(true);
expect(dt.isColumnHBFExpected(0, 'Name', 'Airi Satou')).toBe(true);
expect(dt.areColumnsInvisible([3])).toBe(true);
});
});
describe('Getter tests with deferRender and AJAX', function() {
dt.html('basic');
it("Column visibility set by 'columns.visible' at init returns expected", function(done) {
let table = $('#example').DataTable({
ajax: '/base/test/data/data.txt',
deferRender: true,
columns: dt.getTestColumns(),
columnDefs: [{ visible: false, targets: [0, 5] }],
initComplete: function(settings, json) {
expect(dt.isColumnHBFExpected(0, 'Position', 'Accountant')).toBe(true);
expect(dt.areColumnsInvisible([0, 5])).toBe(true);
done();
}
});
});
dt.html('basic');
it('Column hidden at init and then made visible returns trues', function(done) {
let table = $('#example').DataTable({
ajax: '/base/test/data/data.txt',
deferRender: true,
columns: dt.getTestColumns(),
columnDefs: [{ visible: false, targets: [0, 3, 4] }],
initComplete: function(settings, json) {
table.columns([0, 4]).visible(true);
expect(dt.isColumnHBFExpected(0, 'Name', 'Airi Satou')).toBe(true);
expect(dt.areColumnsInvisible([3])).toBe(true);
done();
}
});
});
});
describe('Getter tests with deferRender and AJAX', function() {
dt.html('basic');
it('Hide a column (check header, body and footer nodes)', function(done) {
let table = $('#example').DataTable({
ajax: '/base/test/data/data.txt',
deferRender: true,
columns: dt.getTestColumns(),
initComplete: function(settings, json) {
table.columns([0, 3, 2]).visible(false);
expect(dt.isColumnHBFExpected(0, 'Position', 'Accountant')).toBe(true);
expect(dt.areColumnsInvisible([0, 2, 3])).toBe(true);
done();
}
});
});
dt.html('basic');
it('Unhide a column (check header, body and footer nodes)', function(done) {
let table = $('#example').DataTable({
ajax: '/base/test/data/data.txt',
deferRender: true,
columns: dt.getTestColumns(),
columnDefs: [{ visible: false, targets: [0, 1, 2, 5] }],
initComplete: function(settings, json) {
table.columns([0, 1, 2, 5]).visible(true);
expect(dt.isColumnHBFExpected(0, 'Name', 'Airi Satou')).toBe(true);
expect(dt.areColumnsInvisible([])).toBe(true);
done();
}
});
});
});
describe('Getter tests with footer removed', function() {
dt.html('no_footer');
it("Column visibility set by 'columns.visible' at init returns expected", function() {
let table = $('#example').DataTable({
columnDefs: [{ visible: false, targets: [0, 3, 5] }]
});
expect(dt.isColumnHBFExpected(0, 'Position', 'Accountant', '')).toBe(true);
expect(dt.areColumnsInvisible([0, 3, 5])).toBe(true);
});
dt.html('no_footer');
it('Column hidden at init and then made visible returns trues', function() {
let table = $('#example').DataTable({
columnDefs: [{ visible: false, targets: [2, 1, 0] }]
});
table.columns([2, 0]).visible(true);
expect(dt.isColumnHBFExpected(0, 'Name', 'Airi Satou', '')).toBe(true);
expect(dt.areColumnsInvisible([1])).toBe(true);
});
});
describe('Setter tests with footer removed', function() {
dt.html('no_footer');
it('Hide a column (check header, body and footer nodes)', function() {
let table = $('#example').DataTable();
table.columns([0, 2, 3, 4]).visible(false);
expect(dt.isColumnHBFExpected(0, 'Position', 'Accountant', '')).toBe(true);
expect(dt.areColumnsInvisible([0, 2, 3, 4])).toBe(true);
});
dt.html('no_footer');
it('Unhide a column (check header, body and footer nodes)', function() {
let table = $('#example').DataTable({
columnDefs: [{ visible: false, targets: [0] }]
});
table.columns(0).visible(true);
expect(dt.isColumnHBFExpected(0, 'Name', 'Airi Satou', '')).toBe(true);
expect(dt.areColumnsInvisible([])).toBe(true);
});
});
function getScrollingTable(hideColumn = false) {
colDefs = hideColumn ? [{ visible: false, targets: [0, 3, 5] }] : [];
return $('#example').DataTable({
scrollY: '200px',
scrollCollapse: true,
paging: false,
columnDefs: colDefs
});
}
describe('Getter tests with scrolling table ', function() {
dt.html('basic');
it("Column visibility set by 'columns.visible' at init returns expected", function() {
let table = getScrollingTable(true);
expect(dt.isColumnHBFExpected(0, 'Position', 'Accountant')).toBe(true);
expect(dt.areColumnsInvisible([0, 3, 5])).toBe(true);
});
dt.html('basic');
it('Column hidden at init and then made visible returns trues', function() {
let table = getScrollingTable(true);
table.columns([0, 5]).visible(true);
expect(dt.isColumnHBFExpected(0, 'Name', 'Airi Satou')).toBe(true);
expect(dt.areColumnsInvisible([3])).toBe(true);
});
});
describe('Setter tests with scrolling table', function() {
dt.html('basic');
it('Hide a column (check header, body and footer nodes)', function() {
let table = getScrollingTable();
table.columns([0, 3, 5]).visible(false);
expect(dt.isColumnHBFExpected(0, 'Position', 'Accountant')).toBe(true);
expect(dt.areColumnsInvisible([0, 3, 5])).toBe(true);
});
dt.html('basic');
it('Unhide a column (check header, body and footer nodes)', function() {
let table = getScrollingTable(true);
table.columns([0, 0]).visible(true);
expect(dt.isColumnHBFExpected(0, 'Name', 'Airi Satou')).toBe(true);
expect(dt.areColumnsInvisible([3, 5])).toBe(true);
});
});
describe('Getter tests with scrolling table - no footer ', function() {
dt.html('no_footer');
it("Column visibility set by 'columns.visible' at init returns expected", function() {
let table = getScrollingTable(true);
expect(dt.isColumnHBFExpected(0, 'Position', 'Accountant', '')).toBe(true);
expect(dt.areColumnsInvisible([0, 3, 5])).toBe(true);
});
dt.html('no_footer');
it('Column hidden at init and then made visible returns trues', function() {
let table = getScrollingTable(true);
table.columns([0]).visible(true);
expect(dt.isColumnHBFExpected(0, 'Name', 'Airi Satou', '')).toBe(true);
expect(dt.areColumnsInvisible([3, 5])).toBe(true);
});
});
describe('Setter tests with scrolling table - no footer ', function() {
dt.html('no_footer');
it('Hide a column (check header, body and footer nodes)', function() {
let table = getScrollingTable();
table.columns([0, 2, 3, 4, 5]).visible(false);
expect(dt.isColumnHBFExpected(0, 'Position', 'Accountant', '')).toBe(true);
expect(dt.areColumnsInvisible([0, 2, 3, 4, 5])).toBe(true);
});
dt.html('no_footer');
it('Unhide a column (check header, body and footer nodes)', function() {
let table = getScrollingTable(true);
table.columns([0]).visible(true);
expect(dt.isColumnHBFExpected(0, 'Name', 'Airi Satou', '')).toBe(true);
expect(dt.areColumnsInvisible([3, 5])).toBe(true);
});
});
});
|