Merge branch 'master' into PROT-9-webservice
[proteocache.git] / webapp / resources / datatables-1.9.4 / media / unit_testing / tests_onhold / 6_delayed_rendering / aoSearchCols.js
diff --git a/webapp/resources/datatables-1.9.4/media/unit_testing/tests_onhold/6_delayed_rendering/aoSearchCols.js b/webapp/resources/datatables-1.9.4/media/unit_testing/tests_onhold/6_delayed_rendering/aoSearchCols.js
new file mode 100644 (file)
index 0000000..aa61f90
--- /dev/null
@@ -0,0 +1,125 @@
+// DATA_TEMPLATE: empty_table
+oTest.fnStart( "aoSearchCols" );
+
+/* We could be here forever testing this one, so we test a limited subset on a couple of colums */
+
+$(document).ready( function () {
+       /* Check the default */
+       var oTable = $('#example').dataTable( {
+               "sAjaxSource": "../../../examples/ajax/sources/arrays.txt",
+               "bDeferRender": true
+       } );
+       var oSettings = oTable.fnSettings();
+       
+       oTest.fnWaitTest( 
+               "Default should be to have a empty colums array",
+               null,
+               function () {
+                       var bReturn = 
+                               oSettings.aoPreSearchCols[0].sSearch == 0 && !oSettings.aoPreSearchCols[0].bRegex &&
+                               oSettings.aoPreSearchCols[1].sSearch == 0 && !oSettings.aoPreSearchCols[1].bRegex &&
+                               oSettings.aoPreSearchCols[2].sSearch == 0 && !oSettings.aoPreSearchCols[2].bRegex &&
+                               oSettings.aoPreSearchCols[3].sSearch == 0 && !oSettings.aoPreSearchCols[3].bRegex &&
+                               oSettings.aoPreSearchCols[4].sSearch == 0 && !oSettings.aoPreSearchCols[4].bRegex;
+                       return bReturn;
+               }
+       );
+       
+       
+       oTest.fnWaitTest( 
+               "Search on a single column - no regex statement given",
+               function () {
+                       oSession.fnRestore();
+                       oTable = $('#example').dataTable( {
+                               "sAjaxSource": "../../../examples/ajax/sources/arrays.txt",
+                               "bDeferRender": true,
+                               "aoSearchCols": [
+                                       null,
+                                       { "sSearch": "Mozilla" },
+                                       null,
+                                       { "sSearch": "1" },
+                                       null
+                               ]
+                       } );
+               },
+               function () { return $('#example_info').html() == "Showing 1 to 9 of 9 entries (filtered from 57 total entries)"; }
+       );
+       
+       oTest.fnWaitTest( 
+               "Search on two columns - no regex statement given",
+               function () {
+                       oSession.fnRestore();
+                       oTable = $('#example').dataTable( {
+                               "sAjaxSource": "../../../examples/ajax/sources/arrays.txt",
+                               "bDeferRender": true,
+                               "aoSearchCols": [
+                                       null,
+                                       { "sSearch": "Mozilla" },
+                                       null,
+                                       { "sSearch": "1.5" },
+                                       null
+                               ]
+                       } );
+               },
+               function () { return $('#example tbody tr:eq(0) td:eq(3)').html() == "1.5"; }
+       );
+       
+       oTest.fnWaitTest( 
+               "Search on single column - escape regex false",
+               function () {
+                       oSession.fnRestore();
+                       oTable = $('#example').dataTable( {
+                               "sAjaxSource": "../../../examples/ajax/sources/arrays.txt",
+                               "bDeferRender": true,
+                               "aoSearchCols": [
+                                       { "sSearch": ".*ML", "bEscapeRegex": false },
+                                       null,
+                                       null,
+                                       null,
+                                       null
+                               ]
+                       } );
+               },
+               function () { return $('#example_info').html() == "Showing 1 to 3 of 3 entries (filtered from 57 total entries)"; }
+       );
+       
+       oTest.fnWaitTest( 
+               "Search on two columns - escape regex false on first, true on second",
+               function () {
+                       oSession.fnRestore();
+                       oTable = $('#example').dataTable( {
+                               "sAjaxSource": "../../../examples/ajax/sources/arrays.txt",
+                               "bDeferRender": true,
+                               "aoSearchCols": [
+                                       { "sSearch": ".*ML", "bEscapeRegex": false },
+                                       { "sSearch": "3.3", "bEscapeRegex": true },
+                                       null,
+                                       null,
+                                       null
+                               ]
+                       } );
+               },
+               function () { return $('#example tbody tr:eq(0) td:eq(1)').html() == "Konqureror 3.3"; }
+       );
+       
+       oTest.fnWaitTest( 
+               "Search on two columns (no records) - escape regex false on first, true on second",
+               function () {
+                       oSession.fnRestore();
+                       oTable = $('#example').dataTable( {
+                               "sAjaxSource": "../../../examples/ajax/sources/arrays.txt",
+                               "bDeferRender": true,
+                               "aoSearchCols": [
+                                       { "sSearch": ".*ML", "bEscapeRegex": false },
+                                       { "sSearch": "Allan", "bEscapeRegex": true },
+                                       null,
+                                       null,
+                                       null
+                               ]
+                       } );
+               },
+               function () { return $('#example tbody tr:eq(0) td:eq(0)').html() == "No matching records found"; }
+       );
+       
+       oTest.fnComplete();
+} );
\ No newline at end of file