mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-17 01:12:50 +08:00
143 lines
3.0 KiB
C#
143 lines
3.0 KiB
C#
namespace Spectre.Console.Analyzer.Tests.Unit.Fixes;
|
|
|
|
public class UseSpectreInsteadOfSystemConsoleFixTests
|
|
{
|
|
private static readonly DiagnosticResult _expectedDiagnostic = new(
|
|
Descriptors.S1000_UseAnsiConsoleOverSystemConsole.Id,
|
|
DiagnosticSeverity.Warning);
|
|
|
|
[Fact]
|
|
public async Task SystemConsole_replaced_with_AnsiConsole()
|
|
{
|
|
const string Source = @"
|
|
using System;
|
|
|
|
class TestClass
|
|
{
|
|
void TestMethod()
|
|
{
|
|
Console.WriteLine(""Hello, World"");
|
|
}
|
|
}";
|
|
|
|
const string FixedSource = @"
|
|
using System;
|
|
using Spectre.Console;
|
|
|
|
class TestClass
|
|
{
|
|
void TestMethod()
|
|
{
|
|
AnsiConsole.WriteLine(""Hello, World"");
|
|
}
|
|
}";
|
|
|
|
await SpectreAnalyzerVerifier<UseSpectreInsteadOfSystemConsoleAnalyzer>
|
|
.VerifyCodeFixAsync(Source, _expectedDiagnostic.WithLocation(8, 9), FixedSource)
|
|
.ConfigureAwait(false);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task SystemConsole_replaced_with_imported_AnsiConsole()
|
|
{
|
|
const string Source = @"
|
|
using System;
|
|
|
|
class TestClass
|
|
{
|
|
void TestMethod()
|
|
{
|
|
Console.WriteLine(""Hello, World"");
|
|
}
|
|
}";
|
|
|
|
const string FixedSource = @"
|
|
using System;
|
|
using Spectre.Console;
|
|
|
|
class TestClass
|
|
{
|
|
void TestMethod()
|
|
{
|
|
AnsiConsole.WriteLine(""Hello, World"");
|
|
}
|
|
}";
|
|
|
|
await SpectreAnalyzerVerifier<UseSpectreInsteadOfSystemConsoleAnalyzer>
|
|
.VerifyCodeFixAsync(Source, _expectedDiagnostic.WithLocation(8, 9), FixedSource)
|
|
.ConfigureAwait(false);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task SystemConsole_replaced_with_field_AnsiConsole()
|
|
{
|
|
const string Source = @"
|
|
using System;
|
|
using Spectre.Console;
|
|
|
|
class TestClass
|
|
{
|
|
IAnsiConsole _ansiConsole;
|
|
|
|
void TestMethod()
|
|
{
|
|
Console.WriteLine(""Hello, World"");
|
|
}
|
|
}";
|
|
|
|
const string FixedSource = @"
|
|
using System;
|
|
using Spectre.Console;
|
|
|
|
class TestClass
|
|
{
|
|
IAnsiConsole _ansiConsole;
|
|
|
|
void TestMethod()
|
|
{
|
|
_ansiConsole.WriteLine(""Hello, World"");
|
|
}
|
|
}";
|
|
|
|
await SpectreAnalyzerVerifier<UseSpectreInsteadOfSystemConsoleAnalyzer>
|
|
.VerifyCodeFixAsync(Source, _expectedDiagnostic.WithLocation(11, 9), FixedSource)
|
|
.ConfigureAwait(false);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task SystemConsole_replaced_with_static_field_AnsiConsole()
|
|
{
|
|
const string Source = @"
|
|
using System;
|
|
using Spectre.Console;
|
|
|
|
class TestClass
|
|
{
|
|
static IAnsiConsole _ansiConsole;
|
|
|
|
static void TestMethod()
|
|
{
|
|
Console.WriteLine(""Hello, World"");
|
|
}
|
|
}";
|
|
|
|
const string FixedSource = @"
|
|
using System;
|
|
using Spectre.Console;
|
|
|
|
class TestClass
|
|
{
|
|
static IAnsiConsole _ansiConsole;
|
|
|
|
static void TestMethod()
|
|
{
|
|
_ansiConsole.WriteLine(""Hello, World"");
|
|
}
|
|
}";
|
|
|
|
await SpectreAnalyzerVerifier<UseSpectreInsteadOfSystemConsoleAnalyzer>
|
|
.VerifyCodeFixAsync(Source, _expectedDiagnostic.WithLocation(11, 9), FixedSource)
|
|
.ConfigureAwait(false);
|
|
}
|
|
}
|