// 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.Clean; using FluentAssertions; using Xunit; using System; namespace Microsoft.DotNet.Cli.MSBuild.Tests { public class GivenDotnetCleanInvocation { const string ExpectedPrefix = "exec -maxcpucount -verbosity:m -verbosity:normal -target:Clean"; [Fact] public void ItAddsProjectToMsbuildInvocation() { var msbuildPath = ""; CleanCommand.FromArgs(new string[] { "" }, msbuildPath) .GetProcessStartInfo().Arguments.Should().Be("exec -maxcpucount -verbosity:m -verbosity:normal -target:Clean"); } [Theory] [InlineData(new string[] { }, "")] [InlineData(new string[] { "-o", "" }, @"-property:OutputPath=\""\""")] [InlineData(new string[] { "--output", "" }, @"-property:OutputPath=\""\""")] [InlineData(new string[] { "-f", "" }, @"-property:TargetFramework=\""\""")] [InlineData(new string[] { "--framework", "" }, @"-property:TargetFramework=\""\""")] [InlineData(new string[] { "-c", "" }, @"-property:Configuration=\""\""")] [InlineData(new string[] { "--configuration", "" }, @"-property:Configuration=\""\""")] [InlineData(new string[] { "-v", "diag" }, "-verbosity:diag")] [InlineData(new string[] { "--verbosity", "diag" }, "-verbosity:diag")] public void MsbuildInvocationIsCorrect(string[] args, string expectedAdditionalArgs) { expectedAdditionalArgs = (string.IsNullOrEmpty(expectedAdditionalArgs) ? "" : $" {expectedAdditionalArgs}"); var msbuildPath = ""; CleanCommand.FromArgs(args, msbuildPath) .GetProcessStartInfo().Arguments.Should().Be($"{ExpectedPrefix}{expectedAdditionalArgs}"); } } }