2017-03-02 21:04:03 -08: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.Cache ;
2017-02-22 10:43:05 -08:00
using FluentAssertions ;
using Xunit ;
using System ;
2017-02-22 15:49:39 -08:00
using System.Linq ;
using System.IO ;
2017-02-22 10:43:05 -08:00
namespace Microsoft.DotNet.Cli.MSBuild.Tests
{
public class GivenDotnetCacheInvocation
{
2017-02-22 15:49:39 -08:00
const string ExpectedPrefix = "exec <msbuildpath> /m /v:m /t:ComposeCache <project>" ;
static readonly string [ ] ArgsPrefix = { "-e" , "<project>" } ;
[Theory]
[InlineData("-e")]
[InlineData("--entries")]
public void ItAddsProjectToMsbuildInvocation ( string optionName )
{
var msbuildPath = "<msbuildpath>" ;
string [ ] args = new string [ ] { optionName , "<project>" } ;
CacheCommand . FromArgs ( args , msbuildPath )
. GetProcessStartInfo ( ) . Arguments . Should ( ) . Be ( $"{ExpectedPrefix}" ) ;
}
[Theory]
2017-03-09 17:20:00 -08:00
[InlineData(new string[] { "-f" , "<tfm>" } , @"/p:TargetFramework=<tfm>" ) ]
[InlineData(new string[] { "--framework" , "<tfm>" } , @"/p:TargetFramework=<tfm>" ) ]
[InlineData(new string[] { "-r" , "<rid>" } , @"/p:RuntimeIdentifier=<rid>" ) ]
[InlineData(new string[] { "--runtime" , "<rid>" } , @"/p:RuntimeIdentifier=<rid>" ) ]
2017-02-22 15:49:39 -08:00
public void MsbuildInvocationIsCorrect ( string [ ] args , string expectedAdditionalArgs )
2017-02-22 10:43:05 -08:00
{
2017-02-22 15:49:39 -08:00
args = ArgsPrefix . Concat ( args ) . ToArray ( ) ;
expectedAdditionalArgs = ( string . IsNullOrEmpty ( expectedAdditionalArgs ) ? "" : $" {expectedAdditionalArgs}" ) ;
var msbuildPath = "<msbuildpath>" ;
CacheCommand . FromArgs ( args , msbuildPath )
. GetProcessStartInfo ( ) . Arguments . Should ( ) . Be ( $"{ExpectedPrefix}{expectedAdditionalArgs}" ) ;
}
[Theory]
[InlineData("-o")]
[InlineData("--output")]
public void ItAddsOutputPathToMsBuildInvocation ( string optionName )
{
string path = "/some/path" ;
var args = ArgsPrefix . Concat ( new string [ ] { optionName , path } ) . ToArray ( ) ;
2017-02-22 10:43:05 -08:00
var msbuildPath = "<msbuildpath>" ;
2017-02-22 15:49:39 -08:00
CacheCommand . FromArgs ( args , msbuildPath )
. GetProcessStartInfo ( ) . Arguments . Should ( ) . Be ( $"{ExpectedPrefix} /p:ComposeDir={Path.GetFullPath(path)}" ) ;
2017-02-22 10:43:05 -08:00
}
}
}