// 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.Pack; using FluentAssertions; using Xunit; using System; using System.Linq; namespace Microsoft.DotNet.Cli.MSBuild.Tests { public class GivenDotnetPackInvocation { const string ExpectedPrefix = "exec -maxcpucount -verbosity:m -restore -target:pack"; const string ExpectedNoBuildPrefix = "exec -maxcpucount -verbosity:m -target:pack"; [Theory] [InlineData(new string[] { }, "")] [InlineData(new string[] { "-o", "" }, "-property:PackageOutputPath=")] [InlineData(new string[] { "--output", "" }, "-property:PackageOutputPath=")] [InlineData(new string[] { "--no-build" }, "-property:NoBuild=true")] [InlineData(new string[] { "--include-symbols" }, "-property:IncludeSymbols=true")] [InlineData(new string[] { "--include-source" }, "-property:IncludeSource=true")] [InlineData(new string[] { "-c", "" }, "-property:Configuration=")] [InlineData(new string[] { "--configuration", "" }, "-property:Configuration=")] [InlineData(new string[] { "--version-suffix", "" }, "-property:VersionSuffix=")] [InlineData(new string[] { "-s" }, "-property:Serviceable=true")] [InlineData(new string[] { "--serviceable" }, "-property:Serviceable=true")] [InlineData(new string[] { "-v", "diag" }, "-verbosity:diag")] [InlineData(new string[] { "--verbosity", "diag" }, "-verbosity:diag")] [InlineData(new string[] { "" }, "")] public void MsbuildInvocationIsCorrect(string[] args, string expectedAdditionalArgs) { expectedAdditionalArgs = (string.IsNullOrEmpty(expectedAdditionalArgs) ? "" : $" {expectedAdditionalArgs}"); var msbuildPath = ""; var command = PackCommand.FromArgs(args, msbuildPath); var expectedPrefix = args.FirstOrDefault() == "--no-build" ? ExpectedNoBuildPrefix : ExpectedPrefix; command.SeparateRestoreCommand.Should().BeNull(); command.GetProcessStartInfo().Arguments.Should().Be($"{expectedPrefix}{expectedAdditionalArgs}"); } } }