mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-16 08:52:50 +08:00
71 lines
2.4 KiB
C#
71 lines
2.4 KiB
C#
namespace Spectre.Console.Tests.Unit.Cli;
|
|
|
|
public sealed partial class CommandAppTests
|
|
{
|
|
public sealed class Remaining
|
|
{
|
|
[Fact]
|
|
public void Should_Register_Remaining_Parsed_Arguments_With_Context()
|
|
{
|
|
// Given
|
|
var app = new CommandAppTester();
|
|
app.Configure(config =>
|
|
{
|
|
config.PropagateExceptions();
|
|
config.AddBranch<AnimalSettings>("animal", animal =>
|
|
{
|
|
animal.AddCommand<DogCommand>("dog");
|
|
});
|
|
});
|
|
|
|
// When
|
|
var result = app.Run(new[]
|
|
{
|
|
"animal", "4", "dog", "12", "--",
|
|
"--foo", "bar", "--foo", "baz",
|
|
"-bar", "\"baz\"", "qux",
|
|
"foo bar baz qux",
|
|
});
|
|
|
|
// Then
|
|
result.Context.Remaining.Parsed.Count.ShouldBe(4);
|
|
result.Context.ShouldHaveRemainingArgument("foo", values: new[] { "bar", "baz" });
|
|
result.Context.ShouldHaveRemainingArgument("b", values: new[] { (string)null });
|
|
result.Context.ShouldHaveRemainingArgument("a", values: new[] { (string)null });
|
|
result.Context.ShouldHaveRemainingArgument("r", values: new[] { (string)null });
|
|
}
|
|
|
|
[Fact]
|
|
public void Should_Register_Remaining_Raw_Arguments_With_Context()
|
|
{
|
|
// Given
|
|
var app = new CommandAppTester();
|
|
app.Configure(config =>
|
|
{
|
|
config.PropagateExceptions();
|
|
config.AddBranch<AnimalSettings>("animal", animal =>
|
|
{
|
|
animal.AddCommand<DogCommand>("dog");
|
|
});
|
|
});
|
|
|
|
// When
|
|
var result = app.Run(new[]
|
|
{
|
|
"animal", "4", "dog", "12", "--",
|
|
"--foo", "bar", "-bar", "\"baz\"", "qux",
|
|
"foo bar baz qux",
|
|
});
|
|
|
|
// Then
|
|
result.Context.Remaining.Raw.Count.ShouldBe(6);
|
|
result.Context.Remaining.Raw[0].ShouldBe("--foo");
|
|
result.Context.Remaining.Raw[1].ShouldBe("bar");
|
|
result.Context.Remaining.Raw[2].ShouldBe("-bar");
|
|
result.Context.Remaining.Raw[3].ShouldBe("baz");
|
|
result.Context.Remaining.Raw[4].ShouldBe("qux");
|
|
result.Context.Remaining.Raw[5].ShouldBe("foo bar baz qux");
|
|
}
|
|
}
|
|
}
|