mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
dd52c05046
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>
37 lines
983 B
JavaScript
37 lines
983 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
if (!common.hasCrypto)
|
|
common.skip('missing crypto');
|
|
const assert = require('assert');
|
|
const http2 = require('http2');
|
|
|
|
const server = http2.createServer();
|
|
const data = Buffer.from([0x1, 0x2, 0x3, 0x4, 0x5]);
|
|
let session;
|
|
|
|
server.on('stream', common.mustCall((stream) => {
|
|
session = stream.session;
|
|
session.on('close', common.mustCall());
|
|
session.goaway(0, 0, data);
|
|
stream.respond();
|
|
stream.end();
|
|
}));
|
|
server.on('close', common.mustCall());
|
|
|
|
server.listen(0, () => {
|
|
const client = http2.connect(`http://localhost:${server.address().port}`);
|
|
client.once('goaway', common.mustCall((code, lastStreamID, buf) => {
|
|
assert.strictEqual(code, 0);
|
|
assert.strictEqual(lastStreamID, 1);
|
|
assert.deepStrictEqual(data, buf);
|
|
session.close();
|
|
server.close();
|
|
}));
|
|
const req = client.request();
|
|
req.resume();
|
|
req.on('end', common.mustCall());
|
|
req.on('close', common.mustCall());
|
|
req.end();
|
|
});
|