2017-04-26 22:01:59 +00:00
|
|
|
// Copyright (c) .NET Foundation and contributors. All rights reserved.
|
|
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
|
2017-04-28 22:02:02 +00:00
|
|
|
using FluentAssertions;
|
2017-04-26 22:01:59 +00:00
|
|
|
using Microsoft.Build.Framework;
|
2017-04-28 22:02:02 +00:00
|
|
|
using Microsoft.DotNet.MSBuildSdkResolver;
|
|
|
|
using Microsoft.DotNet.Tools.Test.Utilities;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.IO;
|
|
|
|
using System.Runtime.CompilerServices;
|
2017-05-23 06:09:32 +00:00
|
|
|
using System.Runtime.InteropServices;
|
2017-04-26 22:01:59 +00:00
|
|
|
using Xunit;
|
|
|
|
using Xunit.Abstractions;
|
2017-05-01 20:13:48 +00:00
|
|
|
using System;
|
2017-04-26 22:01:59 +00:00
|
|
|
|
|
|
|
namespace Microsoft.DotNet.Cli.Utils.Tests
|
|
|
|
{
|
2017-04-28 22:02:02 +00:00
|
|
|
public class GivenAnMSBuildSdkResolver : TestBase
|
2017-04-26 22:01:59 +00:00
|
|
|
{
|
|
|
|
private ITestOutputHelper _logger;
|
|
|
|
|
|
|
|
public GivenAnMSBuildSdkResolver(ITestOutputHelper logger)
|
|
|
|
{
|
|
|
|
_logger = logger;
|
|
|
|
}
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
public void ItHasCorrectNameAndPriority()
|
|
|
|
{
|
|
|
|
var resolver = new DotNetMSBuildSdkResolver();
|
|
|
|
|
|
|
|
Assert.Equal(5000, resolver.Priority);
|
|
|
|
Assert.Equal("Microsoft.DotNet.MSBuildSdkResolver", resolver.Name);
|
|
|
|
}
|
|
|
|
|
|
|
|
[Fact]
|
2017-04-28 22:02:02 +00:00
|
|
|
public void ItFindsTheVersionSpecifiedInGlobalJson()
|
2017-04-26 22:01:59 +00:00
|
|
|
{
|
2017-04-28 22:02:02 +00:00
|
|
|
var environment = new TestEnvironment();
|
|
|
|
environment.CreateSdkDirectory(ProgramFiles.X64, "Some.Test.Sdk", "99.99.97");
|
|
|
|
var expected = environment.CreateSdkDirectory(ProgramFiles.X64, "Some.Test.Sdk", "99.99.98");
|
|
|
|
environment.CreateSdkDirectory(ProgramFiles.X64, "Some.Test.Sdk", "99.99.99");
|
|
|
|
environment.CreateGlobalJson(environment.TestDirectory, "99.99.98");
|
2017-05-23 06:09:32 +00:00
|
|
|
environment.CreateMuxerAndAddToPath(ProgramFiles.X64);
|
2017-04-28 22:02:02 +00:00
|
|
|
|
|
|
|
var resolver = environment.CreateResolver();
|
2017-04-26 22:01:59 +00:00
|
|
|
var result = (MockResult)resolver.Resolve(
|
2017-04-28 22:02:02 +00:00
|
|
|
new SdkReference("Some.Test.Sdk", null, null),
|
|
|
|
new MockContext { ProjectFilePath = environment.TestDirectory.FullName },
|
2017-04-26 22:01:59 +00:00
|
|
|
new MockFactory());
|
|
|
|
|
2017-05-20 05:40:11 +00:00
|
|
|
result.Success.Should().BeTrue();
|
2017-04-28 22:02:02 +00:00
|
|
|
result.Path.Should().Be(expected.FullName);
|
|
|
|
result.Version.Should().Be("99.99.98");
|
|
|
|
result.Warnings.Should().BeNullOrEmpty();
|
|
|
|
result.Errors.Should().BeNullOrEmpty();
|
|
|
|
}
|
|
|
|
|
2017-05-20 05:40:11 +00:00
|
|
|
[Fact]
|
|
|
|
public void ItReturnsNullIfTheVersionFoundDoesNotSatisfyTheMinVersion()
|
|
|
|
{
|
|
|
|
var environment = new TestEnvironment();
|
|
|
|
environment.CreateSdkDirectory(ProgramFiles.X64, "Some.Test.Sdk", "99.99.99");
|
|
|
|
|
|
|
|
var resolver = environment.CreateResolver();
|
|
|
|
var result = (MockResult)resolver.Resolve(
|
|
|
|
new SdkReference("Some.Test.Sdk", null, "999.99.99"),
|
|
|
|
new MockContext { ProjectFilePath = environment.TestDirectory.FullName },
|
|
|
|
new MockFactory());
|
|
|
|
|
|
|
|
result.Success.Should().BeFalse();
|
|
|
|
result.Path.Should().BeNull();
|
|
|
|
result.Version.Should().BeNull();
|
|
|
|
result.Warnings.Should().BeNullOrEmpty();
|
|
|
|
result.Errors.Should().Contain("Version 99.99.99 of the SDK is smaller than the minimum version 999.99.99"
|
2017-05-22 17:28:12 +00:00
|
|
|
+ " requested. Check that a recent enough .NET Core SDK is installed, increase the minimum version"
|
|
|
|
+ " specified in the project, or increase the version specified in global.json.");
|
2017-05-20 05:40:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
public void ItReturnsTheVersionIfItIsEqualToTheMinVersion()
|
|
|
|
{
|
|
|
|
var environment = new TestEnvironment();
|
|
|
|
var expected = environment.CreateSdkDirectory(ProgramFiles.X64, "Some.Test.Sdk", "99.99.99");
|
|
|
|
|
|
|
|
var resolver = environment.CreateResolver();
|
|
|
|
var result = (MockResult)resolver.Resolve(
|
|
|
|
new SdkReference("Some.Test.Sdk", null, "99.99.99"),
|
|
|
|
new MockContext { ProjectFilePath = environment.TestDirectory.FullName },
|
|
|
|
new MockFactory());
|
|
|
|
|
|
|
|
result.Success.Should().BeTrue();
|
|
|
|
result.Path.Should().Be(expected.FullName);
|
|
|
|
result.Version.Should().Be("99.99.99");
|
|
|
|
result.Warnings.Should().BeNullOrEmpty();
|
|
|
|
result.Errors.Should().BeNullOrEmpty();
|
|
|
|
}
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
public void ItReturnsTheVersionIfItIsHigherThanTheMinVersion()
|
|
|
|
{
|
|
|
|
var environment = new TestEnvironment();
|
|
|
|
var expected = environment.CreateSdkDirectory(ProgramFiles.X64, "Some.Test.Sdk", "999.99.99");
|
|
|
|
|
|
|
|
var resolver = environment.CreateResolver();
|
|
|
|
var result = (MockResult)resolver.Resolve(
|
|
|
|
new SdkReference("Some.Test.Sdk", null, "99.99.99"),
|
|
|
|
new MockContext { ProjectFilePath = environment.TestDirectory.FullName },
|
|
|
|
new MockFactory());
|
|
|
|
|
|
|
|
result.Success.Should().BeTrue();
|
|
|
|
result.Path.Should().Be(expected.FullName);
|
|
|
|
result.Version.Should().Be("999.99.99");
|
|
|
|
result.Warnings.Should().BeNullOrEmpty();
|
|
|
|
result.Errors.Should().BeNullOrEmpty();
|
|
|
|
}
|
|
|
|
|
2017-04-28 22:02:02 +00:00
|
|
|
private enum ProgramFiles
|
|
|
|
{
|
|
|
|
X64,
|
|
|
|
X86,
|
|
|
|
Default,
|
|
|
|
}
|
|
|
|
|
|
|
|
private sealed class TestEnvironment : SdkResolverContext
|
|
|
|
{
|
2017-05-23 06:09:32 +00:00
|
|
|
public string Muxer => RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ? "dotnet.exe" : "dotnet";
|
|
|
|
|
|
|
|
public string PathEnvironmentVariable { get; set; }
|
|
|
|
|
2017-04-28 22:02:02 +00:00
|
|
|
public DirectoryInfo TestDirectory { get; }
|
|
|
|
|
|
|
|
public TestEnvironment(string identifier = "", [CallerMemberName] string callingMethod = "")
|
|
|
|
{
|
|
|
|
TestDirectory = TestAssets.CreateTestDirectory(
|
|
|
|
"temp",
|
|
|
|
identifier: identifier,
|
|
|
|
callingMethod: callingMethod);
|
2017-05-23 06:09:32 +00:00
|
|
|
|
|
|
|
PathEnvironmentVariable = string.Empty;
|
2017-04-28 22:02:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public SdkResolver CreateResolver()
|
2017-05-01 20:13:48 +00:00
|
|
|
=> new DotNetMSBuildSdkResolver(GetEnvironmentVariable);
|
2017-04-28 22:02:02 +00:00
|
|
|
|
|
|
|
public DirectoryInfo GetSdkDirectory(ProgramFiles programFiles, string sdkName, string sdkVersion)
|
|
|
|
=> TestDirectory.GetDirectory(GetProgramFilesDirectory(programFiles).FullName, "dotnet", "sdk", sdkVersion, "Sdks", sdkName, "Sdk");
|
|
|
|
|
|
|
|
public DirectoryInfo GetProgramFilesDirectory(ProgramFiles programFiles)
|
|
|
|
=> TestDirectory.GetDirectory($"ProgramFiles{programFiles}");
|
|
|
|
|
|
|
|
public DirectoryInfo CreateSdkDirectory(ProgramFiles programFiles, string sdkVersion, string sdkName)
|
|
|
|
{
|
|
|
|
var dir = GetSdkDirectory(programFiles, sdkVersion, sdkName);
|
|
|
|
dir.Create();
|
|
|
|
return dir;
|
|
|
|
}
|
|
|
|
|
2017-05-23 06:09:32 +00:00
|
|
|
public void CreateMuxerAndAddToPath(ProgramFiles programFiles)
|
|
|
|
{
|
|
|
|
var muxerDirectory = TestDirectory.GetDirectory(GetProgramFilesDirectory(programFiles).FullName, "dotnet");
|
|
|
|
|
|
|
|
new FileInfo(Path.Combine(muxerDirectory.FullName, Muxer)).Create();
|
|
|
|
|
|
|
|
PathEnvironmentVariable = $"{muxerDirectory}{Path.PathSeparator}{PathEnvironmentVariable}";
|
|
|
|
}
|
|
|
|
|
2017-04-28 22:02:02 +00:00
|
|
|
public void CreateGlobalJson(DirectoryInfo directory, string version)
|
|
|
|
=> File.WriteAllText(directory.GetFile("global.json").FullName,
|
|
|
|
$@"{{ ""sdk"": {{ ""version"": ""{version}"" }} }}");
|
2017-05-01 20:13:48 +00:00
|
|
|
|
|
|
|
public string GetEnvironmentVariable(string variable)
|
|
|
|
{
|
|
|
|
switch (variable)
|
|
|
|
{
|
2017-05-23 06:09:32 +00:00
|
|
|
case "PATH":
|
|
|
|
return PathEnvironmentVariable;
|
2017-05-01 20:13:48 +00:00
|
|
|
default:
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
2017-04-26 22:01:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private sealed class MockContext : SdkResolverContext
|
|
|
|
{
|
2017-04-28 22:02:02 +00:00
|
|
|
public new string ProjectFilePath { get => base.ProjectFilePath; set => base.ProjectFilePath = value; }
|
|
|
|
public new string SolutionFilePath { get => base.SolutionFilePath; set => base.SolutionFilePath = value; }
|
2017-04-26 22:01:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private sealed class MockFactory : SdkResultFactory
|
|
|
|
{
|
|
|
|
public override SdkResult IndicateFailure(IEnumerable<string> errors, IEnumerable<string> warnings = null)
|
2017-04-28 22:02:02 +00:00
|
|
|
=> new MockResult { Success = false, Errors = errors, Warnings = warnings };
|
2017-04-26 22:01:59 +00:00
|
|
|
|
|
|
|
public override SdkResult IndicateSuccess(string path, string version, IEnumerable<string> warnings = null)
|
|
|
|
=> new MockResult { Success = true, Path = path, Version = version, Warnings = warnings };
|
|
|
|
}
|
|
|
|
|
|
|
|
private sealed class MockResult : SdkResult
|
|
|
|
{
|
|
|
|
public new bool Success { get => base.Success; set => base.Success = value; }
|
|
|
|
public string Version { get; set; }
|
|
|
|
public string Path { get; set; }
|
|
|
|
public IEnumerable<string> Errors { get; set; }
|
|
|
|
public IEnumerable<string> Warnings { get; set; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|