mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-16 17:02:51 +08:00
243 lines
8.2 KiB
C#
243 lines
8.2 KiB
C#
namespace Spectre.Console.Tests.Unit;
|
|
|
|
public partial class AnsiConsoleTests
|
|
{
|
|
[Theory]
|
|
[InlineData(ColorSystemSupport.NoColors, ColorSystem.NoColors)]
|
|
[InlineData(ColorSystemSupport.Legacy, ColorSystem.Legacy)]
|
|
[InlineData(ColorSystemSupport.Standard, ColorSystem.Standard)]
|
|
[InlineData(ColorSystemSupport.EightBit, ColorSystem.EightBit)]
|
|
[InlineData(ColorSystemSupport.TrueColor, ColorSystem.TrueColor)]
|
|
public void Should_Create_Console_With_Requested_ColorSystem(ColorSystemSupport requested, ColorSystem expected)
|
|
{
|
|
// Given, When
|
|
var console = AnsiConsole.Create(new AnsiConsoleSettings
|
|
{
|
|
ColorSystem = requested,
|
|
Out = new AnsiConsoleOutput(new StringWriter()),
|
|
});
|
|
|
|
// Then
|
|
console.Profile.Capabilities.ColorSystem.ShouldBe(expected);
|
|
}
|
|
|
|
public sealed class TrueColor
|
|
{
|
|
[Theory]
|
|
[InlineData(true, "\u001b[38;2;128;0;128mHello\u001b[0m")]
|
|
[InlineData(false, "\u001b[48;2;128;0;128mHello\u001b[0m")]
|
|
public void Should_Return_Correct_Code(bool foreground, string expected)
|
|
{
|
|
// Given
|
|
var console = new TestConsole()
|
|
.Colors(ColorSystem.TrueColor)
|
|
.EmitAnsiSequences();
|
|
|
|
// When
|
|
console.Write("Hello", new Style().SetColor(new Color(128, 0, 128), foreground));
|
|
|
|
// Then
|
|
console.Output.ShouldBe(expected);
|
|
}
|
|
|
|
[Theory]
|
|
[InlineData(true, "\u001b[38;5;5mHello\u001b[0m")]
|
|
[InlineData(false, "\u001b[48;5;5mHello\u001b[0m")]
|
|
public void Should_Return_Eight_Bit_Ansi_Code_For_Known_Colors(bool foreground, string expected)
|
|
{
|
|
// Given
|
|
var console = new TestConsole()
|
|
.Colors(ColorSystem.TrueColor)
|
|
.EmitAnsiSequences();
|
|
|
|
// When
|
|
console.Write("Hello", new Style().SetColor(Color.Purple, foreground));
|
|
|
|
// Then
|
|
console.Output.ShouldBe(expected);
|
|
}
|
|
}
|
|
|
|
public sealed class EightBit
|
|
{
|
|
[Theory]
|
|
[InlineData(true, "\u001b[38;5;3mHello\u001b[0m")]
|
|
[InlineData(false, "\u001b[48;5;3mHello\u001b[0m")]
|
|
public void Should_Return_Correct_Code_For_Known_Color(bool foreground, string expected)
|
|
{
|
|
// Given
|
|
var console = new TestConsole()
|
|
.Colors(ColorSystem.EightBit)
|
|
.EmitAnsiSequences();
|
|
|
|
// When
|
|
console.Write("Hello", new Style().SetColor(Color.Olive, foreground));
|
|
|
|
// Then
|
|
console.Output.ShouldBe(expected);
|
|
}
|
|
|
|
[Theory]
|
|
[InlineData(true, "\u001b[38;5;3mHello\u001b[0m")]
|
|
[InlineData(false, "\u001b[48;5;3mHello\u001b[0m")]
|
|
public void Should_Map_TrueColor_To_Nearest_Eight_Bit_Color_If_Possible(bool foreground, string expected)
|
|
{
|
|
// Given
|
|
var console = new TestConsole()
|
|
.Colors(ColorSystem.EightBit)
|
|
.EmitAnsiSequences();
|
|
|
|
// When
|
|
console.Write("Hello", new Style().SetColor(new Color(128, 128, 0), foreground));
|
|
|
|
// Then
|
|
console.Output.ShouldBe(expected);
|
|
}
|
|
|
|
[Theory]
|
|
[InlineData(true, "\u001b[38;5;3mHello\u001b[0m")]
|
|
[InlineData(false, "\u001b[48;5;3mHello\u001b[0m")]
|
|
public void Should_Estimate_TrueColor_To_Nearest_Eight_Bit_Color(bool foreground, string expected)
|
|
{
|
|
// Given
|
|
var console = new TestConsole()
|
|
.Colors(ColorSystem.EightBit)
|
|
.EmitAnsiSequences();
|
|
|
|
// When
|
|
console.Write("Hello", new Style().SetColor(new Color(126, 127, 0), foreground));
|
|
|
|
// Then
|
|
console.Output.ShouldBe(expected);
|
|
}
|
|
}
|
|
|
|
public sealed class Standard
|
|
{
|
|
[Theory]
|
|
[InlineData(true, "\u001b[33mHello\u001b[0m")]
|
|
[InlineData(false, "\u001b[43mHello\u001b[0m")]
|
|
public void Should_Return_Correct_Code_For_Known_Color(bool foreground, string expected)
|
|
{
|
|
// Given
|
|
var console = new TestConsole()
|
|
.Colors(ColorSystem.Standard)
|
|
.EmitAnsiSequences();
|
|
|
|
// When
|
|
console.Write("Hello", new Style().SetColor(Color.Olive, foreground));
|
|
|
|
// Then
|
|
console.Output.ShouldBe(expected);
|
|
}
|
|
|
|
[Theory]
|
|
[InlineData(true, 128, 128, 128, "\u001b[90mHello\u001b[0m")]
|
|
[InlineData(false, 128, 128, 128, "\u001b[100mHello\u001b[0m")]
|
|
[InlineData(true, 0, 128, 0, "\u001b[32mHello\u001b[0m")]
|
|
[InlineData(false, 0, 128, 0, "\u001b[42mHello\u001b[0m")]
|
|
public void Should_Map_TrueColor_To_Nearest_Four_Bit_Color_If_Possible(
|
|
bool foreground,
|
|
byte r, byte g, byte b,
|
|
string expected)
|
|
{
|
|
// Given
|
|
var console = new TestConsole()
|
|
.Colors(ColorSystem.Standard)
|
|
.EmitAnsiSequences();
|
|
|
|
// When
|
|
console.Write("Hello", new Style().SetColor(new Color(r, g, b), foreground));
|
|
|
|
// Then
|
|
console.Output.ShouldBe(expected);
|
|
}
|
|
|
|
[Theory]
|
|
[InlineData(true, 112, 120, 128, "\u001b[90mHello\u001b[0m")]
|
|
[InlineData(false, 112, 120, 128, "\u001b[100mHello\u001b[0m")]
|
|
[InlineData(true, 0, 120, 12, "\u001b[32mHello\u001b[0m")]
|
|
[InlineData(false, 0, 120, 12, "\u001b[42mHello\u001b[0m")]
|
|
public void Should_Estimate_TrueColor_To_Nearest_Four_Bit_Color(
|
|
bool foreground,
|
|
byte r, byte g, byte b,
|
|
string expected)
|
|
{
|
|
// Given
|
|
var console = new TestConsole()
|
|
.Colors(ColorSystem.Standard)
|
|
.EmitAnsiSequences();
|
|
|
|
// When
|
|
console.Write("Hello", new Style().SetColor(new Color(r, g, b), foreground));
|
|
|
|
// Then
|
|
console.Output.ShouldBe(expected);
|
|
}
|
|
}
|
|
|
|
public sealed class Legacy
|
|
{
|
|
[Theory]
|
|
[InlineData(true, "\u001b[33mHello\u001b[0m")]
|
|
[InlineData(false, "\u001b[43mHello\u001b[0m")]
|
|
public void Should_Return_Correct_Code_For_Known_Color(bool foreground, string expected)
|
|
{
|
|
// Given
|
|
var console = new TestConsole()
|
|
.Colors(ColorSystem.Legacy)
|
|
.EmitAnsiSequences();
|
|
|
|
// When
|
|
console.Write("Hello", new Style().SetColor(Color.Olive, foreground));
|
|
|
|
// Then
|
|
console.Output.ShouldBe(expected);
|
|
}
|
|
|
|
[Theory]
|
|
[InlineData(true, 128, 128, 128, "\u001b[37mHello\u001b[0m")]
|
|
[InlineData(false, 128, 128, 128, "\u001b[47mHello\u001b[0m")]
|
|
[InlineData(true, 0, 128, 0, "\u001b[32mHello\u001b[0m")]
|
|
[InlineData(false, 0, 128, 0, "\u001b[42mHello\u001b[0m")]
|
|
public void Should_Map_TrueColor_To_Nearest_Three_Bit_Color_If_Possible(
|
|
bool foreground,
|
|
byte r, byte g, byte b,
|
|
string expected)
|
|
{
|
|
// Given
|
|
var console = new TestConsole()
|
|
.Colors(ColorSystem.Legacy)
|
|
.EmitAnsiSequences();
|
|
|
|
// When
|
|
console.Write("Hello", new Style().SetColor(new Color(r, g, b), foreground));
|
|
|
|
// Then
|
|
console.Output.ShouldBe(expected);
|
|
}
|
|
|
|
[Theory]
|
|
[InlineData(true, 112, 120, 128, "\u001b[36mHello\u001b[0m")]
|
|
[InlineData(false, 112, 120, 128, "\u001b[46mHello\u001b[0m")]
|
|
[InlineData(true, 0, 120, 12, "\u001b[32mHello\u001b[0m")]
|
|
[InlineData(false, 0, 120, 12, "\u001b[42mHello\u001b[0m")]
|
|
public void Should_Estimate_TrueColor_To_Nearest_Three_Bit_Color(
|
|
bool foreground,
|
|
byte r, byte g, byte b,
|
|
string expected)
|
|
{
|
|
// Given
|
|
var console = new TestConsole()
|
|
.Colors(ColorSystem.Legacy)
|
|
.EmitAnsiSequences();
|
|
|
|
// When
|
|
console.Write("Hello", new Style().SetColor(new Color(r, g, b), foreground));
|
|
|
|
// Then
|
|
console.Output.ShouldBe(expected);
|
|
}
|
|
}
|
|
}
|