fix(core): handle EISDIR in robustRealpath on Windows#21984
Conversation
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request enhances the Highlights
Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request addresses an issue where fs.realpathSync can throw an EISDIR error on Windows for certain invalid paths. The change modifies robustRealpath to handle EISDIR in the same manner as ENOENT, which involves recursively resolving the parent path. This improves the function's robustness. A new test case has been added to validate this specific error handling scenario. The implementation is correct and well-tested.
|
Size Change: +56 B (0%) Total Size: 26.5 MB ℹ️ View Unchanged
|
Summary
Handle
EISDIRerrors inrobustRealpathto improve robustness on Windows. Added a corresponding test case to verify the fix.Details
On Windows,
fs.realpathSynccan sometimes throwEISDIRinstead ofENOENTfor certain paths (e.g., when a path component is invalid but looks like a directory, or for certain reserved names). This PR ensuresrobustRealpathhandlesEISDIRsimilarly toENOENTby attempting to resolve through parent directories.Related Issues
Fixes #21975
How to Validate
Run unit tests:
Pre-Merge Checklist