2014-08-14 06:57:48 +00:00
|
|
|
// Copyright 2014 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.
|
|
|
|
|
2020-06-23 14:45:51 +00:00
|
|
|
// Flags: --ignore-unhandled-promises
|
2014-08-14 06:57:48 +00:00
|
|
|
|
|
|
|
// Test debug events when we only listen to uncaught exceptions and
|
2014-08-18 08:43:11 +00:00
|
|
|
// there is only a default reject handler for the to-be-rejected Promise.
|
2016-08-24 20:37:57 +00:00
|
|
|
// We expect only one debug event: when the first Promise is rejected
|
|
|
|
// and only has default reject handlers. No event is triggered when
|
|
|
|
// simply forwarding the rejection with .then's default handler.
|
2014-08-14 06:57:48 +00:00
|
|
|
|
|
|
|
Debug = debug.Debug;
|
|
|
|
|
2016-08-24 20:37:57 +00:00
|
|
|
var expected_events = 1;
|
2014-08-14 06:57:48 +00:00
|
|
|
var log = [];
|
|
|
|
|
|
|
|
var resolve, reject;
|
|
|
|
var p0 = new Promise(function(res, rej) { resolve = res; reject = rej; });
|
|
|
|
var p1 = p0.then(function() {
|
|
|
|
log.push("p0.then");
|
|
|
|
throw new Error("123"); // event
|
|
|
|
});
|
|
|
|
var p2 = p1.then(function() {
|
|
|
|
log.push("p1.then");
|
|
|
|
});
|
|
|
|
|
|
|
|
var q = new Promise(function(res, rej) {
|
|
|
|
log.push("resolve q");
|
|
|
|
res();
|
|
|
|
});
|
|
|
|
|
|
|
|
q.then(function() {
|
|
|
|
log.push("resolve p");
|
|
|
|
resolve();
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
function listener(event, exec_state, event_data, data) {
|
|
|
|
try {
|
|
|
|
if (event == Debug.DebugEvent.Exception) {
|
|
|
|
expected_events--;
|
|
|
|
assertTrue(expected_events >= 0);
|
|
|
|
assertTrue(event_data.uncaught());
|
2016-08-24 20:37:57 +00:00
|
|
|
// p1 is rejected, uncaught except for its default reject handler.
|
|
|
|
assertTrue(
|
|
|
|
exec_state.frame(0).sourceLineText().indexOf("// event") > 0);
|
2014-08-14 06:57:48 +00:00
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
%AbortJS(e + "\n" + e.stack);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Debug.setBreakOnUncaughtException();
|
|
|
|
Debug.setListener(listener);
|
|
|
|
|
|
|
|
log.push("end main");
|
|
|
|
|
|
|
|
function testDone(iteration) {
|
|
|
|
function checkResult() {
|
|
|
|
try {
|
|
|
|
assertTrue(iteration < 10);
|
|
|
|
if (expected_events === 0) {
|
|
|
|
assertEquals(["resolve q", "end main", "resolve p", "p0.then"], log);
|
|
|
|
} else {
|
|
|
|
testDone(iteration + 1);
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
%AbortJS(e + "\n" + e.stack);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-21 17:16:57 +00:00
|
|
|
%EnqueueMicrotask(checkResult);
|
2014-08-14 06:57:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
testDone(0);
|