forked from dotnet/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCommandObjectTests.cs
More file actions
51 lines (43 loc) · 1.78 KB
/
CommandObjectTests.cs
File metadata and controls
51 lines (43 loc) · 1.78 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
// 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;
using Microsoft.DotNet.Cli.CommandFactory.CommandResolution;
using Microsoft.DotNet.Cli.Utils;
namespace Microsoft.DotNet.Tests
{
public class CommandObjectTests : SdkTest
{
public CommandObjectTests(ITestOutputHelper output) : base(output)
{
}
[Fact]
public void WhenItCannotResolveCommandItThrows()
{
Action a = () => { CommandFactoryUsingResolver.Create(new ResolveNothingCommandResolverPolicy(), "non-exist-command", Array.Empty<string>()); };
a.Should().Throw<CommandUnknownException>();
}
[Fact]
public void WhenItCannotResolveCommandButCommandIsInListOfKnownToolsItThrows()
{
Action a = () => { CommandFactoryUsingResolver.Create(new ResolveNothingCommandResolverPolicy(), "non-exist-command", Array.Empty<string>()); };
a.Should().Throw<CommandUnknownException>();
}
private class ResolveNothingCommandResolverPolicy : ICommandResolverPolicy
{
public CompositeCommandResolver CreateCommandResolver(string currentWorkingDirectory = null)
{
var compositeCommandResolver = new CompositeCommandResolver();
compositeCommandResolver.AddCommandResolver(new ResolveNothingCommandResolver());
return compositeCommandResolver;
}
}
private class ResolveNothingCommandResolver : ICommandResolver
{
public CommandSpec Resolve(CommandResolverArguments arguments)
{
return null;
}
}
}
}