Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
69 changed files
with
933 additions
and
1,251 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,159 @@ | ||
/* Copyright (c) 2008. Adobe Systems Incorporated. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Adobe Systems Incorporated nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.*/package flexUnitTests.flexUnit1.framework{ import flexunit.framework.*; public class AsynchronousTestCase extends TestCase { public function AsynchronousTestCase(name : String) { super(name); } override public function setUp() : void { dispatcher = new AsynchronousValueDispatcher(); } public function testInTimePass() : void { dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1)); dispatcher.dispatchValue(VALUE_1, TIME_PASS); } public function testInTimeFail() : void { dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1)); dispatcher.dispatchValue(VALUE_2, TIME_PASS); } public function testInTimeError() : void { dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1)); dispatcher.dispatchError(TIME_PASS); } public function testTooLatePass() : void { dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1)); dispatcher.dispatchValue(VALUE_1, TIME_FAIL); } public function testTooLateFail() : void { dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1)); dispatcher.dispatchValue(VALUE_2, TIME_FAIL); } public function testTooLateError() : void { dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1)); dispatcher.dispatchError(TIME_FAIL); } public function handleValue(event : ValueEvent, expected : String) : void { var actual : String = event.value; Assert.assertEquals(expected, actual); } | ||
|
||
public function testSecondInTimePass() : void { dispatcher.addEventListener("value", addAsync(handleFirstValueThenPassInTime, TIME_SYNC, VALUE_1)); dispatcher.dispatchValue(VALUE_1, TIME_PASS); } public function handleFirstValueThenPassInTime(event : ValueEvent, expected : String) : void { var actual : String = event.value; Assert.assertEquals(expected, actual); addAsync(handleValue, TIME_SYNC, VALUE_2); dispatcher.dispatchValue(VALUE_2, TIME_PASS); } public function testSecondInTimeFail() : void { dispatcher.addEventListener("value", addAsync(handleFirstValueThenFailInTime, TIME_SYNC, VALUE_1)); dispatcher.dispatchValue(VALUE_1, TIME_PASS); } public function handleFirstValueThenFailInTime(event : ValueEvent, expected : String) : void { var actual : String = event.value; Assert.assertEquals(expected, actual); addAsync(handleValue, TIME_SYNC, VALUE_2); dispatcher.dispatchValue(VALUE_1, TIME_PASS); } public function testSecondTooLatePass() : void { dispatcher.addEventListener("value", addAsync(handleFirstValueThenPassTooLate, TIME_SYNC, VALUE_1)); dispatcher.dispatchValue(VALUE_1, TIME_PASS); } public function handleFirstValueThenPassTooLate(event : ValueEvent, expected : String) : void { var actual : String = event.value; Assert.assertEquals(expected, actual); addAsync(handleValue, TIME_SYNC, VALUE_2); dispatcher.dispatchValue(VALUE_2, TIME_FAIL); } public function testSecondTooLateFail() : void { dispatcher.addEventListener("value", addAsync(handleFirstValueThenFailTooLate, TIME_SYNC, VALUE_1)); dispatcher.dispatchValue(VALUE_1, TIME_PASS); } public function handleFirstValueThenFailTooLate(event : ValueEvent, expected : String) : void { var actual : String = event.value; Assert.assertEquals(expected, actual); addAsync(handleValue, TIME_SYNC, VALUE_2); dispatcher.dispatchValue(VALUE_1, TIME_FAIL); } public function testTimeoutFunctionPass() : void { dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1, handleTimeoutPass)); dispatcher.dispatchValue(VALUE_1, TIME_FAIL); } public function handleTimeoutPass(expected : String) : void { //do nothing, this should turn into a pass } public function testTimeoutFunctionFail() : void { dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1, handleTimeoutFail)); dispatcher.dispatchValue(VALUE_1, TIME_FAIL); } public function handleTimeoutFail(expected : String) : void { fail("async method not called in time"); } public function testNotReallyAsynchronousPass() : void { dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1, handleValue)); dispatcher.dispatchValue(VALUE_1, 0); } public function testNotReallyAsynchronousFail() : void { dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1, handleValue)); dispatcher.dispatchValue(VALUE_2, 0); } private var dispatcher : AsynchronousValueDispatcher; private static var VALUE_1 : String = "value1"; private static var VALUE_2 : String = "value2"; public static var TIME_PASS : int = 50; public static var TIME_FAIL : int = 250; public static var TIME_SYNC : int = 100; }} | ||
package flexUnitTests.flexUnit1.framework | ||
{ | ||
|
||
import flexunit.framework.*; | ||
|
||
public class AsynchronousTestCase extends TestCase | ||
{ | ||
public function AsynchronousTestCase(name : String) | ||
{ | ||
super(name); | ||
} | ||
|
||
override public function setUp() : void | ||
{ | ||
dispatcher = new AsynchronousValueDispatcher(); | ||
} | ||
|
||
public function testInTimePass() : void | ||
{ | ||
dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1)); | ||
dispatcher.dispatchValue(VALUE_1, TIME_PASS); | ||
} | ||
|
||
public function testInTimeFail() : void | ||
{ | ||
dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1)); | ||
dispatcher.dispatchValue(VALUE_2, TIME_PASS); | ||
} | ||
|
||
public function testInTimeError() : void | ||
{ | ||
dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1)); | ||
dispatcher.dispatchError(TIME_PASS); | ||
} | ||
|
||
public function testTooLatePass() : void | ||
{ | ||
dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1)); | ||
dispatcher.dispatchValue(VALUE_1, TIME_FAIL); | ||
} | ||
|
||
public function testTooLateFail() : void | ||
{ | ||
dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1)); | ||
dispatcher.dispatchValue(VALUE_2, TIME_FAIL); | ||
} | ||
|
||
public function testTooLateError() : void | ||
{ | ||
dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1)); | ||
dispatcher.dispatchError(TIME_FAIL); | ||
} | ||
|
||
public function handleValue(event : ValueEvent, expected : String) : void | ||
{ | ||
var actual : String = event.value; | ||
Assert.assertEquals(expected, actual); | ||
} | ||
|
||
|
||
public function testSecondInTimePass() : void | ||
{ | ||
dispatcher.addEventListener("value", addAsync(handleFirstValueThenPassInTime, TIME_SYNC, VALUE_1)); | ||
dispatcher.dispatchValue(VALUE_1, TIME_PASS); | ||
} | ||
|
||
public function handleFirstValueThenPassInTime(event : ValueEvent, expected : String) : void | ||
{ | ||
var actual : String = event.value; | ||
Assert.assertEquals(expected, actual); | ||
addAsync(handleValue, TIME_SYNC, VALUE_2); | ||
dispatcher.dispatchValue(VALUE_2, TIME_PASS); | ||
} | ||
|
||
public function testSecondInTimeFail() : void | ||
{ | ||
dispatcher.addEventListener("value", addAsync(handleFirstValueThenFailInTime, TIME_SYNC, VALUE_1)); | ||
dispatcher.dispatchValue(VALUE_1, TIME_PASS); | ||
} | ||
|
||
public function handleFirstValueThenFailInTime(event : ValueEvent, expected : String) : void | ||
{ | ||
var actual : String = event.value; | ||
Assert.assertEquals(expected, actual); | ||
addAsync(handleValue, TIME_SYNC, VALUE_2); | ||
dispatcher.dispatchValue(VALUE_1, TIME_PASS); | ||
} | ||
|
||
public function testSecondTooLatePass() : void | ||
{ | ||
dispatcher.addEventListener("value", addAsync(handleFirstValueThenPassTooLate, TIME_SYNC, VALUE_1)); | ||
dispatcher.dispatchValue(VALUE_1, TIME_PASS); | ||
} | ||
|
||
public function handleFirstValueThenPassTooLate(event : ValueEvent, expected : String) : void | ||
{ | ||
var actual : String = event.value; | ||
Assert.assertEquals(expected, actual); | ||
addAsync(handleValue, TIME_SYNC, VALUE_2); | ||
dispatcher.dispatchValue(VALUE_2, TIME_FAIL); | ||
} | ||
|
||
public function testSecondTooLateFail() : void | ||
{ | ||
dispatcher.addEventListener("value", addAsync(handleFirstValueThenFailTooLate, TIME_SYNC, VALUE_1)); | ||
dispatcher.dispatchValue(VALUE_1, TIME_PASS); | ||
} | ||
|
||
public function handleFirstValueThenFailTooLate(event : ValueEvent, expected : String) : void | ||
{ | ||
var actual : String = event.value; | ||
Assert.assertEquals(expected, actual); | ||
addAsync(handleValue, TIME_SYNC, VALUE_2); | ||
dispatcher.dispatchValue(VALUE_1, TIME_FAIL); | ||
} | ||
|
||
public function testTimeoutFunctionPass() : void | ||
{ | ||
dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1, handleTimeoutPass)); | ||
dispatcher.dispatchValue(VALUE_1, TIME_FAIL); | ||
} | ||
|
||
public function handleTimeoutPass(expected : String) : void | ||
{ | ||
//do nothing, this should turn into a pass | ||
} | ||
|
||
public function testTimeoutFunctionFail() : void | ||
{ | ||
dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1, handleTimeoutFail)); | ||
dispatcher.dispatchValue(VALUE_1, TIME_FAIL); | ||
} | ||
|
||
public function handleTimeoutFail(expected : String) : void | ||
{ | ||
fail("async method not called in time"); | ||
} | ||
|
||
public function testNotReallyAsynchronousPass() : void | ||
{ | ||
dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1, handleValue)); | ||
dispatcher.dispatchValue(VALUE_1, 0); | ||
} | ||
|
||
public function testNotReallyAsynchronousFail() : void | ||
{ | ||
dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1, handleValue)); | ||
dispatcher.dispatchValue(VALUE_2, 0); | ||
} | ||
|
||
private var dispatcher : AsynchronousValueDispatcher; | ||
|
||
private static var VALUE_1 : String = "value1"; | ||
private static var VALUE_2 : String = "value2"; | ||
public static var TIME_PASS : int = 50; | ||
public static var TIME_FAIL : int = 250; | ||
public static var TIME_SYNC : int = 100; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,58 @@ | ||
/* | ||
Copyright (c) 2008. Adobe Systems Incorporated. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Adobe Systems Incorporated nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
*/package flexUnitTests.flexUnit1.framework{ import flash.events.Event; import flash.events.EventDispatcher; import flash.utils.Timer; public class AsynchronousValueDispatcher extends EventDispatcher { public function AsynchronousValueDispatcher() { timer = new Timer(100, 1); timer.addEventListener("timer", timeout); } public function dispatchValue(value : String, time : int) : void { this.value = value; if (time > 0) { //BUG 114824 WORKAROUND - This bug is marked as fixed, but removing //the workaround causes the unit tests to fail. Need to look into this. timer = new Timer(time, 1); timer.addEventListener("timer", timeout); //END WORKAROUND //timer.delay = time; timer.start(); } else { timeout(null); } } public function dispatchError(time : int) : void { dispatchValue("ERROR", time); } public function timeout(event : Event) : void { if (value == "ERROR") { throw new Error(); } else { dispatchEvent(new ValueEvent(value)); } } private var timer : Timer; private var value : String; }} | ||
package flexUnitTests.flexUnit1.framework | ||
{ | ||
import flash.events.Event; | ||
import flash.events.EventDispatcher; | ||
|
||
import flash.utils.Timer; | ||
|
||
public class AsynchronousValueDispatcher extends EventDispatcher | ||
{ | ||
public function AsynchronousValueDispatcher() | ||
{ | ||
timer = new Timer(100, 1); | ||
timer.addEventListener("timer", timeout); | ||
} | ||
|
||
public function dispatchValue(value : String, time : int) : void | ||
{ | ||
this.value = value; | ||
if (time > 0) | ||
{ | ||
//BUG 114824 WORKAROUND - This bug is marked as fixed, but removing | ||
//the workaround causes the unit tests to fail. Need to look into this. | ||
timer = new Timer(time, 1); | ||
timer.addEventListener("timer", timeout); | ||
//END WORKAROUND | ||
//timer.delay = time; | ||
timer.start(); | ||
} | ||
else | ||
{ | ||
timeout(null); | ||
} | ||
} | ||
|
||
public function dispatchError(time : int) : void | ||
{ | ||
dispatchValue("ERROR", time); | ||
} | ||
|
||
|
||
public function timeout(event : Event) : void | ||
{ | ||
if (value == "ERROR") | ||
{ | ||
throw new Error(); | ||
} | ||
else | ||
{ | ||
dispatchEvent(new ValueEvent(value)); | ||
} | ||
} | ||
|
||
private var timer : Timer; | ||
private var value : String; | ||
|
||
} | ||
|
||
} |
Oops, something went wrong.