-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Add a test for windows verbatim cwd #15344
base: master
Are you sure you want to change the base?
Conversation
This adds a test for running cargo with a verbatim path on Windows. In particular, this checks for workspace globbing support.
// working directory. On Windows this had issues with a verbatum path. | ||
// | ||
// Note that verbatim path handling is still unreliable in some | ||
// situations, see https://github.com/rust-lang/cargo/issues/9770. |
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.
I would just note that an actual current working directory should not be a verbatim path. As the docs for SetCurrentDirectory
say:
Each process has a single current directory made up of two parts:
- A disk designator that is either a drive letter followed by a colon, or a server name and share name (
\\servername\sharename
)- A directory on the disk designator
That is the path must be either in the form of C:\path\to\dir
or \\servername\sharename\path\to\dir
. A verbatim path (i.e. one that starts with \\?\
) can break assumptions made by other OS APIs. It may work for a particular use but it will be fragile.
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.
Hm, yea... The problem is that people often naively do something like:
Command::new("cargo")
.current_dir(path.canonicalize()?)
.status()?;
If this seems too fragile, then I'm fine with just closing this PR.
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.
That is something I'm considering fixing in the standard library. At the very least I think std should attempt to simplify the path if less than MAX_PATH
. But doing that is semi-blocked on cleaning up our path handling, which already has a number of adhoc fixes for things.
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.
If this seems too fragile, then I'm fine with just closing this PR.
@ChrisDenton how should we move forward? For example, some potential directions
- Try to make these cases work, like this PR
- leave it undefined
- Error if CWD is verbatim
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.
I went ahead with making changes to Command::current_dir
so that verbatim paths are usually turned into their non-verbatim equivalent rust-lang/rust#138869. I think that will solve the original issue.
I don't think cargo should error if the current directory is verbatim (though a warning may be appropriate). In pure rust code we should make a best effort to support this across all tools.
Where it gets tricky is with FFI and especially foreign processes. Attempting to make it work, as in this PR, does appeal to me. I'm just uncertain how well that will work out in practice. Even if Cargo makes it all work internally it can't control what other processes do.
Leaving it undefined is the safest option but somewhat unsatisfying. Having more test coverage for verbatim paths is appealing to me.
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.
Thanks!
For reference, another verbatim path issue we have is #13919. |
This adds a test for running cargo with a verbatim path on Windows. In particular, this checks for workspace globbing support.
This was incidentally fixed by #15166 which updated the glob crate. This was observed in oli-obk/cargo_metadata#288.
How should we test and review this PR?
You can downgrade the glob crate, or test against 1.85 to see that the test will fail with something like: