-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommandLineTools.cs
55 lines (52 loc) · 2.12 KB
/
CommandLineTools.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
namespace HostApi;
/// <summary>
/// Command line extensions. Facilitate the use of the command line.
/// </summary>
[ExcludeFromCodeCoverage]
public static class CommandLineTools
{
/// <summary>
/// Creates a new command line from the executable file path and arguments.
/// <example>
/// <code>
/// "whoami".AsCommandLine().Run().EnsureSuccess();
/// </code>
/// </example>
/// </summary>
/// <param name="executable">Path to the executable file.</param>
/// <param name="args">Command line arguments.</param>
/// <returns>Created command line.</returns>
public static CommandLine AsCommandLine(this string executable, params string[] args) =>
new(executable, args);
/// <summary>
/// Customizes a command line by overriding its parameters as command line arguments and others.
/// <example>
/// <code>
/// var test = new DotNetTest().WithFilter("Integration!=true");
///
///
/// test.Customize(cmd =>
/// cmd.WithArgs("dotcover")
/// .AddArgs(cmd.Args)
/// .AddArgs(
/// $"--dcOutput=dotCover.dcvr",
/// "--dcFilters=+:module=MyLib;+:module=MyLib2",
/// "--dcAttributeFilters=System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage"))
/// .Build().EnsureSuccess();
/// </code>
/// </example>
/// </summary>
/// <param name="baseCommandLine">The base command for customization.</param>
/// <param name="customizer">Customization function.</param>
/// <returns>Customized command line.</returns>
public static ICommandLine Customize(this ICommandLine baseCommandLine, Func<CommandLine, ICommandLine> customizer) =>
new CustomCommandLine(baseCommandLine, customizer);
private class CustomCommandLine(ICommandLine baseCommandLine, Func<CommandLine, ICommandLine> customizer) : ICommandLine
{
public IStartInfo GetStartInfo(IHost host)
{
if (host == null) throw new ArgumentNullException(nameof(host));
return customizer(new CommandLine(baseCommandLine.GetStartInfo(host))).GetStartInfo(host);
}
}
}