--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/cm/media/js/lib/yui/yui_3.10.3/docs/test/test-async-event-tests.html Tue Jul 16 14:29:46 2013 +0200
@@ -0,0 +1,374 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="utf-8">
+ <title>Example: Asynchronous Event Testing</title>
+ <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=PT+Sans:400,700,400italic,700italic">
+ <link rel="stylesheet" href="../../build/cssgrids/cssgrids-min.css">
+ <link rel="stylesheet" href="../assets/css/main.css">
+ <link rel="stylesheet" href="../assets/vendor/prettify/prettify-min.css">
+ <link rel="shortcut icon" type="image/png" href="../assets/favicon.png">
+ <script src="../../build/yui/yui-min.js"></script>
+
+</head>
+<body>
+<!--
+<a href="https://github.com/yui/yui3"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub"></a>
+-->
+<div id="doc">
+ <div id="hd">
+ <h1><img src="http://yuilibrary.com/img/yui-logo.png"></h1>
+ </div>
+
+ <a href="#toc" class="jump">Jump to Table of Contents</a>
+
+
+ <h1>Example: Asynchronous Event Testing</h1>
+ <div class="yui3-g">
+ <div class="yui3-u-3-4">
+ <div id="main">
+ <div class="content"><div class="intro">
+ <p>This example shows how to create an asynchronous test with the YUI Test framework for testing browser-based JavaScript code.
+ A <code>Y.Test.Case</code></a> object is created to test the
+ <code>Y.Anim</code> object. The test waits until the animation is complete
+ before checking the settings of the animated element.</p>
+</div>
+
+<div class="example yui3-skin-sam" style="position: relative;">
+ <div id="testLogger"></div>
+<div id="testDiv" style="left:0;position:absolute;width:10px;height:10px; background-color:red"></div>
+
+<script>
+YUI().use('anim', 'test-console', 'test', function (Y) {
+
+ Y.namespace("example.test");
+
+ Y.example.test.AsyncTestCase = new Y.Test.Case({
+
+ //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 myAnim = new Y.Anim({
+ node: '#testDiv',
+ to: {
+ width: 400
+ },
+ duration: 3,
+ easing: Y.Easing.easeOut
+ });
+
+ //assign oncomplete handler
+ myAnim.on("end", function(){
+
+ //tell the TestRunner to resume
+ this.resume(function(){
+
+ Y.Assert.areEqual(document.getElementById("testDiv").offsetWidth, 400, "Width of the DIV should be 400.");
+
+ });
+
+ }, this, true);
+
+ //start the animation
+ myAnim.run();
+
+ //wait until something happens
+ this.wait();
+
+ }
+
+ });
+
+ //create the console
+ (new Y.Test.Console({
+ newestOnTop : false,
+ filters: {
+ pass: true,
+ fail: true
+ }
+ })).render('#testLogger');
+
+ //create the logger
+ Y.Test.Runner.add(Y.example.test.AsyncTestCase);
+
+ //run the tests
+ Y.Test.Runner.run();
+});
+
+</script>
+
+</div>
+
+<h2 class="first" id="asynchronous-events-test-example">Asynchronous Events Test Example</h2>
+
+<p>This example begins by creating a namespace:</p>
+<pre class="code prettyprint">Y.namespace("example.test");</pre>
+
+<p>This namespace serves as the core object upon which others will be added (to prevent creating global objects).</p>
+
+<h3 id="creating-the-testcase">Creating the TestCase</h3>
+
+<p>The first step is to create a new <code>Y.Test.Case</code>object called <code>AsyncTestCase</code>.
+ To do so, using the <code>Y.Test.Case</code>constructor and pass in an object literal containing information about the tests to be run:</p>
+<pre class="code prettyprint">Y.example.test.AsyncTestCase = new Y.Test.Case({
+
+ //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 myAnim = new Y.Anim({
+ node: '#testDiv',
+ to: {
+ width: 400
+ },
+ duration: 3,
+ easing: Y.Easing.easeOut
+ });
+
+ //assign oncomplete handler
+ myAnim.on("end", function(){
+
+ //tell the TestRunner to resume
+ this.resume(function(){
+
+ Y.Assert.areEqual(document.getElementById("testDiv").offsetWidth, 400, "Width of the DIV should be 400.");
+
+ });
+
+ }, this, true);
+
+ //start the animation
+ myAnim.run();
+
+ //wait until something happens
+ this.wait();
+
+ }
+
+});</pre>
+
+<p>The only test in the <code>Y.Test.Case</code>is called <code>testAnimation</code>. It begins by creating a new
+<code>Anim</code> object that will animate the width of a <code>div</code> to 400 pixels over three seconds. An
+event handler is assigned to the <code>Anim</code> object's <code>end</code> event, within which the
+<code>resume()</code> method is called. A function is passed into the <code>resume()</code> method to indicate
+the code to run when the test resumes, which is a test to make sure the width is 400 pixels. After that, the
+<code>run()</code> method is called to begin the animation and the <code>wait()</code> method is called to
+tell the <code>Y.Test.Runner</code> to wait until it is told to resume testing again. When the animation completes,
+the <code>end</code> event is fired and the test resumes, assuring that the width is correct.</p>
+<h3 id="running-the-tests">Running the tests</h3>
+
+<p>With all of the tests defined, the last step is to run them:</p>
+
+<pre class="code prettyprint">//create the console
+(new Y.Test.Console({
+ verbose : true,
+ newestOnTop : false,
+ filters: {
+ pass: true,
+ fail: true
+ }
+}).render('#testLogger');
+
+//create the logger
+Y.Test.Runner.add(Y.example.test.AsyncTestCase);
+
+//run the tests
+Y.Test.Runner.run();</pre>
+
+
+<p>Before running the tests, it's necessary to create a <code>Y.Test.Console</code> object to display the results (otherwise the tests would run
+ but you wouldn't see the results). After that, the <code>Y.Test.Runner</code> is loaded with the <code>Y.Test.Case</code>object by calling
+ <code>add()</code> (any number of <code>Y.Test.Case</code>and <code>TestSuite</code> objects can be added to a <code>Y.Test.Runner</code>,
+ this example only adds one for simplicity). The very last step is to call <code>run()</code>, which begins executing the tests in its
+ queue and displays the results in the <code>Y.Test.Console</code>.</p>
+
+<h2 id="complete-example-source">Complete Example Source</h2>
+
+<pre class="code prettyprint"><div id="testLogger"></div>
+<div id="testDiv" style="left:0;position:absolute;width:10px;height:10px; background-color:red"></div>
+
+<script>
+YUI().use('anim', 'test-console', 'test', function (Y) {
+
+ Y.namespace("example.test");
+
+ Y.example.test.AsyncTestCase = new Y.Test.Case({
+
+ //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 myAnim = new Y.Anim({
+ node: '#testDiv',
+ to: {
+ width: 400
+ },
+ duration: 3,
+ easing: Y.Easing.easeOut
+ });
+
+ //assign oncomplete handler
+ myAnim.on("end", function(){
+
+ //tell the TestRunner to resume
+ this.resume(function(){
+
+ Y.Assert.areEqual(document.getElementById("testDiv").offsetWidth, 400, "Width of the DIV should be 400.");
+
+ });
+
+ }, this, true);
+
+ //start the animation
+ myAnim.run();
+
+ //wait until something happens
+ this.wait();
+
+ }
+
+ });
+
+ //create the console
+ (new Y.Test.Console({
+ newestOnTop : false,
+ filters: {
+ pass: true,
+ fail: true
+ }
+ })).render('#testLogger');
+
+ //create the logger
+ Y.Test.Runner.add(Y.example.test.AsyncTestCase);
+
+ //run the tests
+ Y.Test.Runner.run();
+});
+
+</script></pre>
+
+</div>
+ </div>
+ </div>
+
+ <div class="yui3-u-1-4">
+ <div class="sidebar">
+
+ <div id="toc" class="sidebox">
+ <div class="hd">
+ <h2 class="no-toc">Table of Contents</h2>
+ </div>
+
+ <div class="bd">
+ <ul class="toc">
+<li>
+<a href="#asynchronous-events-test-example">Asynchronous Events Test Example</a>
+<ul class="toc">
+<li>
+<a href="#creating-the-testcase">Creating the TestCase</a>
+</li>
+<li>
+<a href="#running-the-tests">Running the tests</a>
+</li>
+</ul>
+</li>
+<li>
+<a href="#complete-example-source">Complete Example Source</a>
+</li>
+</ul>
+ </div>
+ </div>
+
+
+
+ <div class="sidebox">
+ <div class="hd">
+ <h2 class="no-toc">Examples</h2>
+ </div>
+
+ <div class="bd">
+ <ul class="examples">
+
+
+ <li data-description="Demonstrates basic usage of YUI Test for setting up and running tests.">
+ <a href="test-simple-example.html">Simple Testing Example</a>
+ </li>
+
+
+
+ <li data-description="Demonstrates how to use advanced testing features such as defining tests that should fail, tests that should be ignored, and tests that should throw an error.">
+ <a href="test-advanced-test-options.html">Advanced Test Options</a>
+ </li>
+
+
+
+ <li data-description="Demonstrates how to use the ArrayAssert object to test array data.">
+ <a href="test-array-tests.html">Array Processing</a>
+ </li>
+
+
+
+ <li data-description="Demonstrates basic asynchronous tests.">
+ <a href="test-async-test.html">Asynchronous Testing</a>
+ </li>
+
+
+
+ <li data-description="Demonstrates using events with asynchronous tests.">
+ <a href="test-async-event-tests.html">Asynchronous Event Testing</a>
+ </li>
+
+
+ </ul>
+ </div>
+ </div>
+
+
+
+ </div>
+ </div>
+ </div>
+</div>
+
+<script src="../assets/vendor/prettify/prettify-min.js"></script>
+<script>prettyPrint();</script>
+
+<script>
+YUI.Env.Tests = {
+ examples: [],
+ project: '../assets',
+ assets: '../assets/test',
+ name: 'test-async-event-tests',
+ title: 'Asynchronous Event Testing',
+ newWindow: '',
+ auto: false
+};
+YUI.Env.Tests.examples.push('test-simple-example');
+YUI.Env.Tests.examples.push('test-advanced-test-options');
+YUI.Env.Tests.examples.push('test-array-tests');
+YUI.Env.Tests.examples.push('test-async-test');
+YUI.Env.Tests.examples.push('test-async-event-tests');
+
+</script>
+<script src="../assets/yui/test-runner.js"></script>
+
+
+
+</body>
+</html>