Skip to content
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

Map local build path during WSL run #729

Merged
merged 13 commits into from
Jan 29, 2023
Merged

Conversation

JanKrivanek
Copy link
Contributor

@JanKrivanek JanKrivanek commented Dec 1, 2022

Problem

Fixes #654
Running under WSL crashes due to mixing windows and subsystem mapped files
Related discussion within #700

Proposed solution

Added prototype mapper function mapping the build time paths to mapped WSL paths.
Used the mapping 'as late as possible' - so with exception of Expecto (that needs source path to infer calling type) it's in the ResolveDirectory, plus in AttributeReader (as that's publicly exposed)

What is missing

Testing - unit testing is bit problematic with this type of feature

@SimonCropp
Copy link
Member

is it possible to add a test for this scenario? either locally or on CI?

@JanKrivanek
Copy link
Contributor Author

is it possible to add a test for this scenario? either locally or on CI?

Would it be acceptable to have manual testing for this?
I added testenvironments.json to be able to localy run unit tests on WSL:

image

(note some of the tests failing under WSL - this is most likely mostly due to mismatched matching of streams between environemnts. This is not related to the way how the WSL is supported).

There can likely be an additional CI job, which setups additional docker container and runs tests there - I unfortunately cannot commit to this work during this year.

@SimonCropp
Copy link
Member

Would it be acceptable to have manual testing for this?
I added testenvironments.json to be able to localy run unit tests on WSL:

yep thats sufficient. can you add a section the readme on how to do that test. then i will merge and ship this

@JanKrivanek
Copy link
Contributor Author

@SimonCropp I've reworked a bit - so one more look might be needed.
I wanted to make dockerized runs supported as well - so that it can be prepared for CI testing scenario in the future (I'm trying to see if this feature can be used from CLI and will comment back here or create item once I have some details).

I as well created separate item for fixing the tests failing for those scenarios.

@JanKrivanek
Copy link
Contributor Author

dotnet/sdk#29516

@JanKrivanek
Copy link
Contributor Author

@SimonCropp - This feels ready from mine point of view. Though I'm very open to any suggestions/ideas.


internal static string? GetMappedBuildPath(string? path, Assembly? assembly = null)
{
if (virtualizedRunHelper == null && assembly != null)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is problematic since based on people use of AttributeReader the virtualizedRunHelper can be mutated. shouldnt the static instance of virtualizedRunHelper only be initialized in TargetAssembly.Assign?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Correct - I originally intentionaly had it that way - as I was expecting all the callers to AttributeReader and Verify to be located in a code that is all going through single build in a single location. While the code can be in multiple assemblies, it still would have single root (solution) - so despite performing mapping via different projects/assemblies, result would be same.
Would the code be comming from different builds - then hopes for proper mapping of every single path are lost due to inability to locate and reach the other build code location from the virtualized mapped path.

...

At least that was my thinking.. but based on your comment I realized there is one specific scenario where separating mappers per assembly makes sense - and that's when the callers are in different assemblies, comming from different builds, but all those builds occured on the same developer machine and from same drive. The code roots might differ. All the code is still reachable from the VM/docker then and the mapping code should be able to reflect that.

A bit esoteric scenario (yeah - I'm the last one to speak about esoteric scenarios), but not nonexistent, plus code is cleaner this way. So thanks for detailed look!

tl;dr;: I have updated the code to separate mappers per assembly.

@SimonCropp SimonCropp added this to the 19.8.0 milestone Jan 29, 2023
@SimonCropp SimonCropp merged commit 3aefe4c into VerifyTests:main Jan 29, 2023
@SimonCropp
Copy link
Member

this is now deployed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
2 participants