Skip to content

Commit 3522e89

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 efa05f2 commit 3522e89

File tree

3 files changed

+78
-11
lines changed

3 files changed

+78
-11
lines changed

lib/diagnostics_channel.js

Lines changed: 19 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ const {
1010
ObjectDefineProperty,
1111
ObjectGetPrototypeOf,
1212
ObjectSetPrototypeOf,
13+
PromisePrototype,
1314
PromisePrototypeThen,
14-
PromiseReject,
1515
ReflectApply,
1616
SafeFinalizationRegistry,
1717
SafeMap,
@@ -29,12 +29,12 @@ const {
2929
} = require('internal/validators');
3030

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

3334
const dc_binding = internalBinding('diagnostics_channel');
3435
const { subscribers: subscriberCounts } = dc_binding;
3536

3637
const { WeakReference } = require('internal/util');
37-
const { isPromise } = require('internal/util/types');
3838

3939
// Can't delete when weakref count reaches 0 as it could increment again.
4040
// Only GC can be used as a valid time to clean up the channels map.
@@ -546,17 +546,21 @@ class TracingChannel {
546546
const { error } = this;
547547
const continuationWindow = this.#continuationWindow;
548548

549-
function reject(err) {
549+
function onReject(err) {
550550
context.error = err;
551551
error.publish(context);
552552
// Use continuation window for asyncStart/asyncEnd
553553
// eslint-disable-next-line no-unused-vars
554554
using scope = continuationWindow.withScope(context);
555555
// TODO: Is there a way to have asyncEnd _after_ the continuation?
556-
return PromiseReject(err);
557556
}
558557

559-
function resolve(result) {
558+
function onRejectWithRethrow(err) {
559+
onReject(err);
560+
throw err;
561+
}
562+
563+
function onResolve(result) {
560564
context.result = result;
561565
// Use continuation window for asyncStart/asyncEnd
562566
// eslint-disable-next-line no-unused-vars
@@ -576,12 +580,17 @@ class TracingChannel {
576580
context.result = result;
577581
return result;
578582
}
579-
// For native Promises use PromisePrototypeThen to avoid user overrides.
580-
if (isPromise(result)) {
581-
return PromisePrototypeThen(result, resolve, reject);
583+
// isPromise() matches sub-classes, but we need to match only direct
584+
// instances of the native Promise type to safely use PromisePrototypeThen.
585+
if (isPromise(result) && ObjectGetPrototypeOf(result) === PromisePrototype) {
586+
return PromisePrototypeThen(result, onResolve, onRejectWithRethrow);
582587
}
583-
// For custom thenables, call .then() directly to preserve the thenable type.
584-
return result.then(resolve, reject);
588+
// For non-native thenables, subscribe to the result but return the
589+
// original thenable so the consumer can continue handling it directly.
590+
// Non-native thenables don't have unhandledRejection tracking, so
591+
// swallowing the rejection here doesn't change existing behaviour.
592+
result.then(onResolve, onReject);
593+
return result;
585594
} catch (err) {
586595
context.error = err;
587596
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)