From ffc0f3d7be5fb724e8acb3f10a0364c5b45fd08a Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Sun, 11 Dec 2022 23:34:31 +0100 Subject: [PATCH] test_runner: refactor `tap_parser` to use more primordials PR-URL: https://github.com/nodejs/node/pull/45745 Reviewed-By: Moshe Atlow Reviewed-By: Colin Ihrig Reviewed-By: Yagiz Nizipli --- lib/internal/test_runner/tap_parser.js | 54 ++++++++++++++------------ 1 file changed, 30 insertions(+), 24 deletions(-) diff --git a/lib/internal/test_runner/tap_parser.js b/lib/internal/test_runner/tap_parser.js index 2b79220b632e02..abb581cda103a2 100644 --- a/lib/internal/test_runner/tap_parser.js +++ b/lib/internal/test_runner/tap_parser.js @@ -1,28 +1,30 @@ 'use strict'; -const Transform = require('internal/streams/transform'); -const { TapLexer, TokenKind } = require('internal/test_runner/tap_lexer'); -const { TapChecker } = require('internal/test_runner/tap_checker'); -const { - codes: { ERR_TAP_VALIDATION_ERROR, ERR_TAP_PARSER_ERROR }, -} = require('internal/errors'); -const { kEmptyObject } = require('internal/util'); const { ArrayPrototypeFilter, ArrayPrototypeForEach, + ArrayPrototypeIncludes, ArrayPrototypeJoin, ArrayPrototypeMap, + ArrayPrototypePop, ArrayPrototypePush, - ArrayPrototypeIncludes, - ArrayPrototypeSplice, Boolean, Number, RegExpPrototypeExec, - RegExpPrototypeSymbolReplace, String, - StringPrototypeTrim, + StringPrototypeEndsWith, + StringPrototypeReplaceAll, + StringPrototypeSlice, StringPrototypeSplit, + StringPrototypeTrim, } = primordials; +const Transform = require('internal/streams/transform'); +const { TapLexer, TokenKind } = require('internal/test_runner/tap_lexer'); +const { TapChecker } = require('internal/test_runner/tap_checker'); +const { + codes: { ERR_TAP_VALIDATION_ERROR, ERR_TAP_PARSER_ERROR }, +} = require('internal/errors'); +const { kEmptyObject } = require('internal/util'); /** * * TAP14 specifications @@ -149,22 +151,26 @@ class TapParser extends Transform { processChunk(chunk) { const str = this.#lastLine + chunk.toString('utf8'); const lines = StringPrototypeSplit(str, '\n'); - this.#lastLine = ArrayPrototypeSplice(lines, lines.length - 1, 1)[0]; + this.#lastLine = ArrayPrototypePop(lines); - let chunkAsString = lines.join('\n'); + let chunkAsString = ArrayPrototypeJoin(lines, '\n'); // Special case where chunk is emitted by a child process - chunkAsString = RegExpPrototypeSymbolReplace( - /\[out\] /g, + chunkAsString = StringPrototypeReplaceAll( chunkAsString, + '[out] ', '' ); - chunkAsString = RegExpPrototypeSymbolReplace( - /\[err\] /g, + chunkAsString = StringPrototypeReplaceAll( chunkAsString, + '[err] ', '' ); - chunkAsString = RegExpPrototypeSymbolReplace(/\n$/, chunkAsString, ''); - chunkAsString = RegExpPrototypeSymbolReplace(/EOF$/, chunkAsString, ''); + if (StringPrototypeEndsWith(chunkAsString, '\n')) { + chunkAsString = StringPrototypeSlice(chunkAsString, 0, -1); + } + if (StringPrototypeEndsWith(chunkAsString, 'EOF')) { + chunkAsString = StringPrototypeSlice(chunkAsString, 0, -3); + } return chunkAsString; } @@ -371,7 +377,7 @@ class TapParser extends Transform { } #addDiagnosticsToLastTestPoint(currentNode) { - const lastTestPoint = this.#bufferedTestPoints.at(-1); + const { length, [length - 1]: lastTestPoint } = this.#bufferedTestPoints; // Diagnostic nodes are only added to Test points of the same nesting level if (lastTestPoint && lastTestPoint.nesting === currentNode.nesting) { @@ -396,7 +402,7 @@ class TapParser extends Transform { #flushBufferedTestPointNode(shouldClearBuffer = true) { if (this.#bufferedTestPoints.length > 0) { - this.#emit(this.#bufferedTestPoints.at(0)); + this.#emit(this.#bufferedTestPoints[0]); if (shouldClearBuffer) { this.#bufferedTestPoints = []; @@ -797,7 +803,7 @@ class TapParser extends Transform { const commentContent = this.#peek(); if (commentContent) { - if (/^Subtest:/i.test(commentContent.value)) { + if (RegExpPrototypeExec(/^Subtest:/i, commentContent.value) !== null) { this.#next(); // skip subtest keyword const name = StringPrototypeTrim(this.#readNextLiterals()); const node = { @@ -898,7 +904,7 @@ class TapParser extends Transform { // YAMLLine := " " (YAML)* "\n" #YAMLLine() { const yamlLiteral = this.#readNextLiterals(); - const { 0: key, 1: value } = StringPrototypeSplit(yamlLiteral, ':'); + const { 0: key, 1: value } = StringPrototypeSplit(yamlLiteral, ':', 2); // Note that this.#lastTestPointDetails has been cleared when we encounter a YAML start marker @@ -960,7 +966,7 @@ class TapParser extends Transform { // In some cases, pragma key can be followed by a comma separator, // so we need to remove it - pragmaKey = RegExpPrototypeSymbolReplace(/,/g, pragmaKey, ''); + pragmaKey = StringPrototypeReplaceAll(pragmaKey, ',', ''); pragmas[pragmaKey] = isEnabled; nextToken = this.#peek();