YUI Library JavaScript DHTML



    
Asynchronous Event Testing

/*margin and padding on body element
  can introduce errors in determining
  element position and are not recommended;
  we turn them off as a foundation for YUI
  CSS treatments. */
body {
  margin:0;
  padding:0;
}











Asynchronous Event Testing



  

This example shows how to create an asynchronous test with the YUI Test framework for testing browser-based JavaScript code. 
  A TestCase object is created to test the
  Anim object. The test waits until the animation is complete
  before checking the settings of the animated element.

      





    YAHOO.namespace("example.yuitest");
    
    YAHOO.example.yuitest.AsyncTestCase = new YAHOO.tool.TestCase({
    
        //name of the test case - if not provided, one is auto-generated
        name : "Animation Tests",        
                
        //---------------------------------------------------------------------
        // Test methods - names must begin with "test"
        //---------------------------------------------------------------------
        
        testAnimation : function (){
            var Assert = YAHOO.util.Assert;
            var YUD = YAHOO.util.Dom;
            
            //animate width to 400px
            var myAnim = new YAHOO.util.Anim('testDiv', { width: { to: 400 } }, 3, YAHOO.util.Easing.easeOut);
            
            //assign oncomplete handler
            myAnim.onComplete.subscribe(function(){
            
                //tell the TestRunner to resume
                this.resume(function(){
                
                    Assert.areEqual(YUD.get("testDiv").offsetWidth, 400, "Width of the DIV should be 400.");
                
                });
            
            }, this, true);
            //start the animation
            myAnim.animate();
            
            //wait until something happens
            this.wait();
        
        }
                    
    });
     
    YAHOO.util.Event.onDOMReady(function (){
        //create the logger
        var logger = new YAHOO.tool.TestLogger("testLogger");
        YAHOO.tool.TestRunner.add(YAHOO.example.yuitest.AsyncTestCase);
        //run the tests
        YAHOO.tool.TestRunner.run();
    });



   
  
yui_2.7.0b.zip( 4,431 k)