2017-02-22 12:01:59 -08:00
using Microsoft.DotNet.Tools.Pack ;
2017-02-22 10:43:05 -08:00
using FluentAssertions ;
using Xunit ;
using System ;
2017-02-22 12:01:59 -08:00
using System.Linq ;
2017-02-22 10:43:05 -08:00
namespace Microsoft.DotNet.Cli.MSBuild.Tests
{
public class GivenDotnetPackInvocation
{
2017-02-22 12:01:59 -08:00
const string ExpectedPrefix = "exec <msbuildpath> /m /v:m /t:pack" ;
[Theory]
[InlineData(new string[] { } , "" ) ]
[InlineData(new string[] { "-o" , "<output>" } , "/p:PackageOutputPath=<output>" ) ]
[InlineData(new string[] { "--output" , "<output>" } , "/p:PackageOutputPath=<output>" ) ]
[InlineData(new string[] { "--no-build" } , "/p:NoBuild=true" ) ]
[InlineData(new string[] { "--include-symbols" } , "/p:IncludeSymbols=true" ) ]
[InlineData(new string[] { "--include-source" } , "/p:IncludeSource=true" ) ]
[InlineData(new string[] { "-c" , "<configuration>" } , "/p:Configuration=<configuration>" ) ]
[InlineData(new string[] { "--configuration" , "<configuration>" } , "/p:Configuration=<configuration>" ) ]
[InlineData(new string[] { "--version-suffix" , "<version-suffix>" } , "/p:VersionSuffix=<version-suffix>" ) ]
[InlineData(new string[] { "-s" } , "/p:Serviceable=true" ) ]
[InlineData(new string[] { "--serviceable" } , "/p:Serviceable=true" ) ]
[InlineData(new string[] { "-v" , "<verbosity>" } , @"/verbosity:<verbosity>" ) ]
[InlineData(new string[] { "--verbosity" , "<verbosity>" } , @"/verbosity:<verbosity>" ) ]
[InlineData(new string[] { "<project>" } , "<project>" ) ]
public void MsbuildInvocationIsCorrect ( string [ ] args , string expectedAdditionalArgs )
2017-02-22 10:43:05 -08:00
{
2017-02-22 12:01:59 -08:00
expectedAdditionalArgs = ( string . IsNullOrEmpty ( expectedAdditionalArgs ) ? "" : $" {expectedAdditionalArgs}" ) ;
2017-02-22 10:43:05 -08:00
var msbuildPath = "<msbuildpath>" ;
2017-02-22 12:01:59 -08:00
PackCommand . FromArgs ( args , msbuildPath )
. GetProcessStartInfo ( ) . Arguments . Should ( ) . Be ( $"{ExpectedPrefix}{expectedAdditionalArgs}" ) ;
2017-02-22 10:43:05 -08:00
}
}
}