Merge branch 'master' into PROT-9-webservice
[proteocache.git] / webapp / resources / datatables-1.9.4 / media / unit_testing / tests_onhold / 3_ajax / fnServerData.js
diff --git a/webapp/resources/datatables-1.9.4/media/unit_testing/tests_onhold/3_ajax/fnServerData.js b/webapp/resources/datatables-1.9.4/media/unit_testing/tests_onhold/3_ajax/fnServerData.js
new file mode 100644 (file)
index 0000000..ab20ba3
--- /dev/null
@@ -0,0 +1,64 @@
+// DATA_TEMPLATE: empty_table
+oTest.fnStart( "fnServerData for Ajax sourced data" );
+
+$(document).ready( function () {
+       var mPass;
+       
+       oTest.fnTest( 
+               "Argument length",
+               function () {
+                       $('#example').dataTable( {
+                               "sAjaxSource": "../../../examples/ajax/sources/arrays.txt",
+                               "fnServerData": function () {
+                                       mPass = arguments.length;
+                               }
+                       } );
+               },
+               function () { return mPass == 4; }
+       );
+       
+       oTest.fnTest( 
+               "Url",
+               function () {
+                       $('#example').dataTable( {
+                               "bDestroy": true,
+                               "sAjaxSource": "../../../examples/ajax/sources/arrays.txt",
+                               "fnServerData": function (sUrl, aoData, fnCallback, oSettings) {
+                                       mPass = sUrl == "../../../examples/ajax/sources/arrays.txt";
+                               }
+                       } );
+               },
+               function () { return mPass; }
+       );
+       
+       oTest.fnTest( 
+               "Data array",
+               function () {
+                       $('#example').dataTable( {
+                               "bDestroy": true,
+                               "sAjaxSource": "../../../examples/ajax/sources/arrays.txt",
+                               "fnServerData": function (sUrl, aoData, fnCallback, oSettings) {
+                                       mPass = aoData.length==0;
+                               }
+                       } );
+               },
+               function () { return mPass; }
+       );
+       
+       oTest.fnTest( 
+               "Callback function",
+               function () {
+                       $('#example').dataTable( {
+                               "bDestroy": true,
+                               "sAjaxSource": "../../../examples/ajax/sources/arrays.txt",
+                               "fnServerData": function (sUrl, aoData, fnCallback, oSettings) {
+                                       mPass = typeof fnCallback == 'function';
+                               }
+                       } );
+               },
+               function () { return mPass; }
+       );
+       
+       
+       oTest.fnComplete();
+} );
\ No newline at end of file