2017-03-03 05:04:03 +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.
|
|
|
|
|
|
|
|
|
|
using Microsoft.DotNet.Tools.Build;
|
2017-02-14 18:41:58 +00:00
|
|
|
|
using FluentAssertions;
|
|
|
|
|
using Xunit;
|
|
|
|
|
|
|
|
|
|
namespace Microsoft.DotNet.Cli.MSBuild.Tests
|
|
|
|
|
{
|
|
|
|
|
public class GivenDotnetBuildInvocation
|
|
|
|
|
{
|
2017-10-24 22:50:43 +00:00
|
|
|
|
const string ExpectedPrefix = "exec <msbuildpath> /m /v:m";
|
2017-02-23 01:40:02 +00:00
|
|
|
|
|
2017-02-14 19:38:01 +00:00
|
|
|
|
[Theory]
|
2017-02-23 01:40:02 +00:00
|
|
|
|
[InlineData(new string[] { }, "/t:Build")]
|
|
|
|
|
[InlineData(new string[] { "-o", "foo" }, "/t:Build /p:OutputPath=foo")]
|
2017-03-23 23:40:43 +00:00
|
|
|
|
[InlineData(new string[] { "-p:Verbosity=diag" }, "/t:Build -p:Verbosity=diag")]
|
2017-02-23 01:40:02 +00:00
|
|
|
|
[InlineData(new string[] { "--output", "foo" }, "/t:Build /p:OutputPath=foo")]
|
|
|
|
|
[InlineData(new string[] { "-o", "foo1 foo2" }, "/t:Build \"/p:OutputPath=foo1 foo2\"")]
|
|
|
|
|
[InlineData(new string[] { "--no-incremental" }, "/t:Rebuild")]
|
2017-03-10 00:39:49 +00:00
|
|
|
|
[InlineData(new string[] { "-r", "rid" }, "/t:Build /p:RuntimeIdentifier=rid")]
|
|
|
|
|
[InlineData(new string[] { "--runtime", "rid" }, "/t:Build /p:RuntimeIdentifier=rid")]
|
|
|
|
|
[InlineData(new string[] { "-c", "config" }, "/t:Build /p:Configuration=config")]
|
|
|
|
|
[InlineData(new string[] { "--configuration", "config" }, "/t:Build /p:Configuration=config")]
|
2017-02-23 01:40:02 +00:00
|
|
|
|
[InlineData(new string[] { "--version-suffix", "mysuffix" }, "/t:Build /p:VersionSuffix=mysuffix")]
|
|
|
|
|
[InlineData(new string[] { "--no-dependencies" }, "/t:Build /p:BuildProjectReferences=false")]
|
2017-03-10 00:39:49 +00:00
|
|
|
|
[InlineData(new string[] { "-v", "diag" }, "/t:Build /verbosity:diag")]
|
|
|
|
|
[InlineData(new string[] { "--verbosity", "diag" }, "/t:Build /verbosity:diag")]
|
2017-10-24 22:50:43 +00:00
|
|
|
|
[InlineData(new string[] { "--no-incremental", "-o", "myoutput", "-r", "myruntime", "-v", "diag", "/ArbitrarySwitchForMSBuild" },
|
|
|
|
|
"/t:Rebuild /p:OutputPath=myoutput /p:RuntimeIdentifier=myruntime /verbosity:diag /ArbitrarySwitchForMSBuild")]
|
2017-02-23 01:40:02 +00:00
|
|
|
|
public void MsbuildInvocationIsCorrect(string[] args, string expectedAdditionalArgs)
|
2017-02-14 18:41:58 +00:00
|
|
|
|
{
|
2017-02-23 01:40:02 +00:00
|
|
|
|
expectedAdditionalArgs = (string.IsNullOrEmpty(expectedAdditionalArgs) ? "" : $" {expectedAdditionalArgs}");
|
|
|
|
|
|
2017-02-14 19:38:01 +00:00
|
|
|
|
var msbuildPath = "<msbuildpath>";
|
2017-10-24 22:50:43 +00:00
|
|
|
|
var command = BuildCommand.FromArgs(args, msbuildPath);
|
|
|
|
|
|
|
|
|
|
command.SeparateRestoreCommand.Should().BeNull();
|
|
|
|
|
|
|
|
|
|
command.GetProcessStartInfo()
|
|
|
|
|
.Arguments.Should()
|
|
|
|
|
.Be($"{ExpectedPrefix} /restore /clp:Summary{expectedAdditionalArgs}");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Theory]
|
|
|
|
|
[InlineData(new string[] { "-f", "tfm" }, "/t:Restore", "/t:Build /p:TargetFramework=tfm")]
|
|
|
|
|
[InlineData(new string[] { "-o", "myoutput", "-f", "tfm", "-v", "diag", "/ArbitrarySwitchForMSBuild" },
|
|
|
|
|
"/t:Restore /p:OutputPath=myoutput /verbosity:diag /ArbitrarySwitchForMSBuild",
|
|
|
|
|
"/t:Build /p:OutputPath=myoutput /p:TargetFramework=tfm /verbosity:diag /ArbitrarySwitchForMSBuild")]
|
|
|
|
|
public void MsbuildInvocationIsCorrectForSeparateRestore(
|
|
|
|
|
string[] args,
|
|
|
|
|
string expectedAdditionalArgsForRestore,
|
|
|
|
|
string expectedAdditionalArgs)
|
|
|
|
|
{
|
|
|
|
|
expectedAdditionalArgs = (string.IsNullOrEmpty(expectedAdditionalArgs) ? "" : $" {expectedAdditionalArgs}");
|
|
|
|
|
|
|
|
|
|
var msbuildPath = "<msbuildpath>";
|
|
|
|
|
var command = BuildCommand.FromArgs(args, msbuildPath);
|
|
|
|
|
|
|
|
|
|
command.SeparateRestoreCommand.GetProcessStartInfo()
|
|
|
|
|
.Arguments.Should()
|
|
|
|
|
.Be($"{ExpectedPrefix} {expectedAdditionalArgsForRestore}");
|
|
|
|
|
|
|
|
|
|
command.GetProcessStartInfo()
|
|
|
|
|
.Arguments.Should()
|
|
|
|
|
.Be($"{ExpectedPrefix} /nologo /clp:Summary{expectedAdditionalArgs}");
|
|
|
|
|
|
2017-02-14 18:41:58 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|