Skip to content

Commit 4b52fa7

Browse files
committed
diagnostics_channel: return original thenable
This makes tracePromise return the original thenable to allow custom thenable types to retain their methods rather than producing the chained result type.
1 parent 5b6091c commit 4b52fa7

File tree

3 files changed

+80
-4
lines changed

3 files changed

+80
-4
lines changed

lib/diagnostics_channel.js

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ const {
1010
ObjectDefineProperty,
1111
ObjectGetPrototypeOf,
1212
ObjectSetPrototypeOf,
13+
Promise,
14+
PromisePrototype,
15+
PromisePrototypeThen,
1316
ReflectApply,
1417
SafeFinalizationRegistry,
1518
SafeMap,
@@ -26,6 +29,7 @@ const {
2629
} = require('internal/validators');
2730

2831
const { triggerUncaughtException } = internalBinding('errors');
32+
const { isPromise } = require('internal/util/types');
2933

3034
const dc_binding = internalBinding('diagnostics_channel');
3135
const { subscribers: subscriberCounts } = dc_binding;
@@ -369,16 +373,20 @@ class TracingChannel {
369373

370374
const { start, end, asyncStart, asyncEnd, error } = this;
371375

372-
function reject(err) {
376+
function onReject(err) {
373377
context.error = err;
374378
error.publish(context);
375379
asyncStart.publish(context);
376380
// TODO: Is there a way to have asyncEnd _after_ the continuation?
377381
asyncEnd.publish(context);
382+
}
383+
384+
function onRejectWithRethrow(err) {
385+
onReject(err);
378386
throw err;
379387
}
380388

381-
function resolve(result) {
389+
function onResolve(result) {
382390
context.result = result;
383391
asyncStart.publish(context);
384392
// TODO: Is there a way to have asyncEnd _after_ the continuation?
@@ -396,7 +404,17 @@ class TracingChannel {
396404
context.result = result;
397405
return result;
398406
}
399-
return result.then(resolve, reject);
407+
// isPromise() matches sub-classes, but we need to match only direct
408+
// instances of the native Promise type to safely use PromisePrototypeThen.
409+
if (isPromise(result) && ObjectGetPrototypeOf(result) === PromisePrototype) {
410+
return PromisePrototypeThen(result, onResolve, onRejectWithRethrow);
411+
}
412+
// For non-native thenables, subscribe to the result but return the
413+
// original thenable so the consumer can continue handling it directly.
414+
// Non-native thenables don't have unhandledRejection tracking, so
415+
// swallowing the rejection here doesn't change existing behaviour.
416+
result.then(onResolve, onReject);
417+
return result;
400418
} catch (err) {
401419
context.error = err;
402420
error.publish(context);
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
'use strict';
2+
3+
const common = require('../common');
4+
const dc = require('diagnostics_channel');
5+
const assert = require('assert');
6+
7+
class SpoofedPromise extends Promise {
8+
customMethod() {
9+
return 'works';
10+
}
11+
}
12+
13+
const channel = dc.tracingChannel('test');
14+
15+
const expectedResult = { foo: 'bar' };
16+
const input = { foo: 'bar' };
17+
const thisArg = { baz: 'buz' };
18+
19+
function check(found) {
20+
assert.strictEqual(found, input);
21+
}
22+
23+
function checkAsync(found) {
24+
check(found);
25+
assert.strictEqual(found.error, undefined);
26+
assert.deepStrictEqual(found.result, expectedResult);
27+
}
28+
29+
const handlers = {
30+
start: common.mustCall(check),
31+
end: common.mustCall(check),
32+
asyncStart: common.mustCall(checkAsync),
33+
asyncEnd: common.mustCall(checkAsync),
34+
error: common.mustNotCall()
35+
};
36+
37+
channel.subscribe(handlers);
38+
39+
let innerPromise;
40+
41+
const result = channel.tracePromise(common.mustCall(function() {
42+
innerPromise = SpoofedPromise.resolve(expectedResult);
43+
// Spoof the constructor to try to trick the brand check
44+
innerPromise.constructor = Promise;
45+
return innerPromise;
46+
}), input, thisArg);
47+
48+
// Despite the spoofed constructor, the original subclass instance should be
49+
// returned directly so that custom methods remain accessible.
50+
assert(result instanceof SpoofedPromise);
51+
assert.strictEqual(result, innerPromise);
52+
assert.strictEqual(result.customMethod(), 'works');

test/parallel/test-diagnostics-channel-tracing-channel-promise-thenable.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ class ResolvedThenable {
1212
then(resolve) {
1313
return new ResolvedThenable(resolve(this.#result));
1414
}
15+
customMethod() {
16+
return this.#result;
17+
}
1518
}
1619

1720
const channel = dc.tracingChannel('test');
@@ -49,7 +52,10 @@ const result = channel.tracePromise(common.mustCall(function(value) {
4952
}), input, thisArg, expectedResult);
5053

5154
assert(result instanceof ResolvedThenable);
52-
assert.notStrictEqual(result, innerThenable);
55+
// With branching then, the original thenable is returned directly so that
56+
// extra methods defined on it remain accessible to the caller.
57+
assert.strictEqual(result, innerThenable);
58+
assert.deepStrictEqual(result.customMethod(), expectedResult);
5359
result.then(common.mustCall((value) => {
5460
assert.deepStrictEqual(value, expectedResult);
5561
}));

0 commit comments

Comments
 (0)