-
Notifications
You must be signed in to change notification settings - Fork 430
Expand file tree
/
Copy pathPowershellProviderTests.cs
More file actions
62 lines (52 loc) · 1.72 KB
/
Copy pathPowershellProviderTests.cs
File metadata and controls
62 lines (52 loc) · 1.72 KB
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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
#nullable disable
namespace System.CommandLine.StaticCompletions.Tests;
using System.CommandLine.StaticCompletions.Shells;
using EmptyFiles;
public class PowershellProviderTests(ITestOutputHelper log)
{
private IShellProvider provider = new PowerShellShellProvider();
[Fact]
public async Task GenericCompletions()
{
await provider.Verify(new("mycommand"), log);
}
[Fact]
public async Task SimpleOptionCompletion()
{
await provider.Verify(new("mycommand") {
new Option<string>("--name")
}, log);
}
[Fact]
public async Task SubcommandAndOptionInTopLevelList()
{
await provider.Verify(new("mycommand") {
new Option<string>("--name"),
new Command("subcommand")
}, log);
}
[Fact]
public async Task NestedSubcommandCompletion()
{
await provider.Verify(new("mycommand") {
new Command("subcommand") {
new Command("nested")
}
}, log);
}
[Fact]
public async Task DynamicCompletionsGeneration()
{
var dynamicArg = new Argument<string>("target") { IsDynamic = true };
await provider.Verify(new("mycommand") { dynamicArg }, log);
}
[Fact]
public async Task DynamicCompletionsViaSubcommand()
{
var subcommandProvider = new PowerShellShellProvider { Invocation = CompletionInvocation.Subcommand() };
var dynamicArg = new Argument<string>("target") { IsDynamic = true };
await subcommandProvider.Verify(new("mycommand") { dynamicArg }, log);
}
}