-
Notifications
You must be signed in to change notification settings - Fork 696
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
Make PackageSpecDependencyProvider consider the version being requested #5985
Open
ViktorHofer
wants to merge
2
commits into
NuGet:dev
Choose a base branch
from
ViktorHofer:10368fix
base: dev
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.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -101,7 +101,17 @@ public Library GetLibrary(LibraryRange libraryRange, NuGetFramework targetFramew | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// This must exist in the external references | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (_externalProjectsByUniqueName.TryGetValue(name, out ExternalProjectReference externalReference)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
packageSpec = externalReference.PackageSpec; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// A library with a null version range means that all versions should match. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (externalReference.PackageSpec == null || | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
libraryRange.VersionRange == null || | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
libraryRange.VersionRange.FindBestMatch(new NuGetVersion[] { externalReference.PackageSpec.Version }) != null) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
packageSpec = externalReference.PackageSpec; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
else | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
externalReference = null; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (externalReference == null && packageSpec == null) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
102
to
117
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
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 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -3337,6 +3337,86 @@ public async Task ExecuteAsync_WithLegacyAlgorithmOptIn_ExecutesLegacyAlgorithm( | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
result.LockFile.PackageSpec.RestoreMetadata.UseLegacyDependencyResolver.Should().BeTrue(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
[Fact] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
public async Task ExecuteAsync_WithConditionalProjectAndPackageReferences_SelectsPackageWhereProjectIsNotAppropriate() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Arrange | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
using var context = new SourceCacheContext(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
using var pathContext = new SimpleTestPathContext(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
var mainProject = "main"; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
var mainProjectPath = Path.Combine(pathContext.SolutionRoot, mainProject); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
var systemNumericsVectorName = "System.Numerics.Vectors"; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
var childProjectPath = Path.Combine(pathContext.SolutionRoot, systemNumericsVectorName); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
var mainProjectJson = @" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
""version"": ""1.0.0"", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
""frameworks"": { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
""netstandard2.0"": { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
""dependencies"": { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
""System.Memory"": { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
""target"": ""Package"", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
""version"": ""[4.5.5, )"" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
""NETStandard.Library"": { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
""suppressParent"": ""All"", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
""target"": ""Package"", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
""version"": ""[2.0.3, )"", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
""autoReferenced"": true | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
""net8.0"": { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
""dependencies"": { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}"; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PackageSpec systemNumericsVectorPackageSpec = ProjectTestHelpers.GetPackageSpec(systemNumericsVectorName, pathContext.SolutionRoot, "net8.0"); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PackageSpec mainPackageSpec = ProjectTestHelpers.GetPackageSpecWithProjectNameAndSpec(mainProject, pathContext.SolutionRoot, mainProjectJson); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
var settings = Settings.LoadDefaultSettings(pathContext.SolutionRoot); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
mainPackageSpec.RestoreMetadata.ConfigFilePaths = settings.GetConfigFilePaths(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
mainPackageSpec.RestoreMetadata.Sources = SettingsUtility.GetEnabledSources(settings).ToList(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
mainPackageSpec.RestoreMetadata.FallbackFolders = SettingsUtility.GetFallbackPackageFolders(settings).ToList(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
mainPackageSpec.RestoreMetadata.PackagesPath = SettingsUtility.GetGlobalPackagesFolder(settings); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
mainPackageSpec.RestoreMetadata.TargetFrameworks.Single(e => e.FrameworkName.Equals(NuGetFramework.Parse("net8.0"))).ProjectReferences.Add(new ProjectRestoreReference() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ProjectUniqueName = systemNumericsVectorPackageSpec.RestoreMetadata.ProjectUniqueName, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ProjectPath = systemNumericsVectorPackageSpec.RestoreMetadata.ProjectPath, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// create packages | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
var ns203 = new SimpleTestPackageContext("NETStandard.Library", "2.0.3"); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
var systemMemory = new SimpleTestPackageContext("System.Memory", "4.5.5"); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
var systemNumericsVector = new SimpleTestPackageContext(systemNumericsVectorName, "4.4.0"); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
systemMemory.Dependencies.Add(systemNumericsVector); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
await SimpleTestPackageUtility.CreateFolderFeedV3Async(pathContext.PackageSource, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ns203, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
systemMemory, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
systemNumericsVector); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
var logger = new TestLogger(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
var request = ProjectTestHelpers.CreateRestoreRequest(pathContext, logger, mainPackageSpec, systemNumericsVectorPackageSpec); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
var restoreCommand = new RestoreCommand(request); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
RestoreResult result = await restoreCommand.ExecuteAsync(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
result.Success.Should().BeTrue(because: logger.ShowMessages()); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
result.LockFile.LogMessages.Should().BeEmpty(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
var net80Target = result.LockFile.Targets.Single(e => e.TargetFramework.Equals(NuGetFramework.Parse("net8.0"))); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
var netstandard20 = result.LockFile.Targets.Single(e => e.TargetFramework.Equals(NuGetFramework.Parse("netstandard2.0"))); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
net80Target.Libraries.Should().HaveCount(1); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
var net80Vectors = net80Target.Libraries.Single(e => e.Name.Equals(systemNumericsVectorName)); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
net80Vectors.Version.Should().Be(new NuGetVersion(1, 0, 0)); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
netstandard20.Libraries.Should().HaveCount(3); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
var ns20Target = netstandard20.Libraries.Single(e => e.Name.Equals(systemNumericsVectorName)); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ns20Target.Version.Should().Be(new NuGetVersion(4, 4, 0)); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+3403
to
+3417
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
private static TargetFrameworkInformation CreateTargetFrameworkInformation(List<LibraryDependency> dependencies, List<CentralPackageVersion> centralVersionsDependencies, NuGetFramework framework = null) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
NuGetFramework nugetFramework = framework ?? new NuGetFramework("net40"); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
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.
Do we need this check:
externalReference.PackageSpec == null
?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.
@nkolev92 had it in the original PR. This check guards against null before the
PackageSpec
is dereferenced in the later checkexternalReference.PackageSpec.Version
.