-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathJsDiagExceptionsInPromises_BreakOnUncaughtExceptions.js
159 lines (142 loc) · 5.2 KB
/
JsDiagExceptionsInPromises_BreakOnUncaughtExceptions.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
/**exception(uncaught):stack();**/
function unhandledPromiseRejection1() {
Promise.resolve(true)
.then(() => {
throw new Error('error for unhandledPromiseRejection1')
});
}
unhandledPromiseRejection1();
function unhandledPromiseRejection2() {
Promise.resolve(true)
.then(() => {
throw new Error('error for unhandledPromiseRejection2');
})
.then(() => {
// no catch
});
}
unhandledPromiseRejection2();
function unhandledPromiseRejection3() {
let p = Promise.resolve(true)
.then(() => {
throw new Error('error for unhandledPromiseRejection3');
})
.then(() => 0);
p.then(() => 0).then(() => 1); // this path is not caught
p.then(() => 2, (err) => { }); // this path is caught
}
unhandledPromiseRejection3();
function unhandledPromiseRejection4() {
let p = Promise.resolve(true)
.then(() => {
throw new Error('error for unhandledPromiseRejection3');
})
.catch((err) => {
throw err;
});
}
unhandledPromiseRejection4();
function handledPromiseRejection5() {
Promise.resolve(true)
.then(() => {
throw new Error('error for handledPromiseRejection5')
}).catch(() => { });
}
handledPromiseRejection5();
function handledPromiseRejection6() {
Promise.resolve(true)
.then(() => {
throw new Error('error for handledPromiseRejection6');
})
.then(() => { }, () => { });
}
handledPromiseRejection6()
function handledPromiseRejection7() {
let p = Promise.resolve(true)
.then(() => {
throw new Error('error for handledPromiseRejection7');
})
.then(() => 0);
p.then(() => 0).then(() => 1).catch(() => { }); // this path is caught
p.then(() => 2, (err) => { }); // this path is caught
}
handledPromiseRejection7();
//
// validate that when we have a handler from one script context
// and a promise from another script context, we'll break appropriately
//
function unhandledPromiseRejectionCrossContext() {
var external = WScript.LoadScriptFile("JsDiagExceptionsInPromises_BreakOnFirstChanceExceptions.crosscontext.js", "samethread");
let p = Promise.prototype.then.call(
external.externalContextPromise.promise, () => {
});
external.externalContextPromise.resolvePromise();
}
unhandledPromiseRejectionCrossContext();
//
// validate that when we have a handler from one script context
// and a promise from another script context, we'll not break if a rejection handler is available
//
function handledPromiseRejectionCrossContext() {
var external = WScript.LoadScriptFile("JsDiagExceptionsInPromises_BreakOnFirstChanceExceptions.crosscontext.js", "samethread");
let p = Promise.prototype.then.call(
external.externalContextPromise.promise, () => {}, () => {});
external.externalContextPromise.resolvePromise();
}
handledPromiseRejectionCrossContext();
//
// This one below is an edge case where we will break on uncaught exceptions
// even though the rejection is handled. What's happening here is before
// we execute the function onResolve, there is no handler attached
// so we, then as part of executing onResolve, the catch handler is
// attached. We'll break in the function below.
//
// I don't think it is worth fixing this since it seems like a relatively
// rare case.
//
function handledPromiseRejection8_bugbug() {
var p = Promise.resolve(0).then(function onResolve() {
p.catch(() => { }); // lazily added catch on the currently executing promise
throw new Error('error for handledPromiseRejection8_bugbug');
});
}
handledPromiseRejection8_bugbug();
//
// In the case below, we're resolving a promise with a promise.
// Ultimately, the rejections is handled, but according to
// ES standard, the resolve of promiseA with promiseB gets
// pushed on the task queue, therefore, at the time the exception
// is raised, promiseB hasn't been "then'd".
//
// There are two ways to address this:
// 1. Change the ResolveThenable task to run immediately vs runing in task queue (this would be in violation of the spec)
// 2. Keep a list of the pending resolve-thenable tasks.
//
function handledPromiseRejection9_bugbug() {
function f1() {
let promiseA = new Promise((resolveA, rejectA) => {
let promiseB = Promise.resolve(true).then(() => {
throw new Error('error for handledPromiseRejection9_bugbug');
});
resolveA(promiseB);
});
return promiseA;
}
f1().catch((e) => {
});
}
handledPromiseRejection9_bugbug();
function noRejection10() {
let p = Promise.resolve(true)
.then(() => {
try {
throw new Error('error for noRejection10');
} catch (err) {
}
});
}
noRejection10();