remove datatable unit tests
[contractdashboard.git] / media / _zero_config.js
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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
// DATA_TEMPLATE: dom_data
oTest.fnStart( "Sanity checks for DataTables with DOM data" );
 
oTest.fnTest( 
        "jQuery.dataTable function",
        null,
        function () { return typeof jQuery().dataTable == "function"; }
);
 
oTest.fnTest(
        "jQuery.dataTableSettings storage array",
        null,
        function () { return typeof jQuery().dataTableSettings == "object"; }
);
 
oTest.fnTest(
        "jQuery.dataTableExt plugin object",
        null,
        function () { return typeof jQuery().dataTableExt == "object"; }
);
 
$(document).ready( function () {
        $('#example').dataTable();
        
        /* Basic checks */
        oTest.fnTest( 
                "Length changing div exists",
                null,
                function () { return document.getElementById('example_length') != null; }
        );
        
        oTest.fnTest( 
                "Filtering div exists",
                null,
                function () { return document.getElementById('example_filter') != null; }
        );
        
        oTest.fnTest( 
                "Information div exists",
                null,
                function () { return document.getElementById('example_info') != null; }
        );
        
        oTest.fnTest( 
                "Pagination div exists",
                null,
                function () { return document.getElementById('example_paginate') != null; }
        );
        
        oTest.fnTest( 
                "Processing div is off by default",
                null,
                function () { return document.getElementById('example_processing') == null; }
        );
        
        oTest.fnTest( 
                "10 rows shown on the first page",
                null,
                function () { return $('#example tbody tr').length == 10; }
        );
        
        oTest.fnTest( 
                "Initial sort occured",
                null,
                function () { return $('#example tbody td:eq(0)').html() == "Gecko"; }
        );
        
        /* Need to use the WaitTest for sorting due to the setTimeout datatables uses */
        oTest.fnTest( 
                "Sorting (first click) on second column",
                function () { $('#example thead th:eq(1)').click(); },
                function () { return $('#example tbody td:eq(1)').html() == "All others"; }
        );
        
        oTest.fnTest( 
                "Sorting (second click) on second column",
                function () { $('#example thead th:eq(1)').click(); },
                function () { return $('#example tbody td:eq(1)').html() == "Seamonkey 1.1"; }
        );
        
        oTest.fnTest( 
                "Sorting (third click) on second column",
                function () { $('#example thead th:eq(1)').click(); },
                function () { return $('#example tbody td:eq(1)').html() == "All others"; }
        );
        
        oTest.fnTest( 
                "Sorting (first click) on numeric column",
                function () { $('#example thead th:eq(3)').click(); },
                function () { return $('#example tbody td:eq(3)').html() == "-"; }
        );
        
        oTest.fnTest( 
                "Sorting (second click) on numeric column",
                function () { $('#example thead th:eq(3)').click(); },
                function () { return $('#example tbody td:eq(3)').html() == "522.1"; }
        );
        
        oTest.fnTest( 
                "Sorting multi-column (first click)",
                function () { 
                        $('#example thead th:eq(0)').click();
                        oDispacher.click( $('#example thead th:eq(1)')[0], { 'shift': true } ); },
                function () { var b = 
                        $('#example tbody td:eq(0)').html() == "Gecko" && 
                        $('#example tbody td:eq(1)').html() == "Camino 1.0"; return b; }
        );
        
        oTest.fnTest( 
                "Sorting multi-column - sorting second column only",
                function () { 
                        $('#example thead th:eq(1)').click(); },
                function () { return $('#example tbody td:eq(1)').html() == "All others"; }
        );
        
        /* Basic paging */
        oTest.fnTest( 
                "Paging to second page",
                function () { $('#example_next').click(); },
                function () { return $('#example tbody td:eq(1)').html() == "IE Mobile"; }
        );
        
        oTest.fnTest( 
                "Paging to first page",
                function () { $('#example_previous').click(); },
                function () { return $('#example tbody td:eq(1)').html() == "All others"; }
        );
        
        oTest.fnTest( 
                "Attempting to page back beyond the first page",
                function () { $('#example_previous').click(); },
                function () { return $('#example tbody td:eq(1)').html() == "All others"; }
        );
        
        /* Changing length */
        oTest.fnTest( 
                "Changing table length to 25 records",
                function () { $("select[name=example_length]").val('25').change(); },
                function () { return $('#example tbody tr').length == 25; }
        );
        
        oTest.fnTest( 
                "Changing table length to 50 records",
                function () { $("select[name=example_length]").val('50').change(); },
                function () { return $('#example tbody tr').length == 50; }
        );
        
        oTest.fnTest( 
                "Changing table length to 100 records",
                function () { $("select[name=example_length]").val('100').change(); },
                function () { return $('#example tbody tr').length == 57; }
        );
        
        oTest.fnTest( 
                "Changing table length to 10 records",
                function () { $("select[name=example_length]").val('10').change(); },
                function () { return $('#example tbody tr').length == 10; }
        );
        
        /*
         * Information element
         */
        oTest.fnTest(
                "Information on zero config",
                null,
                function () { return document.getElementById('example_info').innerHTML == "Showing 1 to 10 of 57 entries"; }
        );
        
        oTest.fnTest(
                "Information on second page",
                function () { $('#example_next').click(); },
                function () { return document.getElementById('example_info').innerHTML == "Showing 11 to 20 of 57 entries"; }
        );
        
        oTest.fnTest(
                "Information on third page",
                function () { $('#example_next').click(); },
                function () { return document.getElementById('example_info').innerHTML == "Showing 21 to 30 of 57 entries"; }
        );
        
        oTest.fnTest(
                "Information on last page",
                function () {
                        $('#example_next').click();
                        $('#example_next').click();
                        $('#example_next').click();
                },
                function () { return document.getElementById('example_info').innerHTML == "Showing 51 to 57 of 57 entries"; }
        );
        
        oTest.fnTest(
                "Information back on first page",
                function () {
                        $('#example_previous').click();
                        $('#example_previous').click();
                        $('#example_previous').click();
                        $('#example_previous').click();
                        $('#example_previous').click();
                },
                function () { return document.getElementById('example_info').innerHTML == "Showing 1 to 10 of 57 entries"; }
        );
        
        oTest.fnTest(
                "Information with 25 records",
                function () { $("select[name=example_length]").val('25').change(); },
                function () { return document.getElementById('example_info').innerHTML == "Showing 1 to 25 of 57 entries"; }
        );
        
        oTest.fnTest(
                "Information with 25 records - second page",
                function () { $('#example_next').click(); },
                function () { return document.getElementById('example_info').innerHTML == "Showing 26 to 50 of 57 entries"; }
        );
        
        oTest.fnTest(
                "Information with 100 records - first page",
                function () {
                        $('#example_previous').click();
                        $("select[name=example_length]").val('100').change();
                },
                function () { return document.getElementById('example_info').innerHTML == "Showing 1 to 57 of 57 entries"; }
        );
        
        oTest.fnTest(
                "Information back to 10 records",
                function () {
                        $('#example_previous').click();
                        $("select[name=example_length]").val('10').change();
                },
                function () { return document.getElementById('example_info').innerHTML == "Showing 1 to 10 of 57 entries"; }
        );
        
        oTest.fnTest(
                "Information with filter 'Win'",
                function () { $('#example_filter input').val("Win").keyup(); },
                function () { return document.getElementById('example_info').innerHTML == 
                        "Showing 1 to 10 of 31 entries (filtered from 57 total entries)"; }
        );
        
        oTest.fnTest(
                "Information with filter 'Win' second page",
                function () { $('#example_next').click(); },
                function () { return document.getElementById('example_info').innerHTML == 
                        "Showing 11 to 20 of 31 entries (filtered from 57 total entries)"; }
        );
        
        oTest.fnTest(
                "Information with filter 'Win' last page",
                function () {
                        $('#example_next').click();
                        $('#example_next').click();
                },
                function () { return document.getElementById('example_info').innerHTML == 
                        "Showing 31 to 31 of 31 entries (filtered from 57 total entries)"; }
        );
        
        oTest.fnTest(
                "Information with filter 'Win' back to first page",
                function () {
                        $('#example_previous').click();
                        $('#example_previous').click();
                        $('#example_previous').click();
                },
                function () { return document.getElementById('example_info').innerHTML == 
                        "Showing 1 to 10 of 31 entries (filtered from 57 total entries)"; }
        );
        
        oTest.fnTest(
                "Information with filter 'Win' second page - second time",
                function () {
                        $('#example_next').click();
                },
                function () { return document.getElementById('example_info').innerHTML == 
                        "Showing 11 to 20 of 31 entries (filtered from 57 total entries)"; }
        );
        
        oTest.fnTest(
                "Information with filter increased to 'Win 98'",
                function () { $('#example_filter input').val("Win 98").keyup(); },
                function () { return document.getElementById('example_info').innerHTML == 
                        "Showing 1 to 9 of 9 entries (filtered from 57 total entries)"; }
        );
        
        oTest.fnTest(
                "Information with filter decreased to 'Win'",
                function () { $('#example_filter input').val("Win").keyup(); },
                function () { return document.getElementById('example_info').innerHTML == 
                        "Showing 1 to 10 of 31 entries (filtered from 57 total entries)"; }
        );
        
        oTest.fnTest(
                "Information with filter 'Win' second page - third time",
                function () {
                        $('#example_next').click();
                },
                function () { return document.getElementById('example_info').innerHTML == 
                        "Showing 11 to 20 of 31 entries (filtered from 57 total entries)"; }
        );
        
        oTest.fnTest(
                "Information with filter removed",
                function () { $('#example_filter input').val("").keyup(); },
                function () { return document.getElementById('example_info').innerHTML == 
                        "Showing 1 to 10 of 57 entries"; }
        );
        
        
        /*
         * Filtering
         */
        oTest.fnTest(
                "Filter 'W' - rows",
                function () { 
                        /* Reset the table such that the old sorting doesn't mess things up */
                        oSession.fnRestore();
                        $('#example').dataTable();
                        $('#example_filter input').val("W").keyup(); },
                function () { return $('#example tbody tr:eq(0) td:eq(0)').html() == "Gecko"; }
        );
        
        oTest.fnTest(
                "Filter 'W' - info",
                null,
                function () { return document.getElementById('example_info').innerHTML == 
                        "Showing 1 to 10 of 42 entries (filtered from 57 total entries)"; }
        );
        
        oTest.fnTest(
                "Filter 'Wi'",
                function () { $('#example_filter input').val("Wi").keyup(); },
                function () { return document.getElementById('example_info').innerHTML == 
                        "Showing 1 to 10 of 32 entries (filtered from 57 total entries)"; }
        );
        
        oTest.fnTest(
                "Filter 'Win'",
                function () { $('#example_filter input').val("Win").keyup(); },
                function () { return document.getElementById('example_info').innerHTML == 
                        "Showing 1 to 10 of 31 entries (filtered from 57 total entries)"; }
        );
        
        oTest.fnTest(
                "Filter 'Win' - sorting column 1",
                function () { $('#example thead th:eq(1)').click(); },
                function () { return $('#example tbody tr:eq(0) td:eq(1)').html() == "AOL browser (AOL desktop)"; }
        );
        
        oTest.fnTest(
                "Filter 'Win' - sorting column 1 info",
                null,
                function () { return document.getElementById('example_info').innerHTML == 
                        "Showing 1 to 10 of 31 entries (filtered from 57 total entries)"; }
        );
        
        oTest.fnTest(
                "Filter 'Win' - sorting column 1 reverse",
                function () { $('#example thead th:eq(1)').click(); },
                function () { return $('#example tbody tr:eq(0) td:eq(1)').html() == "Seamonkey 1.1"; }
        );
        
        oTest.fnTest(
                "Filter 'Win XP' - maintaing reverse sorting col 1",
                function () { $('#example_filter input').val("Win XP").keyup(); },
                function () { return $('#example tbody tr:eq(0) td:eq(1)').html() == "Internet Explorer 7"; }
        );
        
        oTest.fnTest(
                "Filter 'Win XP' - sorting col 3",
                function () { $('#example thead th:eq(3)').click(); },
                function () { return $('#example tbody tr:eq(0) td:eq(3)').html() == "4"; }
        );
        
        oTest.fnTest(
                "Filter 'Win XP' - sorting col 3 - reversed",
                function () { $('#example thead th:eq(3)').click(); },
                function () { return $('#example tbody tr:eq(0) td:eq(3)').html() == "7"; }
        );
        
        oTest.fnTest(
                "Filter 'Win' - sorting col 3 - reversed info",
                null,
                function () { return document.getElementById('example_info').innerHTML == 
                        "Showing 1 to 6 of 6 entries (filtered from 57 total entries)"; }
        );
        
        oTest.fnTest(
                "Filter 'nothinghere'",
                function () { $('#example_filter input').val("nothinghere").keyup(); },
                function () { return $('#example tbody tr:eq(0) td:eq(0)').html() == 
                        "No matching records found"; }
        );
        
        oTest.fnTest(
                "Filter 'nothinghere' - info",
                null,
                function () { return document.getElementById('example_info').innerHTML == 
                        "Showing 0 to 0 of 0 entries (filtered from 57 total entries)"; }
        );
        
        oTest.fnTest(
                "Filter back to blank and 1st column sorting",
                function () {
                        $('#example_filter input').val("").keyup();
                        $('#example thead th:eq(0)').click();
                },
                function () { return document.getElementById('example_info').innerHTML == 
                        "Showing 1 to 10 of 57 entries"; }
        );
        
        oTest.fnTest(
                "Prefixing a filter entry",
                function () {
                        $('#example_filter input').val("Win").keyup();
                        $('#example_filter input').val("GeckoWin").keyup();
                },
                function () { return document.getElementById('example_info').innerHTML == 
                        "Showing 0 to 0 of 0 entries (filtered from 57 total entries)"; }
        );
        
        oTest.fnTest(
                "Prefixing a filter entry with space",
                function () {
                        $('#example_filter input').val("Gecko Win").keyup();
                },
                function () { return document.getElementById('example_info').innerHTML == 
                        "Showing 1 to 10 of 17 entries (filtered from 57 total entries)"; }
        );
        
        
        
        
        
        
        
        
        oTest.fnComplete();
} );