File: CommandFactoryTests\GivenARootedCommandResolver.cs
Web Access
Project: ..\..\..\test\dotnet.Tests\dotnet.Tests.csproj (dotnet.Tests)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
#nullable disable
 
using Microsoft.DotNet.Cli.CommandFactory.CommandResolution;
 
namespace Microsoft.DotNet.Tests
{
    public class GivenARootedCommandResolver
    {
        [Fact]
        public void It_returns_null_when_CommandName_is_null()
        {
            var rootedCommandResolver = new RootedCommandResolver();
 
            var commandResolverArguments = new CommandResolverArguments()
            {
                CommandName = null,
                CommandArguments = null
            };
 
            var result = rootedCommandResolver.Resolve(commandResolverArguments);
 
            result.Should().BeNull();
        }
 
        [Fact]
        public void It_returns_null_when_CommandName_is_not_rooted()
        {
            var rootedCommandResolver = new RootedCommandResolver();
 
            var commandResolverArguments = new CommandResolverArguments()
            {
                CommandName = "some/relative/path",
                CommandArguments = null
            };
 
            var result = rootedCommandResolver.Resolve(commandResolverArguments);
 
            result.Should().BeNull();
        }
 
        [Fact]
        public void It_returns_a_CommandSpec_with_CommandName_as_Path_when_CommandName_is_rooted()
        {
            var rootedCommandResolver = new RootedCommandResolver();
 
            var commandResolverArguments = new CommandResolverArguments()
            {
                CommandName = "/some/rooted/path",
                CommandArguments = null
            };
 
            var result = rootedCommandResolver.Resolve(commandResolverArguments);
 
            result.Should().NotBeNull();
            result.Path.Should().Be(commandResolverArguments.CommandName);
        }
 
        [Fact]
        public void It_escapes_CommandArguments_when_returning_a_CommandSpec()
        {
            var rootedCommandResolver = new RootedCommandResolver();
 
            var commandResolverArguments = new CommandResolverArguments()
            {
                CommandName = "/some/rooted/path",
                CommandArguments = new[] { "arg with space" }
            };
 
            var result = rootedCommandResolver.Resolve(commandResolverArguments);
 
            result.Should().NotBeNull();
            result.Path.Should().Be(commandResolverArguments.CommandName);
 
            result.Args.Should().Be("\"arg with space\"");
        }
 
        [Fact]
        public void It_returns_a_CommandSpec_with_Args_as_stringEmpty_when_returning_a_CommandSpec_and_CommandArguments_are_null()
        {
            var rootedCommandResolver = new RootedCommandResolver();
 
            var commandResolverArguments = new CommandResolverArguments()
            {
                CommandName = "/some/rooted/path",
                CommandArguments = null
            };
 
            var result = rootedCommandResolver.Resolve(commandResolverArguments);
 
            result.Should().NotBeNull();
            result.Path.Should().Be(commandResolverArguments.CommandName);
 
            result.Args.Should().Be(string.Empty);
        }
    }
}