Вход Регистрация
Файл: datatables/media/unit_testing/tests_onhold/4_server-side/fnHeaderCallback.js
Строк: 183
<?php
// DATA_TEMPLATE: empty_table
oTest.fnStart"fnHeaderCallback" );

$(
document).ready( function () {
    
/* Check the default */
    
var oTable = $('#example').dataTable( {
        
"bServerSide"true,
        
"sAjaxSource""../../../examples/server_side/scripts/server_processing.php"
    
} );
    var 
oSettings oTable.fnSettings();
    var 
mPass;
    
    
oTest.fnWaitTest
        
"Default should be null",
        
null,
        function () { return 
oSettings.fnHeaderCallback == null; }
    );
    
    
    
oTest.fnWaitTest
        
"Five arguments passed",
        function () {
            
oSession.fnRestore();
            
            
mPass = -1;
            $(
'#example').dataTable( {
                
"bServerSide"true,
        
"sAjaxSource""../../../examples/server_side/scripts/server_processing.php",
                
"fnHeaderCallback": function ( ) {
                    
mPass arguments.length;
                }
            } );
        },
        function () { return 
mPass == 5; }
    );
    
    
    
oTest.fnWaitTest
        
"fnRowCallback called once per draw",
        function () {
            
oSession.fnRestore();
            
            
mPass 0;
            $(
'#example').dataTable( {
                
"bServerSide"true,
        
"sAjaxSource""../../../examples/server_side/scripts/server_processing.php",
                
"fnHeaderCallback": function ( nHeadaasDataiStartiEndaiDisplay ) {
                    
mPass++;
                }
            } );
        },
        function () { return 
mPass == 1; }
    );
    
    
oTest.fnWaitTest
        
"fnRowCallback called on paging (i.e. another draw)",
        function () { $(
'#example_next').click(); },
        function () { return 
mPass == 2; }
    );
    
    
    
oTest.fnWaitTest
        
"fnRowCallback allows us to alter row information",
        function () {
            
oSession.fnRestore();
            $(
'#example').dataTable( {
                
"bServerSide"true,
        
"sAjaxSource""../../../examples/server_side/scripts/server_processing.php",
                
"fnHeaderCallback": function ( nHeadaasDataiStartiEndaiDisplay ) {
                    
nHead.getElementsByTagName('th')[0].innerHTML "Displaying "+(iEnd-iStart)+" records";
                }
            } );
        },
        function () { return $(
'#example thead th:eq(0)').html() == "Displaying 10 records"; }
    );
    
    
    
oTest.fnWaitTest
        
"iStart correct on first page",
        function () {
            
oSession.fnRestore();
            
            
mPass true;
            $(
'#example').dataTable( {
                
"bServerSide"true,
        
"sAjaxSource""../../../examples/server_side/scripts/server_processing.php",
                
"fnHeaderCallback": function ( nHeadaasDataiStartiEndaiDisplay ) {
                    if ( 
iStart != )
                    {
                        
mPass false;
                    }
                }
            } );
        },
        function () { return 
mPass; }
    );
    
    
    
oTest.fnWaitTest
        
"iStart correct on second page",
        function () {
            
oSession.fnRestore();
            
            
mPass false;
            $(
'#example').dataTable( {
                
"bServerSide"true,
        
"sAjaxSource""../../../examples/server_side/scripts/server_processing.php",
                
"fnHeaderCallback": function ( nHeadaasDataiStartiEndaiDisplay ) {
                    if ( 
iStart == )
                    {
                        
mPass true;
                    }
                },
                
"fnInitComplete": function () {
                    $(
'#example_next').click();
                }
            } );
        },
        function () { return 
mPass; }
    );
    
    
    
oTest.fnWaitTest
        
"iEnd correct on second page",
        function () {
            
oSession.fnRestore();
            
            
mPass false;
            $(
'#example').dataTable( {
                
"bServerSide"true,
        
"sAjaxSource""../../../examples/server_side/scripts/server_processing.php",
                
"fnHeaderCallback": function ( nHeadaasDataiStartiEndaiDisplay ) {
                    if ( 
iEnd == 10 )
                    {
                        
mPass true;
                    }
                },
                
"fnInitComplete": function () {
                    $(
'#example_next').click();
                }
            } );
        },
        function () { return 
mPass; }
    );
    
    
    
oTest.fnWaitTest
        
"aiDisplay length is full data when not filtered",
        function () {
            
oSession.fnRestore();
            
            
mPass false;
            $(
'#example').dataTable( {
                
"bServerSide"true,
        
"sAjaxSource""../../../examples/server_side/scripts/server_processing.php",
                
"fnHeaderCallback": function ( nHeadaasDataiStartiEndaiDisplay ) {
                    if ( 
aiDisplay.length == 10 )
                    {
                        
mPass true;
                    }
                }
            } );
        },
        function () { return 
mPass; }
    );
    
    
oTest.fnWaitTest
        
"aiDisplay length is 9 when filtering on 'Mozilla'",
        function () {
            
oSession.fnRestore();
            
            
mPass false;
            
oTable = $('#example').dataTable( {
                
"bServerSide"true,
        
"sAjaxSource""../../../examples/server_side/scripts/server_processing.php",
                
"fnHeaderCallback": function ( nHeadaasDataiStartiEndaiDisplay ) {
                    if ( 
aiDisplay.length == )
                    {
                        
mPass true;
                    }
                }
            } );
            
oTable.fnFilter"Mozilla" );
        },
        function () { return 
mPass; }
    );
    
    
    
    
oTest.fnComplete();
} );
?>
Онлайн: 2
Реклама