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
|
|
|
|
|
{
|
2018-04-02 22:14:32 +00:00
|
|
|
|
const string ExpectedPrefix = "exec <msbuildpath> -maxcpucount -verbosity:m -restore -target:pack";
|
|
|
|
|
const string ExpectedNoBuildPrefix = "exec <msbuildpath> -maxcpucount -verbosity:m -target:pack";
|
2017-02-22 20:01:59 +00:00
|
|
|
|
|
|
|
|
|
[Theory]
|
|
|
|
|
[InlineData(new string[] { }, "")]
|
2018-04-26 17:53:54 +00:00
|
|
|
|
[InlineData(new string[] { "-o", "<packageoutputpath>" }, @"-property:PackageOutputPath=\""<packageoutputpath>\""")]
|
|
|
|
|
[InlineData(new string[] { "--output", "<packageoutputpath>" }, @"-property:PackageOutputPath=\""<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", "<config>" }, @"-property:Configuration=\""<config>\""")]
|
|
|
|
|
[InlineData(new string[] { "--configuration", "<config>" }, @"-property:Configuration=\""<config>\""")]
|
|
|
|
|
[InlineData(new string[] { "--version-suffix", "<versionsuffix>" }, @"-property:VersionSuffix=\""<versionsuffix>\""")]
|
|
|
|
|
[InlineData(new string[] { "-s" }, @"-property:Serviceable=\""true\""")]
|
|
|
|
|
[InlineData(new string[] { "--serviceable" }, @"-property:Serviceable=\""true\""")]
|
2018-04-02 21:44:43 +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-10-24 22:50:43 +00:00
|
|
|
|
var command = PackCommand.FromArgs(args, msbuildPath);
|
2017-11-28 05:01:26 +00:00
|
|
|
|
var expectedPrefix = args.FirstOrDefault() == "--no-build" ? ExpectedNoBuildPrefix : ExpectedPrefix;
|
2017-10-24 22:50:43 +00:00
|
|
|
|
|
|
|
|
|
command.SeparateRestoreCommand.Should().BeNull();
|
2017-11-28 05:01:26 +00:00
|
|
|
|
command.GetProcessStartInfo().Arguments.Should().Be($"{expectedPrefix}{expectedAdditionalArgs}");
|
2017-02-22 18:43:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|