3bbd81afbc
Note that this also modifies mjsunit.js to allow the {failWithMessage} method to be monkey-patched by a test. This is necessary because assertions which fail in a promise's then-clause would normally only throw an exception, which is swallowed by the promise, causing the test to silently pass. Instead, patching this {failWithMessage} functionality allows then clauses to use the full assertion machinery of mjsunit.js. R=ulan@chromium.org, gsathya@chromium.org BUG= Review-Url: https://codereview.chromium.org/2752043002 Cr-Commit-Position: refs/heads/master@{#43875}
51 lines
1.4 KiB
JavaScript
51 lines
1.4 KiB
JavaScript
// Copyright 2017 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
// Flags: --allow-natives-syntax
|
|
|
|
// We have to patch mjsunit because normal assertion failures just throw
|
|
// exceptions which are swallowed in a then clause.
|
|
failWithMessage = (msg) => %AbortJS(msg);
|
|
|
|
let decrement = () => { %DecrementWaitCount(); }
|
|
let increment = () => { %IncrementWaitCount(); }
|
|
|
|
function WaitForPromise(p) {
|
|
increment();
|
|
p.then(decrement, decrement);
|
|
}
|
|
|
|
function newPromise() {
|
|
var outerResolve;
|
|
var outerReject;
|
|
let promise = new Promise((resolve, reject) => {
|
|
outerResolve = resolve;
|
|
outerReject = reject;
|
|
});
|
|
WaitForPromise(promise); // explicitly wait for promise to resolve.
|
|
return {
|
|
resolve: outerResolve,
|
|
reject: outerReject,
|
|
then: (f, g) => promise.then(f, g)
|
|
};
|
|
}
|
|
|
|
(function ResolveOK() {
|
|
let promise = newPromise();
|
|
promise.then(msg => {print("resolved: " + msg); assertEquals("ok", msg); },
|
|
ex => {print("rejected: " + ex); %AbortJS("" + ex); });
|
|
|
|
promise.resolve("ok");
|
|
promise.reject(11); // ignored
|
|
})();
|
|
|
|
(function RejectOK() {
|
|
let promise = newPromise();
|
|
promise.then(msg => {print("resolved: " + msg); %AbortJS("fail"); },
|
|
ex => {print("rejected: " + ex); assertEquals(42, ex); });
|
|
|
|
promise.reject(42);
|
|
promise.resolve("fail"); // ignored
|
|
})();
|