806d5a2589
* Implement dotnet list projects * Address PR comments * Fix build breaks
182 lines
6.7 KiB
C#
182 lines
6.7 KiB
C#
// 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 FluentAssertions;
|
|
using Microsoft.DotNet.Cli.Sln.Internal;
|
|
using Microsoft.DotNet.Tools.Test.Utilities;
|
|
using System;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using Xunit;
|
|
|
|
namespace Microsoft.DotNet.Cli.List.Proj.Tests
|
|
{
|
|
public class GivenDotnetListProj : TestBase
|
|
{
|
|
private const string HelpText = @".NET Projects in Solution viewer
|
|
|
|
Usage: dotnet list <PROJECT_OR_SOLUTION> projects [options]
|
|
|
|
Arguments:
|
|
<PROJECT_OR_SOLUTION> The project or solution to operation on. If a file is not specified, the current directory is searched.
|
|
|
|
Options:
|
|
-h|--help Show help information";
|
|
|
|
[Theory]
|
|
[InlineData("--help")]
|
|
[InlineData("-h")]
|
|
public void WhenHelpOptionIsPassedItPrintsUsage(string helpArg)
|
|
{
|
|
var cmd = new DotnetCommand()
|
|
.ExecuteWithCapturedOutput($"list projects {helpArg}");
|
|
cmd.Should().Pass();
|
|
cmd.StdOut.Should().Contain(HelpText);
|
|
}
|
|
|
|
[Theory]
|
|
[InlineData("")]
|
|
[InlineData("unknownCommandName")]
|
|
public void WhenNoCommandIsPassedItPrintsError(string commandName)
|
|
{
|
|
var cmd = new DotnetCommand()
|
|
.ExecuteWithCapturedOutput($"list {commandName}");
|
|
cmd.Should().Fail();
|
|
cmd.StdErr.Should().Contain("Required command was not provided.");
|
|
}
|
|
|
|
[Fact]
|
|
public void WhenTooManyArgumentsArePassedItPrintsError()
|
|
{
|
|
var cmd = new DotnetCommand()
|
|
.ExecuteWithCapturedOutput("list one.sln two.sln three.sln projects");
|
|
cmd.Should().Fail();
|
|
cmd.StdErr.Should().Contain("Unrecognized command or argument 'two.sln'");
|
|
}
|
|
|
|
[Theory]
|
|
[InlineData("idontexist.sln")]
|
|
[InlineData("ihave?invalidcharacters.sln")]
|
|
[InlineData("ihaveinv@lidcharacters.sln")]
|
|
[InlineData("ihaveinvalid/characters")]
|
|
[InlineData("ihaveinvalidchar\\acters")]
|
|
public void WhenNonExistingSolutionIsPassedItPrintsErrorAndUsage(string solutionName)
|
|
{
|
|
var cmd = new DotnetCommand()
|
|
.ExecuteWithCapturedOutput($"list {solutionName} projects");
|
|
cmd.Should().Fail();
|
|
cmd.StdErr.Should().Contain($"Could not find solution or directory `{solutionName}`");
|
|
cmd.StdOut.Should().Contain(HelpText);
|
|
}
|
|
|
|
[Fact]
|
|
public void WhenInvalidSolutionIsPassedItPrintsErrorAndUsage()
|
|
{
|
|
var projectDirectory = TestAssets
|
|
.Get("InvalidSolution")
|
|
.CreateInstance()
|
|
.WithSourceFiles()
|
|
.Root
|
|
.FullName;
|
|
|
|
var cmd = new DotnetCommand()
|
|
.WithWorkingDirectory(projectDirectory)
|
|
.ExecuteWithCapturedOutput("list InvalidSolution.sln projects");
|
|
cmd.Should().Fail();
|
|
cmd.StdErr.Should().Contain("Invalid solution `InvalidSolution.sln`");
|
|
cmd.StdOut.Should().Contain(HelpText);
|
|
}
|
|
|
|
[Fact]
|
|
public void WhenInvalidSolutionIsFoundItPrintsErrorAndUsage()
|
|
{
|
|
var projectDirectory = TestAssets
|
|
.Get("InvalidSolution")
|
|
.CreateInstance()
|
|
.WithSourceFiles()
|
|
.Root
|
|
.FullName;
|
|
|
|
var solutionFullPath = Path.Combine(projectDirectory, "InvalidSolution.sln");
|
|
var cmd = new DotnetCommand()
|
|
.WithWorkingDirectory(projectDirectory)
|
|
.ExecuteWithCapturedOutput("list projects");
|
|
cmd.Should().Fail();
|
|
cmd.StdErr.Should().Contain($"Invalid solution `{solutionFullPath}`");
|
|
cmd.StdOut.Should().Contain(HelpText);
|
|
}
|
|
|
|
[Fact]
|
|
public void WhenNoSolutionExistsInTheDirectoryItPrintsErrorAndUsage()
|
|
{
|
|
var projectDirectory = TestAssets
|
|
.Get("TestAppWithSlnAndCsprojFiles")
|
|
.CreateInstance()
|
|
.WithSourceFiles()
|
|
.Root
|
|
.FullName;
|
|
|
|
var solutionDir = Path.Combine(projectDirectory, "App");
|
|
var cmd = new DotnetCommand()
|
|
.WithWorkingDirectory(solutionDir)
|
|
.ExecuteWithCapturedOutput("list projects");
|
|
cmd.Should().Fail();
|
|
cmd.StdErr.Should().Contain($"Specified solution file {solutionDir + Path.DirectorySeparatorChar} does not exist, or there is no solution file in the directory");
|
|
cmd.StdOut.Should().Contain(HelpText);
|
|
}
|
|
|
|
[Fact]
|
|
public void WhenMoreThanOneSolutionExistsInTheDirectoryItPrintsErrorAndUsage()
|
|
{
|
|
var projectDirectory = TestAssets
|
|
.Get("TestAppWithMultipleSlnFiles")
|
|
.CreateInstance()
|
|
.WithSourceFiles()
|
|
.Root
|
|
.FullName;
|
|
|
|
var cmd = new DotnetCommand()
|
|
.WithWorkingDirectory(projectDirectory)
|
|
.ExecuteWithCapturedOutput("list projects");
|
|
cmd.Should().Fail();
|
|
cmd.StdErr.Should().Contain($"Found more than one solution file in {projectDirectory + Path.DirectorySeparatorChar}. Please specify which one to use.");
|
|
cmd.StdOut.Should().Contain(HelpText);
|
|
}
|
|
|
|
[Fact]
|
|
public void WhenNoProjectReferencesArePresentInTheSolutionItPrintsANoProjectMessage()
|
|
{
|
|
var projectDirectory = TestAssets
|
|
.Get("SlnFileWithNoProjectReferences")
|
|
.CreateInstance()
|
|
.WithSourceFiles()
|
|
.Root
|
|
.FullName;
|
|
|
|
var cmd = new DotnetCommand()
|
|
.WithWorkingDirectory(projectDirectory)
|
|
.ExecuteWithCapturedOutput("list projects");
|
|
cmd.Should().Pass();
|
|
cmd.StdOut.Should().Contain("No projects found in the solution.");
|
|
}
|
|
|
|
[Fact]
|
|
public void WhenProjectReferencesArePresentInTheSolutionItListsThem()
|
|
{
|
|
var projectDirectory = TestAssets
|
|
.Get("TestAppWithSlnAndExistingCsprojReferences")
|
|
.CreateInstance()
|
|
.WithSourceFiles()
|
|
.Root
|
|
.FullName;
|
|
|
|
var cmd = new DotnetCommand()
|
|
.WithWorkingDirectory(projectDirectory)
|
|
.ExecuteWithCapturedOutput("list projects");
|
|
cmd.Should().Pass();
|
|
cmd.StdOut.Should().Contain("Project reference(s)");
|
|
cmd.StdOut.Should().Contain(@"App\App.csproj");
|
|
cmd.StdOut.Should().Contain(@"Lib\Lib.csproj");
|
|
}
|
|
}
|
|
}
|