Home | History | Annotate | Download | only in debug-promises
      1 // Copyright 2014 the V8 project authors. All rights reserved.
      2 // Use of this source code is governed by a BSD-style license that can be
      3 // found in the LICENSE file.
      4 
      5 // Flags: --expose-debug-as debug
      6 
      7 // Test debug events when we only listen to uncaught exceptions and
      8 // the Promise is rejected in the Promise constructor.
      9 // We expect an Exception debug event with a promise to be triggered.
     10 
     11 Debug = debug.Debug;
     12 
     13 var steps = 0;
     14 var exception = null;
     15 
     16 function listener(event, exec_state, event_data, data) {
     17   try {
     18     if (event == Debug.DebugEvent.Exception) {
     19       steps++;
     20       assertEquals("uncaught", event_data.exception().message);
     21       assertTrue(event_data.promise() instanceof Promise);
     22       assertTrue(event_data.uncaught());
     23       // Assert that the debug event is triggered at the throw site.
     24       assertTrue(exec_state.frame(0).sourceLineText().indexOf("// event") > 0);
     25     }
     26   } catch (e) {
     27     exception = e;
     28   }
     29 }
     30 
     31 Debug.setBreakOnUncaughtException();
     32 Debug.setListener(listener);
     33 
     34 var p = new Promise(function(resolve, reject) {
     35   reject(new Error("uncaught"));  // event
     36 });
     37 
     38 assertEquals(1, steps);
     39 assertNull(exception);
     40