node/test/parallel/test-whatwg-encoding-custom-interop.js
Yagiz Nizipli ddbe1365ff
util: reduce TextEncoder.encodeInto function size
PR-URL: https://github.com/nodejs/node/pull/60339
Reviewed-By: Jordan Harband <ljharb@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
2025-10-23 14:38:22 +00:00

69 lines
1.7 KiB
JavaScript

// Flags: --expose-internals
// This tests interoperability between TextEncoder and TextDecoder with
// Node.js util.inspect and Buffer APIs
'use strict';
require('../common');
const assert = require('assert');
const { customInspectSymbol: inspect } = require('internal/util');
const encoded = Buffer.from([0xef, 0xbb, 0xbf, 0x74, 0x65,
0x73, 0x74, 0xe2, 0x82, 0xac]);
// Make Sure TextEncoder exists
assert(TextEncoder);
// Test TextEncoder
{
const enc = new TextEncoder();
assert.strictEqual(enc.encoding, 'utf-8');
assert(enc);
const buf = enc.encode('\ufefftest€');
assert.strictEqual(Buffer.compare(buf, encoded), 0);
}
{
const enc = new TextEncoder();
const buf = enc.encode();
assert.strictEqual(buf.length, 0);
}
{
const enc = new TextEncoder();
const buf = enc.encode(undefined);
assert.strictEqual(buf.length, 0);
}
{
const inspectFn = TextEncoder.prototype[inspect];
const encodeFn = TextEncoder.prototype.encode;
const encodingGetter =
Object.getOwnPropertyDescriptor(TextEncoder.prototype, 'encoding').get;
const instance = new TextEncoder();
const expectedError = {
name: 'TypeError',
message: /from an object whose class did not declare it/,
};
inspectFn.call(instance, Infinity, {});
encodeFn.call(instance);
encodingGetter.call(instance);
const invalidThisArgs = [{}, [], true, 1, '', new TextDecoder()];
for (const i of invalidThisArgs) {
assert.throws(() => inspectFn.call(i, Infinity, {}), expectedError);
assert.throws(() => encodingGetter.call(i), expectedError);
}
for (const i of invalidThisArgs) {
assert.throws(() => encodeFn.call(i), {
name: 'TypeError',
message: 'Receiver must be an instance of class TextEncoder',
});
}
}