OLD | NEW |
---|---|
1 // Copyright 2014 the V8 project authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Flags: --expose-debug-as debug --allow-natives-syntax | 5 // Flags: --expose-debug-as debug --allow-natives-syntax |
6 | 6 |
7 // Test debug events when we only listen to uncaught exceptions and | 7 // Test debug events when we only listen to uncaught exceptions and |
8 // there is a catch handler for the to-be-rejected Promise. | 8 // there is a catch handler for the to-be-rejected Promise. |
9 // We expect an Exception debug event with a promise to be triggered. | 9 // We expect an Exception debug event with a promise to be triggered. |
10 | 10 |
11 Debug = debug.Debug; | 11 Debug = debug.Debug; |
12 | 12 |
13 var expected_events = 1; | 13 var expected_events = 2; |
14 var log = []; | 14 var log = []; |
15 | 15 |
16 var reject_closure; | 16 var resolve, reject; |
17 | 17 var p0 = new Promise(function(res, rej) { resolve = res; reject = rej; }); |
18 var p = new Promise(function(resolve, reject) { | 18 var p1 = p0.then(function() { |
19 log.push("postpone p"); | 19 log.push("p0.then"); |
20 reject_closure = reject; | 20 return Promise.reject(new Error("123")); |
21 }); | |
22 var p2 = p1.then(function() { | |
23 log.push("p1.then"); | |
21 }); | 24 }); |
22 | 25 |
23 var q = new Promise(function(resolve, reject) { | 26 var q = new Promise(function(res, rej) { |
24 log.push("resolve q"); | 27 log.push("resolve q"); |
25 resolve(); | 28 res(); |
26 }); | 29 }); |
27 | 30 |
28 q.then(function() { | 31 q.then(function() { |
29 log.push("reject p"); | 32 log.push("resolve p"); |
30 reject_closure(new Error("uncaught reject p")); // event | 33 resolve(); |
31 }) | 34 }) |
32 | 35 |
33 | 36 |
34 function listener(event, exec_state, event_data, data) { | 37 function listener(event, exec_state, event_data, data) { |
35 try { | 38 try { |
36 if (event == Debug.DebugEvent.Exception) { | 39 if (event == Debug.DebugEvent.Exception) { |
37 expected_events--; | 40 expected_events--; |
38 assertTrue(expected_events >= 0); | 41 assertTrue(expected_events >= 0); |
39 assertEquals("uncaught reject p", event_data.exception().message); | 42 assertTrue(event_data.uncaught()); |
40 assertTrue(event_data.promise() instanceof Promise); | 43 assertTrue(event_data.promise() instanceof Promise); |
41 assertSame(p, event_data.promise()); | 44 if (expected_events == 1) { |
42 assertTrue(event_data.uncaught()); | 45 // p1 is rejected, uncaught except for its default reject handler. |
43 // Assert that the debug event is triggered at the throw site. | 46 assertEquals(0, exec_state.frameCount()); |
Yang
2014/08/12 13:28:35
Note that this is because the promise is rejected
| |
44 assertTrue(exec_state.frame(0).sourceLineText().indexOf("// event") > 0); | 47 assertSame(p1, event_data.promise()); |
48 } else { | |
49 // p2 is rejected by p1's default reject handler. | |
50 assertEquals(0, exec_state.frameCount()); | |
51 assertSame(p2, event_data.promise()); | |
52 } | |
45 } | 53 } |
46 } catch (e) { | 54 } catch (e) { |
47 %AbortJS(e + "\n" + e.stack); | 55 %AbortJS(e + "\n" + e.stack); |
48 } | 56 } |
49 } | 57 } |
50 | 58 |
51 Debug.setBreakOnUncaughtException(); | 59 Debug.setBreakOnUncaughtException(); |
52 Debug.setListener(listener); | 60 Debug.setListener(listener); |
53 | 61 |
54 log.push("end main"); | 62 log.push("end main"); |
55 | 63 |
56 function testDone(iteration) { | 64 function testDone(iteration) { |
57 function checkResult() { | 65 function checkResult() { |
58 try { | 66 try { |
59 assertTrue(iteration < 10); | 67 assertTrue(iteration < 10); |
60 if (expected_events === 0) { | 68 if (expected_events === 0) { |
61 assertEquals(["postpone p", "resolve q", "end main", "reject p"], log); | 69 assertEquals(["resolve q", "end main", "resolve p", "p0.then"], log); |
aandrey
2014/08/13 11:03:04
should there be "p1.then" as well?
Yang
2014/08/13 11:13:49
No. That code path is never taken, since p1 is rej
| |
62 } else { | 70 } else { |
63 testDone(iteration + 1); | 71 testDone(iteration + 1); |
64 } | 72 } |
65 } catch (e) { | 73 } catch (e) { |
66 %AbortJS(e + "\n" + e.stack); | 74 %AbortJS(e + "\n" + e.stack); |
67 } | 75 } |
68 } | 76 } |
69 | 77 |
70 // Run testDone through the Object.observe processing loop. | 78 // Run testDone through the Object.observe processing loop. |
71 var dummy = {}; | 79 var dummy = {}; |
72 Object.observe(dummy, checkResult); | 80 Object.observe(dummy, checkResult); |
73 dummy.dummy = dummy; | 81 dummy.dummy = dummy; |
74 } | 82 } |
75 | 83 |
76 testDone(0); | 84 testDone(0); |
OLD | NEW |