-
Notifications
You must be signed in to change notification settings - Fork 29.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test: use unusual chars in the path to ensure our tests are robust #48409
Open
aduh95
wants to merge
12
commits into
nodejs:main
Choose a base branch
from
aduh95:†£§™
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
The head ref may contain hidden characters: "\u2020\u00A3\u00A7\u2122"
Open
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
fb6fb56
test: use unusual chars in the path to ensure our tests are robust
aduh95 a502d65
fix more tests with wrong assumptions
aduh95 c46a85a
skip tests that are hopeless
aduh95 d996d23
attempt at fixing more tests
aduh95 374e166
more parallelism
aduh95 297c355
fix lint
aduh95 cd82472
test: make inspector strip type pass when path contains unusual chars
aduh95 18a9f64
unusual chars in macOS
aduh95 d129610
fix workflow files
aduh95 aa1f1d7
skip tests that crash
aduh95 3360a57
patch github reporter
aduh95 522b401
fixup! skip tests that are hopeless
aduh95 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,28 @@ | ||
// We must load the CJS version here because the ESM wrapper call `hasIPv6` | ||
// which compiles a RegEx. | ||
// eslint-disable-next-line node-core/require-common-first | ||
import '../common/index.js'; | ||
import common from '../common/index.js'; | ||
import assert from 'node:assert'; | ||
|
||
assert.strictEqual(RegExp.$_, ''); | ||
assert.strictEqual(RegExp.$0, undefined); | ||
assert.strictEqual(RegExp.$1, ''); | ||
assert.strictEqual(RegExp.$2, ''); | ||
assert.strictEqual(RegExp.$3, ''); | ||
assert.strictEqual(RegExp.$4, ''); | ||
assert.strictEqual(RegExp.$5, ''); | ||
assert.strictEqual(RegExp.$6, ''); | ||
assert.strictEqual(RegExp.$7, ''); | ||
assert.strictEqual(RegExp.$8, ''); | ||
assert.strictEqual(RegExp.$9, ''); | ||
assert.strictEqual(RegExp.input, ''); | ||
assert.strictEqual(RegExp.lastMatch, ''); | ||
assert.strictEqual(RegExp.lastParen, ''); | ||
assert.strictEqual(RegExp.leftContext, ''); | ||
assert.strictEqual(RegExp.rightContext, ''); | ||
assert.strictEqual(RegExp['$&'], ''); | ||
assert.strictEqual(RegExp['$`'], ''); | ||
assert.strictEqual(RegExp['$+'], ''); | ||
assert.strictEqual(RegExp["$'"], ''); | ||
if (!common.isInsideDirWithUnusualChars) { | ||
assert.strictEqual(RegExp.$_, ''); | ||
assert.strictEqual(RegExp.$0, undefined); | ||
assert.strictEqual(RegExp.$1, ''); | ||
assert.strictEqual(RegExp.$2, ''); | ||
assert.strictEqual(RegExp.$3, ''); | ||
assert.strictEqual(RegExp.$4, ''); | ||
assert.strictEqual(RegExp.$5, ''); | ||
assert.strictEqual(RegExp.$6, ''); | ||
assert.strictEqual(RegExp.$7, ''); | ||
assert.strictEqual(RegExp.$8, ''); | ||
assert.strictEqual(RegExp.$9, ''); | ||
assert.strictEqual(RegExp.input, ''); | ||
assert.strictEqual(RegExp.lastMatch, ''); | ||
assert.strictEqual(RegExp.lastParen, ''); | ||
assert.strictEqual(RegExp.leftContext, ''); | ||
assert.strictEqual(RegExp.rightContext, ''); | ||
assert.strictEqual(RegExp['$&'], ''); | ||
assert.strictEqual(RegExp['$`'], ''); | ||
assert.strictEqual(RegExp['$+'], ''); | ||
assert.strictEqual(RegExp["$'"], ''); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a reason why node isn't checked out directly into the weird path characters?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, #48409 (comment)