Bug 856410 - Implement futures - Part 6: Additional tests. r=mounir

This commit is contained in:
Andrea Marchesini 2013-06-11 21:41:22 -04:00
parent acf1806318
commit 630d50ec09
2 changed files with 68 additions and 0 deletions

View File

@ -13,6 +13,7 @@ include $(DEPTH)/config/autoconf.mk
MOCHITEST_FILES = \
test_future.html \
test_resolve.html \
$(NULL)
include $(topsrcdir)/config/rules.mk

View File

@ -0,0 +1,67 @@
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<html>
<head>
<title>Future.resolve(anything) Test</title>
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script type="application/javascript"><!--
var tests = [
null,
42,
"hello world",
true,
false,
{},
{ a: 42 },
[ 1, 2, 3, 4, null, true, "hello world" ],
function() {},
window,
undefined,
document.createElement('input'),
new Date(),
];
function cbError() {
ok(false, "Nothing should arrive here!");
}
function runTest() {
if (!tests.length) {
SimpleTest.finish();
return;
}
var test = tests.pop();
new Future(function(resolver) {
resolver.resolve(test);
}).then(function(what) {
ok(test === what, "What is: " + what);
}, cbError).done(function() {
new Future(function(resolver) {
resolver.reject(test)
}).then(cbError, function(what) {
ok(test === what, "What is: " + what);
}).done(runTest, cbError);
});
}
SimpleTest.waitForExplicitFinish();
SpecialPowers.pushPrefEnv({"set": [["dom.future.enabled", true]]}, runTest);
// -->
</script>
</pre>
</body>
</html>