2014-04-25 07:03:05 +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.
|
|
|
|
|
2014-08-06 09:41:52 +00:00
|
|
|
// Flags: --expose-debug-as debug --allow-natives-syntax
|
2014-04-25 07:03:05 +00:00
|
|
|
|
|
|
|
// Test debug events when we listen to all exceptions and
|
|
|
|
// there is a catch handler for the exception thrown in a Promise.
|
2014-04-30 15:17:51 +00:00
|
|
|
// We expect a normal Exception debug event to be triggered.
|
2014-04-25 07:03:05 +00:00
|
|
|
|
|
|
|
Debug = debug.Debug;
|
|
|
|
|
2014-08-06 09:41:52 +00:00
|
|
|
var expected_events = 1;
|
2014-04-25 07:03:05 +00:00
|
|
|
var log = [];
|
|
|
|
|
|
|
|
var p = new Promise(function(resolve, reject) {
|
|
|
|
log.push("resolve");
|
|
|
|
resolve();
|
|
|
|
});
|
|
|
|
|
|
|
|
var q = p.chain(
|
|
|
|
function() {
|
|
|
|
log.push("throw");
|
|
|
|
throw new Error("caught");
|
|
|
|
});
|
|
|
|
|
|
|
|
q.catch(
|
|
|
|
function(e) {
|
|
|
|
assertEquals("caught", e.message);
|
|
|
|
});
|
|
|
|
|
|
|
|
function listener(event, exec_state, event_data, data) {
|
|
|
|
try {
|
|
|
|
if (event == Debug.DebugEvent.Exception) {
|
2014-08-06 09:41:52 +00:00
|
|
|
expected_events--;
|
|
|
|
assertTrue(expected_events >= 0);
|
2014-04-25 07:03:05 +00:00
|
|
|
assertEquals("caught", event_data.exception().message);
|
2014-08-06 09:41:52 +00:00
|
|
|
assertEquals(q, event_data.promise());
|
2014-04-30 15:17:51 +00:00
|
|
|
assertFalse(event_data.uncaught());
|
2014-04-25 07:03:05 +00:00
|
|
|
}
|
|
|
|
} catch (e) {
|
2014-08-06 09:41:52 +00:00
|
|
|
%AbortJS(e + "\n" + e.stack);
|
2014-04-25 07:03:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Debug.setBreakOnException();
|
|
|
|
Debug.setListener(listener);
|
|
|
|
|
|
|
|
log.push("end main");
|
2014-08-06 09:41:52 +00:00
|
|
|
|
|
|
|
function testDone(iteration) {
|
|
|
|
function checkResult() {
|
|
|
|
try {
|
|
|
|
assertTrue(iteration < 10);
|
|
|
|
if (expected_events === 0) {
|
|
|
|
assertEquals(["resolve", "end main", "throw"], log);
|
|
|
|
} else {
|
|
|
|
testDone(iteration + 1);
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
%AbortJS(e + "\n" + e.stack);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Run testDone through the Object.observe processing loop.
|
|
|
|
var dummy = {};
|
|
|
|
Object.observe(dummy, checkResult);
|
|
|
|
dummy.dummy = dummy;
|
|
|
|
}
|
|
|
|
|
|
|
|
testDone(0);
|