-
Notifications
You must be signed in to change notification settings - Fork 390
/
Copy pathErrorReportingSubsystemTests.cs
84 lines (67 loc) · 3.2 KB
/
ErrorReportingSubsystemTests.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
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System.CommandLine.Parsing;
using FluentAssertions;
using Xunit;
namespace System.CommandLine.Subsystems.Tests;
public class ErrorReportingSubsystemTests
{
[Fact]
public void Report_when_single_error_writes_to_console_hack()
{
var error = new CliDiagnostic(new("", "", "a sweet error message", CliDiagnosticSeverity.Warning, null), []);
var errors = new List<CliDiagnostic> { error };
var errorSubsystem = new ErrorReportingSubsystem();
var consoleHack = new ConsoleHack().RedirectToBuffer(true);
errorSubsystem.Report(consoleHack, errors);
consoleHack.GetBuffer().Trim().Should().Be(error.Message);
}
[Fact]
public void Report_when_multiple_error_writes_to_console_hack()
{
var error = new CliDiagnostic(new("", "", "a sweet error message", CliDiagnosticSeverity.Warning, null), []);
var anotherError = new CliDiagnostic(new("", "", "another sweet error message", CliDiagnosticSeverity.Warning, null), []);
var errors = new List<CliDiagnostic> { error, anotherError };
var errorSubsystem = new ErrorReportingSubsystem();
var consoleHack = new ConsoleHack().RedirectToBuffer(true);
errorSubsystem.Report(consoleHack, errors);
consoleHack.GetBuffer().Trim().Should().Be($"{error.Message}{Environment.NewLine}{anotherError.Message}");
}
[Fact]
public void Report_when_no_errors_writes_nothing_to_console_hack()
{
var errors = new List<CliDiagnostic> { };
var errorSubsystem = new ErrorReportingSubsystem();
var consoleHack = new ConsoleHack().RedirectToBuffer(true);
errorSubsystem.Report(consoleHack, errors);
consoleHack.GetBuffer().Trim().Should().Be("");
}
[Theory]
[InlineData("-x")]
[InlineData("-non_existant_option")]
public void GetIsActivated_GivenInvalidInput_SubsystemIsActive(string input)
{
var rootCommand = new CliRootCommand { new CliOption<bool>("-v") };
var configuration = new CliConfiguration(rootCommand);
var errorSubsystem = new ErrorReportingSubsystem();
IReadOnlyList<string> args = [""];
Subsystem.Initialize(errorSubsystem, configuration, args);
var parseResult = CliParser.Parse(rootCommand, input, configuration);
var isActive = Subsystem.GetIsActivated(errorSubsystem, parseResult);
isActive.Should().BeTrue();
}
[Theory]
[InlineData("-v")]
[InlineData("")]
public void GetIsActivated_GivenValidInput_SubsystemShouldNotBeActive(string input)
{
var rootCommand = new CliRootCommand { new CliOption<bool>("-v") };
var configuration = new CliConfiguration(rootCommand);
var errorSubsystem = new ErrorReportingSubsystem();
IReadOnlyList<string> args = [""];
Subsystem.Initialize(errorSubsystem, configuration, args);
var parseResult = CliParser.Parse(rootCommand, input, configuration);
var isActive = Subsystem.GetIsActivated(errorSubsystem, parseResult);
isActive.Should().BeFalse();
}
}