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