-
Notifications
You must be signed in to change notification settings - Fork 269
/
Copy pathCommandLineHandler.cs
339 lines (287 loc) · 17.5 KB
/
CommandLineHandler.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System.Diagnostics.CodeAnalysis;
using System.Globalization;
using System.Reflection;
using System.Runtime.InteropServices;
using Microsoft.Testing.Platform.Extensions.CommandLine;
using Microsoft.Testing.Platform.Extensions.OutputDevice;
using Microsoft.Testing.Platform.Helpers;
using Microsoft.Testing.Platform.OutputDevice;
using Microsoft.Testing.Platform.Resources;
using Microsoft.Testing.Platform.Services;
using Microsoft.Testing.Platform.Tools;
namespace Microsoft.Testing.Platform.CommandLine;
internal sealed class CommandLineHandler : ICommandLineHandler, ICommandLineOptions, IOutputDeviceDataProducer
{
private static readonly TextOutputDeviceData EmptyText = new(string.Empty);
private readonly ITestApplicationModuleInfo _testApplicationModuleInfo;
private readonly IPlatformOutputDevice _platformOutputDevice;
private readonly IRuntimeFeature _runtimeFeature;
#if !NETCOREAPP
[SuppressMessage("CodeQuality", "IDE0052:RemoveVariable unread private members", Justification = "Used in netcoreapp")]
#endif
private readonly IEnvironment _environment;
#if NETCOREAPP
[SuppressMessage("CodeQuality", "IDE0052:RemoveVariable unread private members", Justification = "Used in netstandard")]
#endif
private readonly IProcessHandler _process;
public CommandLineHandler(CommandLineParseResult parseResult, IReadOnlyCollection<ICommandLineOptionsProvider> extensionsCommandLineOptionsProviders,
IReadOnlyCollection<ICommandLineOptionsProvider> systemCommandLineOptionsProviders, ITestApplicationModuleInfo testApplicationModuleInfo,
IRuntimeFeature runtimeFeature, IPlatformOutputDevice platformOutputDevice, IEnvironment environment, IProcessHandler process)
{
ParseResult = parseResult;
ExtensionsCommandLineOptionsProviders = extensionsCommandLineOptionsProviders;
SystemCommandLineOptionsProviders = systemCommandLineOptionsProviders;
CommandLineOptionsProviders = systemCommandLineOptionsProviders.Union(extensionsCommandLineOptionsProviders);
_testApplicationModuleInfo = testApplicationModuleInfo;
_runtimeFeature = runtimeFeature;
_platformOutputDevice = platformOutputDevice;
_environment = environment;
_process = process;
}
public IEnumerable<ICommandLineOptionsProvider> CommandLineOptionsProviders { get; }
public string Uid => nameof(CommandLineHandler);
public string Version => AppVersion.DefaultSemVer;
public string DisplayName => string.Empty;
public string Description => string.Empty;
internal IReadOnlyCollection<ICommandLineOptionsProvider> ExtensionsCommandLineOptionsProviders { get; }
internal IReadOnlyCollection<ICommandLineOptionsProvider> SystemCommandLineOptionsProviders { get; }
internal CommandLineParseResult ParseResult { get; }
public async Task PrintInfoAsync(ITool[]? availableTools = null)
{
// /!\ Info should not be localized as it serves debugging purposes.
await DisplayPlatformInfoAsync();
await _platformOutputDevice.DisplayAsync(this, EmptyText);
await DisplayBuiltInExtensionsInfoAsync();
await _platformOutputDevice.DisplayAsync(this, EmptyText);
List<IToolCommandLineOptionsProvider> toolExtensions = [];
List<ICommandLineOptionsProvider> nonToolExtensions = [];
foreach (ICommandLineOptionsProvider provider in ExtensionsCommandLineOptionsProviders)
{
if (provider is IToolCommandLineOptionsProvider toolProvider)
{
toolExtensions.Add(toolProvider);
}
else
{
nonToolExtensions.Add(provider);
}
}
await DisplayRegisteredExtensionsInfoAsync(nonToolExtensions);
await _platformOutputDevice.DisplayAsync(this, EmptyText);
await DisplayRegisteredToolsInfoAsync(availableTools, toolExtensions);
await _platformOutputDevice.DisplayAsync(this, EmptyText);
return;
async Task DisplayPlatformInfoAsync()
{
// Product title, do not translate.
await _platformOutputDevice.DisplayAsync(this, new TextOutputDeviceData("Microsoft Testing Platform:"));
// TODO: Replace Assembly with IAssembly
AssemblyInformationalVersionAttribute? version = Assembly.GetExecutingAssembly().GetCustomAttribute<AssemblyInformationalVersionAttribute>();
string versionInfo = version?.InformationalVersion ?? "Not Available";
await _platformOutputDevice.DisplayAsync(this, new TextOutputDeviceData($" Version: {versionInfo}"));
await _platformOutputDevice.DisplayAsync(this, new TextOutputDeviceData($" Dynamic Code Supported: {_runtimeFeature.IsDynamicCodeSupported}"));
// TODO: Replace RuntimeInformation with IRuntimeInformation
#if NETCOREAPP
string runtimeInformation = $"{RuntimeInformation.RuntimeIdentifier} - {RuntimeInformation.FrameworkDescription}";
#else
string runtimeInformation = $"{RuntimeInformation.FrameworkDescription}";
#endif
await _platformOutputDevice.DisplayAsync(this, new TextOutputDeviceData($" Runtime information: {runtimeInformation}"));
#if !NETCOREAPP
#pragma warning disable IL3000 // Avoid accessing Assembly file path when publishing as a single file, this branch run only in .NET Framework
string runtimeLocation = typeof(object).Assembly?.Location ?? "Not Found";
#pragma warning restore IL3000 // Avoid accessing Assembly file path when publishing as a single file
await _platformOutputDevice.DisplayAsync(this, new TextOutputDeviceData($" Runtime location: {runtimeLocation}"));
#endif
string? moduleName = _testApplicationModuleInfo.GetCurrentTestApplicationFullPath();
moduleName = RoslynString.IsNullOrEmpty(moduleName)
#if NETCOREAPP
? _environment.ProcessPath
#else
? _process.GetCurrentProcess().MainModule.FileName
#endif
: moduleName;
await _platformOutputDevice.DisplayAsync(this, new TextOutputDeviceData($" Test module: {moduleName}"));
}
async Task DisplayOptionsAsync(IEnumerable<CommandLineOption> options, int indentLevel)
{
string optionNameIndent = new(' ', indentLevel * 2);
string optionInfoIndent = new(' ', (indentLevel + 1) * 2);
foreach (CommandLineOption option in options.OrderBy(x => x.Name))
{
await _platformOutputDevice.DisplayAsync(this, new TextOutputDeviceData($"{optionNameIndent}--{option.Name}"));
if (option.Arity.Min == option.Arity.Max)
{
await _platformOutputDevice.DisplayAsync(this, new TextOutputDeviceData($"{optionInfoIndent}Arity: {option.Arity.Min}"));
}
else
{
string maxArityValue = option.Arity.Max == int.MaxValue ? "N" : $"{option.Arity.Max}";
await _platformOutputDevice.DisplayAsync(this, new TextOutputDeviceData($"{optionInfoIndent}Arity: {option.Arity.Min}..{maxArityValue}"));
}
await _platformOutputDevice.DisplayAsync(this, new TextOutputDeviceData($"{optionInfoIndent}Hidden: {option.IsHidden}"));
await _platformOutputDevice.DisplayAsync(this, new TextOutputDeviceData($"{optionInfoIndent}Description: {option.Description}"));
}
}
async Task DisplayProvidersAsync(IEnumerable<ICommandLineOptionsProvider> optionsProviders, int indentLevel)
{
string providerIdIndent = new(' ', indentLevel * 2);
string providerInfoIndent = new(' ', (indentLevel + 1) * 2);
foreach (IGrouping<string, ICommandLineOptionsProvider>? group in optionsProviders.GroupBy(x => x.Uid).OrderBy(x => x.Key))
{
bool isFirst = true;
foreach (ICommandLineOptionsProvider provider in group)
{
if (isFirst)
{
isFirst = false;
await _platformOutputDevice.DisplayAsync(this, new TextOutputDeviceData($"{providerIdIndent}{provider.Uid}"));
await _platformOutputDevice.DisplayAsync(this, new TextOutputDeviceData($"{providerInfoIndent}Name: {provider.DisplayName}"));
await _platformOutputDevice.DisplayAsync(this, new TextOutputDeviceData($"{providerInfoIndent}Version: {provider.Version}"));
await _platformOutputDevice.DisplayAsync(this, new TextOutputDeviceData($"{providerInfoIndent}Description: {provider.Description}"));
await _platformOutputDevice.DisplayAsync(this, new TextOutputDeviceData($"{providerInfoIndent}Options:"));
}
await DisplayOptionsAsync(provider.GetCommandLineOptions(), indentLevel + 2);
}
}
}
async Task DisplayBuiltInExtensionsInfoAsync()
{
await _platformOutputDevice.DisplayAsync(this, new TextOutputDeviceData("Built-in command line providers:"));
if (SystemCommandLineOptionsProviders.Count == 0)
{
await _platformOutputDevice.DisplayAsync(this, new TextOutputDeviceData(" There are no built-in command line providers."));
}
else
{
await DisplayProvidersAsync(SystemCommandLineOptionsProviders, 1);
}
}
async Task DisplayRegisteredExtensionsInfoAsync(List<ICommandLineOptionsProvider> nonToolExtensions)
{
await _platformOutputDevice.DisplayAsync(this, new TextOutputDeviceData("Registered command line providers:"));
if (nonToolExtensions.Count == 0)
{
await _platformOutputDevice.DisplayAsync(this, new TextOutputDeviceData(" There are no registered command line providers."));
}
else
{
await DisplayProvidersAsync(nonToolExtensions, 1);
}
}
async Task DisplayRegisteredToolsInfoAsync(ITool[]? availableTools, List<IToolCommandLineOptionsProvider> toolExtensions)
{
await _platformOutputDevice.DisplayAsync(this, new TextOutputDeviceData("Registered tools:"));
if (availableTools is null || availableTools.Length == 0)
{
await _platformOutputDevice.DisplayAsync(this, new TextOutputDeviceData(" There are no registered tools."));
}
else
{
var groupedToolExtensions = toolExtensions.GroupBy(x => x.ToolName).ToDictionary(x => x.Key, x => x.ToList());
foreach (ITool tool in availableTools.OrderBy(x => x.Uid))
{
await _platformOutputDevice.DisplayAsync(this, new TextOutputDeviceData($" {tool.Uid}"));
await _platformOutputDevice.DisplayAsync(this, new TextOutputDeviceData($" Command: {tool.Name}"));
await _platformOutputDevice.DisplayAsync(this, new TextOutputDeviceData($" Name: {tool.DisplayName}"));
await _platformOutputDevice.DisplayAsync(this, new TextOutputDeviceData($" Version: {tool.Version}"));
await _platformOutputDevice.DisplayAsync(this, new TextOutputDeviceData($" Description: {tool.Description}"));
await _platformOutputDevice.DisplayAsync(this, new TextOutputDeviceData(" Tool command line providers:"));
await DisplayProvidersAsync(groupedToolExtensions[tool.Name], 3);
}
}
}
}
public bool IsOptionSet(string optionName)
=> ParseResult?.IsOptionSet(optionName) == true;
public bool TryGetOptionArgumentList(string optionName, [NotNullWhen(true)] out string[]? arguments)
{
arguments = null;
return ParseResult is not null && ParseResult.TryGetOptionArgumentList(optionName, out arguments);
}
public Task<bool> IsEnabledAsync() => Task.FromResult(false);
public bool IsHelpInvoked() => IsOptionSet(PlatformCommandLineProvider.HelpOptionKey);
public bool IsInfoInvoked() => IsOptionSet(PlatformCommandLineProvider.InfoOptionKey);
public bool IsDotNetTestPipeInvoked() => IsOptionSet(PlatformCommandLineProvider.DotNetTestPipeOptionKey);
#pragma warning disable IDE0060 // Remove unused parameter, temporary we don't use it.
public async Task PrintHelpAsync(ITool[]? availableTools = null)
#pragma warning restore IDE0060 // Remove unused parameter
{
string applicationName = GetApplicationName(_testApplicationModuleInfo);
await PrintApplicationUsageAsync(applicationName);
// Temporary disabled, we don't remove the code because could be useful in future.
// PrintApplicationToolUsage(availableTools, applicationName);
await _platformOutputDevice.DisplayAsync(this, new TextOutputDeviceData(string.Empty));
// Local functions
static string GetApplicationName(ITestApplicationModuleInfo testApplicationModuleInfo)
=> testApplicationModuleInfo.IsAppHostOrSingleFileOrNativeAot
? Path.GetFileName(testApplicationModuleInfo.GetProcessPath())
: testApplicationModuleInfo.IsCurrentTestApplicationHostDotnetMuxer
? $"dotnet exec {Path.GetFileName(testApplicationModuleInfo.GetCurrentTestApplicationFullPath())}"
: PlatformResources.HelpTestApplicationRunner;
async Task<bool> PrintOptionsAsync(IEnumerable<ICommandLineOptionsProvider> optionProviders, int leftPaddingDepth, bool builtInOnly = false)
{
IEnumerable<CommandLineOption> options =
optionProviders
.SelectMany(provider => provider.GetCommandLineOptions())
.Where(option => !option.IsHidden)
.OrderBy(option => option.Name);
options = builtInOnly ? options.Where(option => option.IsBuiltIn) : options.Where(option => !option.IsBuiltIn);
if (!options.Any())
{
return false;
}
int maxOptionNameLength = options.Max(option => option.Name.Length);
foreach (CommandLineOption? option in options)
{
await _platformOutputDevice.DisplayAsync(this, new TextOutputDeviceData($"{new string(' ', leftPaddingDepth * 2)}--{option.Name}{new string(' ', maxOptionNameLength - option.Name.Length)} {option.Description}"));
}
return options.Any();
}
async Task PrintApplicationUsageAsync(string applicationName)
{
await _platformOutputDevice.DisplayAsync(this, new TextOutputDeviceData(string.Format(CultureInfo.InvariantCulture, PlatformResources.HelpApplicationUsage, applicationName)));
await _platformOutputDevice.DisplayAsync(this, EmptyText);
await _platformOutputDevice.DisplayAsync(this, new TextOutputDeviceData(PlatformResources.HelpExecuteTestApplication));
await _platformOutputDevice.DisplayAsync(this, EmptyText);
RoslynDebug.Assert(
!SystemCommandLineOptionsProviders.OfType<IToolCommandLineOptionsProvider>().Any(),
"System command line options should not have any tool option registered.");
await _platformOutputDevice.DisplayAsync(this, new TextOutputDeviceData(PlatformResources.HelpOptions));
await PrintOptionsAsync(SystemCommandLineOptionsProviders.Union(ExtensionsCommandLineOptionsProviders), 1, builtInOnly: true);
await _platformOutputDevice.DisplayAsync(this, EmptyText);
await _platformOutputDevice.DisplayAsync(this, new TextOutputDeviceData(PlatformResources.HelpExtensionOptions));
if (!await PrintOptionsAsync(ExtensionsCommandLineOptionsProviders.Where(provider => provider is not IToolCommandLineOptionsProvider), 1))
{
await _platformOutputDevice.DisplayAsync(this, new TextOutputDeviceData(PlatformResources.HelpNoExtensionRegistered));
}
await _platformOutputDevice.DisplayAsync(this, EmptyText);
}
// Temporary disabled, we don't remove the code because could be useful in future.
// void PrintApplicationToolUsage(ITool[]? availableTools, string applicationName)
// {
// _console.WriteLine($"Usage {applicationName} [tool-name] [tool-optionProviders]");
// _console.WriteLine();
// _console.WriteLine("Execute a .NET Test Application tool.");
// _console.WriteLine();
// _console.WriteLine("Tools:");
// var tools = availableTools
// ?.Where(tool => !tool.Hidden)
// .OrderBy(tool => tool.DisplayName)
// .ToList();
// if (tools is null || tools.Count == 0)
// {
// _console.WriteLine("No tools registered.");
// return;
// }
// int maxToolNameLength = tools.Max(tool => tool.Name.Length);
// foreach (ITool tool in tools)
// {
// _console.WriteLine($" {tool.Name}{new string(' ', maxToolNameLength - tool.Name.Length)} ({tool.DisplayName}): {tool.Description}");
// PrintOptions(ExtensionsCommandLineOptionsProviders.Where(provider => provider is IToolCommandLineOptionsProvider), 2);
// }
// }
}
}