mirror of
https://github.com/nodejs/node.git
synced 2025-05-06 01:43:00 +00:00

Comparing any value to any non-RegExp literal or undefined using strictEqual (or notStrictEqual) passes if and only if deepStrictEqual (or notDeepStrictEqual, respectively) passes. Unnecessarily using deep comparisons adds confusion. This patch adds an ESLint rule that forbids the use of deepStrictEqual and notDeepStrictEqual when the expected value (i.e., the second argument) is a non-RegExp literal or undefined. For reference, an ESTree literal is defined as follows. extend interface Literal <: Expression { type: "Literal"; value: string | boolean | null | number | RegExp | bigint; } The value `undefined` is an `Identifier` with `name: 'undefined'`. PR-URL: https://github.com/nodejs/node/pull/40634 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Voltrex <mohammadkeyvanzade94@gmail.com>
88 lines
2.1 KiB
JavaScript
88 lines
2.1 KiB
JavaScript
'use strict';
|
|
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const path = require('path');
|
|
const fs = require('fs');
|
|
const tmpdir = require('../common/tmpdir');
|
|
|
|
tmpdir.refresh();
|
|
|
|
const expected = 'ümlaut. Лорем 運務ホソモ指及 आपको करने विकास 紙読決多密所 أضف';
|
|
|
|
const getFileName = (i) => path.join(tmpdir.path, `writev_sync_${i}.txt`);
|
|
|
|
/**
|
|
* Testing with a array of buffers input
|
|
*/
|
|
|
|
// fs.writevSync with array of buffers with all parameters
|
|
{
|
|
const filename = getFileName(1);
|
|
const fd = fs.openSync(filename, 'w');
|
|
|
|
const buffer = Buffer.from(expected);
|
|
const bufferArr = [buffer, buffer];
|
|
const expectedLength = bufferArr.length * buffer.byteLength;
|
|
|
|
let written = fs.writevSync(fd, [Buffer.from('')], null);
|
|
assert.strictEqual(written, 0);
|
|
|
|
written = fs.writevSync(fd, bufferArr, null);
|
|
assert.strictEqual(written, expectedLength);
|
|
|
|
fs.closeSync(fd);
|
|
|
|
assert(Buffer.concat(bufferArr).equals(fs.readFileSync(filename)));
|
|
}
|
|
|
|
// fs.writevSync with array of buffers without position
|
|
{
|
|
const filename = getFileName(2);
|
|
const fd = fs.openSync(filename, 'w');
|
|
|
|
const buffer = Buffer.from(expected);
|
|
const bufferArr = [buffer, buffer, buffer];
|
|
const expectedLength = bufferArr.length * buffer.byteLength;
|
|
|
|
let written = fs.writevSync(fd, [Buffer.from('')]);
|
|
assert.strictEqual(written, 0);
|
|
|
|
written = fs.writevSync(fd, bufferArr);
|
|
assert.strictEqual(written, expectedLength);
|
|
|
|
fs.closeSync(fd);
|
|
|
|
assert(Buffer.concat(bufferArr).equals(fs.readFileSync(filename)));
|
|
}
|
|
|
|
/**
|
|
* Testing with wrong input types
|
|
*/
|
|
{
|
|
const filename = getFileName(3);
|
|
const fd = fs.openSync(filename, 'w');
|
|
|
|
[false, 'test', {}, [{}], ['sdf'], null, undefined].forEach((i) => {
|
|
assert.throws(
|
|
() => fs.writevSync(fd, i, null), {
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
name: 'TypeError'
|
|
}
|
|
);
|
|
});
|
|
|
|
fs.closeSync(fd);
|
|
}
|
|
|
|
// fs.writevSync with wrong fd types
|
|
[false, 'test', {}, [{}], null, undefined].forEach((i) => {
|
|
assert.throws(
|
|
() => fs.writevSync(i),
|
|
{
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
name: 'TypeError'
|
|
}
|
|
);
|
|
});
|