
This commit adds a few simple unit tests to cover the `dotnet complete` command. It only checks the top-level output, integration with the `new` command from the templating engine, and the custom `nuget` command parser that is solely intended for use with `dotnet complete`.
73 lines
No EOL
2 KiB
C#
73 lines
No EOL
2 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 System;
|
|
using System.Linq;
|
|
using Microsoft.DotNet.Cli.CommandLine;
|
|
using Microsoft.DotNet.Cli.Utils;
|
|
|
|
namespace Microsoft.DotNet.Cli
|
|
{
|
|
public class CompleteCommand
|
|
{
|
|
public static int Run(string[] args)
|
|
{
|
|
return RunWithReporter(args, Reporter.Output);
|
|
}
|
|
|
|
public static int RunWithReporter(string [] args, IReporter reporter)
|
|
{
|
|
if (reporter == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(reporter));
|
|
}
|
|
|
|
try
|
|
{
|
|
DebugHelper.HandleDebugSwitch(ref args);
|
|
|
|
// get the parser for the current subcommand
|
|
var parser = Parser.Instance;
|
|
|
|
// parse the arguments
|
|
var result = parser.ParseFrom("dotnet complete", args);
|
|
|
|
var complete = result["dotnet"]["complete"];
|
|
|
|
var suggestions = Suggestions(complete);
|
|
|
|
foreach (var suggestion in suggestions)
|
|
{
|
|
reporter.WriteLine(suggestion);
|
|
}
|
|
}
|
|
catch (Exception)
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
private static string[] Suggestions(AppliedOption complete)
|
|
{
|
|
var input = complete.Arguments.SingleOrDefault() ?? "";
|
|
|
|
var positionOption = complete.AppliedOptions.SingleOrDefault(a => a.Name == "position");
|
|
if (positionOption != null)
|
|
{
|
|
var position = positionOption.Value<int>();
|
|
|
|
if (position > input.Length)
|
|
{
|
|
input += " ";
|
|
}
|
|
}
|
|
|
|
var result = Parser.Instance.Parse(input);
|
|
|
|
return result.Suggestions()
|
|
.ToArray();
|
|
}
|
|
}
|
|
} |