diff DataTables-1.9.4/media/unit_testing/tests_onhold/6_delayed_rendering/aoSearchCols.js @ 0:ac5f9272033b draft

first upload
author saskia-hiltemann
date Tue, 01 Jul 2014 11:42:23 -0400
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/DataTables-1.9.4/media/unit_testing/tests_onhold/6_delayed_rendering/aoSearchCols.js	Tue Jul 01 11:42:23 2014 -0400
@@ -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