Skip to content

Commit cde7fde

Browse files
committed
util: fix .format() not always calling toString when it should be
This makes sure that `util.format('%s', object)` will always call a user defined `toString` function. It was formerly not the case when the object had the function declared on the super class. At the same time this also makes sure that getters won't be triggered accessing the `constructor` property.
1 parent 00e2276 commit cde7fde

File tree

2 files changed

+95
-22
lines changed

2 files changed

+95
-22
lines changed

lib/internal/util/inspect.js

+35-22
Original file line numberDiff line numberDiff line change
@@ -1571,6 +1571,31 @@ function reduceToSingleString(
15711571
return `${braces[0]}${ln}${join(output, `,\n${indentation} `)} ${braces[1]}`;
15721572
}
15731573

1574+
function hasBuiltInToString(value) {
1575+
// Count objects that have no `toString` function as built-in.
1576+
if (typeof value.toString !== 'function') {
1577+
return true;
1578+
}
1579+
1580+
// The object has a own `toString` property. Thus it's not not a built-in one.
1581+
if (hasOwnProperty(value, 'toString')) {
1582+
return false;
1583+
}
1584+
1585+
// Find the object that has the `toString` property as own property in the
1586+
// prototype chain.
1587+
let pointer = value;
1588+
do {
1589+
pointer = ObjectGetPrototypeOf(pointer);
1590+
} while (!hasOwnProperty(pointer, 'toString'));
1591+
1592+
// Check closer if the object is a built-in.
1593+
const descriptor = ObjectGetOwnPropertyDescriptor(pointer, 'constructor');
1594+
return descriptor !== undefined &&
1595+
typeof descriptor.value === 'function' &&
1596+
builtInObjects.has(descriptor.value.name);
1597+
}
1598+
15741599
const firstErrorLine = (error) => error.message.split('\n')[0];
15751600
let CIRCULAR_ERROR_MESSAGE;
15761601
function tryStringify(arg) {
@@ -1629,29 +1654,17 @@ function formatWithOptionsInternal(inspectOptions, ...args) {
16291654
tempStr = formatNumber(stylizeNoColor, tempArg);
16301655
} else if (typeof tempArg === 'bigint') {
16311656
tempStr = `${tempArg}n`;
1657+
} else if (typeof tempArg !== 'object' ||
1658+
tempArg === null ||
1659+
!hasBuiltInToString(tempArg)) {
1660+
tempStr = String(tempArg);
16321661
} else {
1633-
let constr;
1634-
if (typeof tempArg !== 'object' ||
1635-
tempArg === null ||
1636-
(typeof tempArg.toString === 'function' &&
1637-
// A direct own property.
1638-
(ObjectPrototypeHasOwnProperty(tempArg, 'toString') ||
1639-
// A direct own property on the constructor prototype in
1640-
// case the constructor is not an built-in object.
1641-
((constr = tempArg.constructor) &&
1642-
!builtInObjects.has(constr.name) &&
1643-
constr.prototype &&
1644-
ObjectPrototypeHasOwnProperty(constr.prototype,
1645-
'toString'))))) {
1646-
tempStr = String(tempArg);
1647-
} else {
1648-
tempStr = inspect(tempArg, {
1649-
...inspectOptions,
1650-
compact: 3,
1651-
colors: false,
1652-
depth: 0
1653-
});
1654-
}
1662+
tempStr = inspect(tempArg, {
1663+
...inspectOptions,
1664+
compact: 3,
1665+
colors: false,
1666+
depth: 0
1667+
});
16551668
}
16561669
break;
16571670
case 106: // 'j'

test/parallel/test-util-format.js

+60
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,66 @@ assert.strictEqual(util.format('%s', () => 5), '() => 5');
160160
util.format('%s', new Foobar(5)),
161161
'Foobar [ <5 empty items>, aaa: true ]'
162162
);
163+
164+
// Subclassing:
165+
class B extends Foo {}
166+
167+
function C() {}
168+
C.prototype.toString = function() {
169+
return 'Custom';
170+
};
171+
172+
function D() {
173+
C.call(this);
174+
}
175+
D.prototype = Object.create(C.prototype);
176+
177+
assert.strictEqual(
178+
util.format('%s', new B()),
179+
'Bar'
180+
);
181+
assert.strictEqual(
182+
util.format('%s', new C()),
183+
'Custom'
184+
);
185+
assert.strictEqual(
186+
util.format('%s', new D()),
187+
'Custom'
188+
);
189+
190+
D.prototype.constructor = D;
191+
assert.strictEqual(
192+
util.format('%s', new D()),
193+
'Custom'
194+
);
195+
196+
D.prototype.constructor = null;
197+
assert.strictEqual(
198+
util.format('%s', new D()),
199+
'Custom'
200+
);
201+
202+
D.prototype.constructor = { name: 'Foobar' };
203+
assert.strictEqual(
204+
util.format('%s', new D()),
205+
'Custom'
206+
);
207+
208+
Object.defineProperty(D.prototype, 'constructor', {
209+
get() {
210+
throw new Error();
211+
},
212+
configurable: true
213+
});
214+
assert.strictEqual(
215+
util.format('%s', new D()),
216+
'Custom'
217+
);
218+
219+
assert.strictEqual(
220+
util.format('%s', Object.create(null)),
221+
'[Object: null prototype] {}'
222+
);
163223
}
164224

165225
// JSON format specifier

0 commit comments

Comments
 (0)