- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 159
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
VerifyDirectory doesn't play well with file names starting with dot #699
Comments
This was an interesting one. Rootcause is in subtle different ways of enumerating files. Snapshot files are enumerated via The This means that the caller of VerifyDirectory can workaround this issue via passing the In order to debug more comfortably under WSL I put together simple mapping of paths - I'll post a draft of that as well (it just needs to be called from all usages of |
so as you pointed out there were a few moving pieces here. i went with prefixing with i deployed a 18.3.1-beta.1 if you want to play with it |
Using It would be nice if original filename could be preserved (regardles of filename or extension) - but it's definitely not a blocker and current solution is clean and simple from code perspective. I'll bump our reference. Thanks! |
hmmm. i will see how difficult that is |
Problem
VerifyDirectory
has 2 issues with file names starting with dot (e.g..editorconfig
):Root cause
For the first case it's inability to work with empty string as a name. Can be solved by using null instead of empty string - code will then fallback to
NameOrTarget
.For the second case - I'm not sure. I'm blocked by the WSL debugging issue #654 (that's caused by the fact that 'CallerFilePathAttribute' returns paths in windows FS (as that's where binaries were built) - so
Path
utilities and locating of snapshot files fails to work properly) - so I haven't got a chance to debug this properly (I'd need to setup full build env and remote debugger in my WSL - for which I'll need some extra time).Possible solution
Both issues can be likely fixed by using a dummy name (e.g. 'trarget') as a filename in case the
name
resolves to empty string or directory name within theInnerVerifier.ToTargets
(withname
for nested file would still need to contain the relative dir as today - e.g.nested_dir\target
). This however feels a bit ugly (artificial filename).The text was updated successfully, but these errors were encountered: