mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-29 17:28:01 +01:00
* Removed resharper settings from editorconfig * Moved ColorScheme to ColorScheme.cs * Moved ColorScheme to ColorScheme.cs * Potential fix. PlatformColor was not being set by FakeDriver correctly. * Made ColorScheme effectively readonly * Removed Color.Base etc... Updated API docs.
740 lines
17 KiB
C#
740 lines
17 KiB
C#
using Xunit;
|
|
using Xunit.Abstractions;
|
|
|
|
namespace Terminal.Gui.ViewTests;
|
|
public class BorderTests {
|
|
readonly ITestOutputHelper _output;
|
|
|
|
public BorderTests (ITestOutputHelper output)
|
|
{
|
|
_output = output;
|
|
}
|
|
|
|
[Fact]
|
|
public void View_BorderStyle_Defaults ()
|
|
{
|
|
var view = new View ();
|
|
Assert.Equal (LineStyle.None, view.BorderStyle);
|
|
Assert.Equal (Thickness.Empty, view.Border.Thickness);
|
|
view.Dispose ();
|
|
}
|
|
|
|
[Fact]
|
|
public void View_SetBorderStyle ()
|
|
{
|
|
var view = new View ();
|
|
view.BorderStyle = LineStyle.Single;
|
|
Assert.Equal (LineStyle.Single, view.BorderStyle);
|
|
Assert.Equal (new Thickness (1), view.Border.Thickness);
|
|
|
|
view.BorderStyle = LineStyle.Double;
|
|
Assert.Equal (LineStyle.Double, view.BorderStyle);
|
|
Assert.Equal (new Thickness (1), view.Border.Thickness);
|
|
|
|
view.BorderStyle = LineStyle.None;
|
|
Assert.Equal (LineStyle.None, view.BorderStyle);
|
|
Assert.Equal (Thickness.Empty, view.Border.Thickness);
|
|
view.Dispose ();
|
|
}
|
|
|
|
[Theory, AutoInitShutdown]
|
|
[InlineData (0)]
|
|
[InlineData (1)]
|
|
[InlineData (2)]
|
|
[InlineData (3)]
|
|
public void Border_With_Title_Size_Height (int height)
|
|
{
|
|
var win = new Window () {
|
|
Title = "1234",
|
|
Width = Dim.Fill (),
|
|
Height = Dim.Fill ()
|
|
};
|
|
|
|
var rs = Application.Begin (win);
|
|
bool firstIteration = false;
|
|
|
|
((FakeDriver)Application.Driver).SetBufferSize (20, height);
|
|
Application.RunIteration (ref rs, ref firstIteration);
|
|
var expected = string.Empty;
|
|
|
|
switch (height) {
|
|
case 0:
|
|
//Assert.Equal (new Rect (0, 0, 17, 0), subview.Frame);
|
|
expected = @"
|
|
";
|
|
break;
|
|
case 1:
|
|
//Assert.Equal (new Rect (0, 0, 17, 0), subview.Frame);
|
|
expected = @"
|
|
────────────────────";
|
|
break;
|
|
case 2:
|
|
//Assert.Equal (new Rect (0, 0, 17, 1), subview.Frame);
|
|
expected = @"
|
|
┌┤1234├────────────┐
|
|
└──────────────────┘
|
|
";
|
|
break;
|
|
case 3:
|
|
//Assert.Equal (new Rect (0, 0, 17, 2), subview.Frame);
|
|
expected = @"
|
|
┌┤1234├────────────┐
|
|
│ │
|
|
└──────────────────┘
|
|
";
|
|
break;
|
|
}
|
|
_ = TestHelpers.AssertDriverContentsWithFrameAre (expected, _output);
|
|
Application.End (rs);
|
|
}
|
|
|
|
[Theory, AutoInitShutdown]
|
|
[InlineData (0)]
|
|
[InlineData (1)]
|
|
[InlineData (2)]
|
|
[InlineData (3)]
|
|
[InlineData (4)]
|
|
[InlineData (5)]
|
|
[InlineData (6)]
|
|
[InlineData (7)]
|
|
[InlineData (8)]
|
|
[InlineData (9)]
|
|
[InlineData (10)]
|
|
public void Border_With_Title_Size_Width (int width)
|
|
{
|
|
var win = new Window () {
|
|
Title = "1234",
|
|
Width = Dim.Fill (),
|
|
Height = Dim.Fill ()
|
|
};
|
|
|
|
var rs = Application.Begin (win);
|
|
bool firstIteration = false;
|
|
|
|
((FakeDriver)Application.Driver).SetBufferSize (width, 3);
|
|
Application.RunIteration (ref rs, ref firstIteration);
|
|
var expected = string.Empty;
|
|
|
|
switch (width) {
|
|
case 1:
|
|
//Assert.Equal (new Rect (0, 0, 17, 0), subview.Frame);
|
|
expected = @"
|
|
│
|
|
│
|
|
│";
|
|
break;
|
|
case 2:
|
|
//Assert.Equal (new Rect (0, 0, 17, 1), subview.Frame);
|
|
expected = @"
|
|
┌┐
|
|
││
|
|
└┘";
|
|
break;
|
|
case 3:
|
|
//Assert.Equal (new Rect (0, 0, 17, 2), subview.Frame);
|
|
expected = @"
|
|
┌─┐
|
|
│ │
|
|
└─┘
|
|
";
|
|
break;
|
|
case 4:
|
|
//Assert.Equal (new Rect (0, 0, 17, 3), subview.Frame);
|
|
expected = @"
|
|
┌┤├┐
|
|
│ │
|
|
└──┘";
|
|
break;
|
|
case 5:
|
|
//Assert.Equal (new Rect (0, 0, 17, 3), subview.Frame);
|
|
expected = @"
|
|
┌┤1├┐
|
|
│ │
|
|
└───┘";
|
|
break;
|
|
case 6:
|
|
//Assert.Equal (new Rect (0, 0, 17, 3), subview.Frame);
|
|
expected = @"
|
|
┌┤12├┐
|
|
│ │
|
|
└────┘";
|
|
break;
|
|
case 7:
|
|
//Assert.Equal (new Rect (0, 0, 17, 3), subview.Frame);
|
|
expected = @"
|
|
┌┤123├┐
|
|
│ │
|
|
└─────┘";
|
|
break;
|
|
case 8:
|
|
//Assert.Equal (new Rect (0, 0, 17, 3), subview.Frame);
|
|
expected = @"
|
|
┌┤1234├┐
|
|
│ │
|
|
└──────┘";
|
|
break;
|
|
case 9:
|
|
//Assert.Equal (new Rect (0, 0, 17, 3), subview.Frame);
|
|
expected = @"
|
|
┌┤1234├─┐
|
|
│ │
|
|
└───────┘";
|
|
break;
|
|
case 10:
|
|
//Assert.Equal (new Rect (0, 0, 17, 3), subview.Frame);
|
|
expected = @"
|
|
┌┤1234├──┐
|
|
│ │
|
|
└────────┘";
|
|
break;
|
|
}
|
|
_ = TestHelpers.AssertDriverContentsWithFrameAre (expected, _output);
|
|
}
|
|
|
|
[Fact, AutoInitShutdown]
|
|
public void NoSuperView ()
|
|
{
|
|
var win = new Window () {
|
|
Width = Dim.Fill (),
|
|
Height = Dim.Fill ()
|
|
};
|
|
|
|
var rs = Application.Begin (win);
|
|
bool firstIteration = false;
|
|
|
|
((FakeDriver)Application.Driver).SetBufferSize (3, 3);
|
|
Application.RunIteration (ref rs, ref firstIteration);
|
|
var expected = @"
|
|
┌─┐
|
|
│ │
|
|
└─┘";
|
|
|
|
_ = TestHelpers.AssertDriverContentsWithFrameAre (expected, _output);
|
|
}
|
|
|
|
[Fact, AutoInitShutdown]
|
|
public void HasSuperView ()
|
|
{
|
|
Application.Top.BorderStyle = LineStyle.Double;
|
|
|
|
var frame = new FrameView () {
|
|
Width = Dim.Fill (),
|
|
Height = Dim.Fill ()
|
|
};
|
|
|
|
Application.Top.Add (frame);
|
|
var rs = Application.Begin (Application.Top);
|
|
bool firstIteration = false;
|
|
|
|
((FakeDriver)Application.Driver).SetBufferSize (5, 5);
|
|
Application.RunIteration (ref rs, ref firstIteration);
|
|
var expected = @"
|
|
╔═══╗
|
|
║┌─┐║
|
|
║│ │║
|
|
║└─┘║
|
|
╚═══╝";
|
|
|
|
_ = TestHelpers.AssertDriverContentsWithFrameAre (expected, _output);
|
|
Application.End (rs);
|
|
}
|
|
|
|
[Fact, AutoInitShutdown]
|
|
public void HasSuperView_Title ()
|
|
{
|
|
Application.Top.BorderStyle = LineStyle.Double;
|
|
|
|
var frame = new FrameView () {
|
|
Title = "1234",
|
|
Width = Dim.Fill (),
|
|
Height = Dim.Fill ()
|
|
};
|
|
|
|
Application.Top.Add (frame);
|
|
var rs = Application.Begin (Application.Top);
|
|
bool firstIteration = false;
|
|
|
|
((FakeDriver)Application.Driver).SetBufferSize (10, 4);
|
|
Application.RunIteration (ref rs, ref firstIteration);
|
|
var expected = @"
|
|
╔════════╗
|
|
║┌┤1234├┐║
|
|
║└──────┘║
|
|
╚════════╝";
|
|
|
|
_ = TestHelpers.AssertDriverContentsWithFrameAre (expected, _output);
|
|
Application.End (rs);
|
|
}
|
|
|
|
|
|
[Theory]
|
|
[InlineData (0, 0, 0, 1, 1)]
|
|
[InlineData (1, 0, 0, 2, 2)]
|
|
[InlineData (2, 0, 0, 3, 3)]
|
|
[InlineData (1, 1, 0, 3, 2)]
|
|
[InlineData (1, 0, 1, 2, 3)]
|
|
[InlineData (1, 1, 1, 3, 3)]
|
|
[InlineData (1, 10, 10, 12, 12)]
|
|
public void FrameToScreen_SuperView_WithBorder (int superOffset, int frameX, int frameY, int expectedScreenX, int expectedScreenY)
|
|
{
|
|
var super = new View () {
|
|
X = superOffset,
|
|
Y = superOffset,
|
|
Width = 20,
|
|
Height = 20,
|
|
BorderStyle = LineStyle.Single
|
|
};
|
|
|
|
var view = new View () {
|
|
X = frameX,
|
|
Y = frameY,
|
|
Width = 10,
|
|
Height = 10
|
|
};
|
|
super.Add (view);
|
|
var expected = new Rect (expectedScreenX, expectedScreenY, 10, 10);
|
|
var actual = view.FrameToScreen ();
|
|
Assert.Equal (expected, actual);
|
|
}
|
|
|
|
[Theory]
|
|
[InlineData (0, 0, 0, 2, 2)]
|
|
[InlineData (1, 0, 0, 4, 4)]
|
|
[InlineData (2, 0, 0, 6, 6)]
|
|
[InlineData (1, 1, 0, 5, 4)]
|
|
[InlineData (1, 0, 1, 4, 5)]
|
|
[InlineData (1, 1, 1, 5, 5)]
|
|
[InlineData (1, 10, 10, 14, 14)]
|
|
public void FrameToScreen_NestedSuperView_WithBorder (int superOffset, int frameX, int frameY, int expectedScreenX, int expectedScreenY)
|
|
{
|
|
var superSuper = new View () {
|
|
X = superOffset,
|
|
Y = superOffset,
|
|
Width = 30,
|
|
Height = 30,
|
|
BorderStyle = LineStyle.Single
|
|
};
|
|
|
|
var super = new View () {
|
|
X = superOffset,
|
|
Y = superOffset,
|
|
Width = 20,
|
|
Height = 20,
|
|
BorderStyle = LineStyle.Single
|
|
};
|
|
superSuper.Add (super);
|
|
|
|
var view = new View () {
|
|
X = frameX,
|
|
Y = frameY,
|
|
Width = 10,
|
|
Height = 10
|
|
};
|
|
super.Add (view);
|
|
var expected = new Rect (expectedScreenX, expectedScreenY, 10, 10);
|
|
var actual = view.FrameToScreen ();
|
|
Assert.Equal (expected, actual);
|
|
}
|
|
|
|
|
|
[Theory, AutoInitShutdown]
|
|
[InlineData (0)]
|
|
[InlineData (1)]
|
|
[InlineData (2)]
|
|
[InlineData (3)]
|
|
[InlineData (4)]
|
|
[InlineData (5)]
|
|
[InlineData (6)]
|
|
[InlineData (7)]
|
|
[InlineData (8)]
|
|
[InlineData (9)]
|
|
[InlineData (10)]
|
|
public void Border_With_Title_Border_Double_Thickness_Top_Two_Size_Width (int width)
|
|
{
|
|
var win = new Window () {
|
|
Title = "1234",
|
|
Width = Dim.Fill (),
|
|
Height = Dim.Fill (),
|
|
BorderStyle = LineStyle.Double,
|
|
};
|
|
win.Border.Thickness.Top = 2;
|
|
|
|
var rs = Application.Begin (win);
|
|
bool firstIteration = false;
|
|
|
|
((FakeDriver)Application.Driver).SetBufferSize (width, 4);
|
|
Application.RunIteration (ref rs, ref firstIteration);
|
|
var expected = string.Empty;
|
|
|
|
switch (width) {
|
|
case 1:
|
|
Assert.Equal (new Rect (0, 0, 1, 4), win.Frame);
|
|
expected = @"
|
|
║
|
|
║
|
|
║";
|
|
break;
|
|
case 2:
|
|
Assert.Equal (new Rect (0, 0, 2, 4), win.Frame);
|
|
expected = @"
|
|
╔╗
|
|
║║
|
|
╚╝";
|
|
break;
|
|
case 3:
|
|
Assert.Equal (new Rect (0, 0, 3, 4), win.Frame);
|
|
expected = @"
|
|
╔═╗
|
|
║ ║
|
|
╚═╝";
|
|
break;
|
|
case 4:
|
|
Assert.Equal (new Rect (0, 0, 4, 4), win.Frame);
|
|
expected = @"
|
|
╒╕
|
|
╔╛╘╗
|
|
║ ║
|
|
╚══╝";
|
|
break;
|
|
case 5:
|
|
Assert.Equal (new Rect (0, 0, 5, 4), win.Frame);
|
|
expected = @"
|
|
╒═╕
|
|
╔╛1╘╗
|
|
║ ║
|
|
╚═══╝";
|
|
break;
|
|
case 6:
|
|
Assert.Equal (new Rect (0, 0, 6, 4), win.Frame);
|
|
expected = @"
|
|
╒══╕
|
|
╔╛12╘╗
|
|
║ ║
|
|
╚════╝";
|
|
break;
|
|
case 7:
|
|
Assert.Equal (new Rect (0, 0, 7, 4), win.Frame);
|
|
expected = @"
|
|
╒═══╕
|
|
╔╛123╘╗
|
|
║ ║
|
|
╚═════╝";
|
|
break;
|
|
case 8:
|
|
Assert.Equal (new Rect (0, 0, 8, 4), win.Frame);
|
|
expected = @"
|
|
╒════╕
|
|
╔╛1234╘╗
|
|
║ ║
|
|
╚══════╝";
|
|
break;
|
|
case 9:
|
|
Assert.Equal (new Rect (0, 0, 9, 4), win.Frame);
|
|
expected = @"
|
|
╒════╕
|
|
╔╛1234╘═╗
|
|
║ ║
|
|
╚═══════╝";
|
|
break;
|
|
case 10:
|
|
Assert.Equal (new Rect (0, 0, 10, 4), win.Frame);
|
|
expected = @"
|
|
╒════╕
|
|
╔╛1234╘══╗
|
|
║ ║
|
|
╚════════╝";
|
|
break;
|
|
}
|
|
_ = TestHelpers.AssertDriverContentsWithFrameAre (expected, _output);
|
|
Application.End (rs);
|
|
}
|
|
|
|
[Theory, AutoInitShutdown]
|
|
[InlineData (0)]
|
|
[InlineData (1)]
|
|
[InlineData (2)]
|
|
[InlineData (3)]
|
|
[InlineData (4)]
|
|
[InlineData (5)]
|
|
[InlineData (6)]
|
|
[InlineData (7)]
|
|
[InlineData (8)]
|
|
[InlineData (9)]
|
|
[InlineData (10)]
|
|
public void Border_With_Title_Border_Double_Thickness_Top_Three_Size_Width (int width)
|
|
{
|
|
var win = new Window () {
|
|
Title = "1234",
|
|
Width = Dim.Fill (),
|
|
Height = Dim.Fill (),
|
|
BorderStyle = LineStyle.Double,
|
|
};
|
|
win.Border.Thickness.Top = 3;
|
|
|
|
var rs = Application.Begin (win);
|
|
bool firstIteration = false;
|
|
|
|
((FakeDriver)Application.Driver).SetBufferSize (width, 4);
|
|
Application.RunIteration (ref rs, ref firstIteration);
|
|
var expected = string.Empty;
|
|
|
|
switch (width) {
|
|
case 1:
|
|
Assert.Equal (new Rect (0, 0, 1, 4), win.Frame);
|
|
expected = @"
|
|
║
|
|
║
|
|
║";
|
|
break;
|
|
case 2:
|
|
Assert.Equal (new Rect (0, 0, 2, 4), win.Frame);
|
|
expected = @"
|
|
╔╗
|
|
║║
|
|
╚╝";
|
|
break;
|
|
case 3:
|
|
Assert.Equal (new Rect (0, 0, 3, 4), win.Frame);
|
|
expected = @"
|
|
╔═╗
|
|
║ ║
|
|
╚═╝";
|
|
break;
|
|
case 4:
|
|
Assert.Equal (new Rect (0, 0, 4, 4), win.Frame);
|
|
expected = @"
|
|
╒╕
|
|
╔╡╞╗
|
|
║╘╛║
|
|
╚══╝";
|
|
break;
|
|
case 5:
|
|
Assert.Equal (new Rect (0, 0, 5, 4), win.Frame);
|
|
expected = @"
|
|
╒═╕
|
|
╔╡1╞╗
|
|
║╘═╛║
|
|
╚═══╝";
|
|
break;
|
|
case 6:
|
|
Assert.Equal (new Rect (0, 0, 6, 4), win.Frame);
|
|
expected = @"
|
|
╒══╕
|
|
╔╡12╞╗
|
|
║╘══╛║
|
|
╚════╝";
|
|
break;
|
|
case 7:
|
|
Assert.Equal (new Rect (0, 0, 7, 4), win.Frame);
|
|
expected = @"
|
|
╒═══╕
|
|
╔╡123╞╗
|
|
║╘═══╛║
|
|
╚═════╝";
|
|
break;
|
|
case 8:
|
|
Assert.Equal (new Rect (0, 0, 8, 4), win.Frame);
|
|
expected = @"
|
|
╒════╕
|
|
╔╡1234╞╗
|
|
║╘════╛║
|
|
╚══════╝";
|
|
break;
|
|
case 9:
|
|
Assert.Equal (new Rect (0, 0, 9, 4), win.Frame);
|
|
expected = @"
|
|
╒════╕
|
|
╔╡1234╞═╗
|
|
║╘════╛ ║
|
|
╚═══════╝";
|
|
break;
|
|
case 10:
|
|
Assert.Equal (new Rect (0, 0, 10, 4), win.Frame);
|
|
expected = @"
|
|
╒════╕
|
|
╔╡1234╞══╗
|
|
║╘════╛ ║
|
|
╚════════╝";
|
|
break;
|
|
}
|
|
_ = TestHelpers.AssertDriverContentsWithFrameAre (expected, _output);
|
|
Application.End (rs);
|
|
}
|
|
|
|
[Theory, AutoInitShutdown]
|
|
[InlineData (0)]
|
|
[InlineData (1)]
|
|
[InlineData (2)]
|
|
[InlineData (3)]
|
|
[InlineData (4)]
|
|
[InlineData (5)]
|
|
[InlineData (6)]
|
|
[InlineData (7)]
|
|
[InlineData (8)]
|
|
[InlineData (9)]
|
|
[InlineData (10)]
|
|
public void Border_With_Title_Border_Double_Thickness_Top_Four_Size_Width (int width)
|
|
{
|
|
var win = new Window () {
|
|
Title = "1234",
|
|
Width = Dim.Fill (),
|
|
Height = Dim.Fill (),
|
|
BorderStyle = LineStyle.Double,
|
|
};
|
|
win.Border.Thickness.Top = 4;
|
|
|
|
var rs = Application.Begin (win);
|
|
bool firstIteration = false;
|
|
|
|
((FakeDriver)Application.Driver).SetBufferSize (width, 5);
|
|
Application.RunIteration (ref rs, ref firstIteration);
|
|
var expected = string.Empty;
|
|
|
|
switch (width) {
|
|
case 1:
|
|
Assert.Equal (new Rect (0, 0, 1, 5), win.Frame);
|
|
expected = @"
|
|
║
|
|
║
|
|
║";
|
|
break;
|
|
case 2:
|
|
Assert.Equal (new Rect (0, 0, 2, 5), win.Frame);
|
|
expected = @"
|
|
╔╗
|
|
║║
|
|
╚╝";
|
|
break;
|
|
case 3:
|
|
Assert.Equal (new Rect (0, 0, 3, 5), win.Frame);
|
|
expected = @"
|
|
╔═╗
|
|
║ ║
|
|
╚═╝";
|
|
break;
|
|
case 4:
|
|
Assert.Equal (new Rect (0, 0, 4, 5), win.Frame);
|
|
expected = @"
|
|
╒╕
|
|
╔╡╞╗
|
|
║╘╛║
|
|
╚══╝";
|
|
break;
|
|
case 5:
|
|
Assert.Equal (new Rect (0, 0, 5, 5), win.Frame);
|
|
expected = @"
|
|
╒═╕
|
|
╔╡1╞╗
|
|
║╘═╛║
|
|
╚═══╝";
|
|
break;
|
|
case 6:
|
|
Assert.Equal (new Rect (0, 0, 6, 5), win.Frame);
|
|
expected = @"
|
|
╒══╕
|
|
╔╡12╞╗
|
|
║╘══╛║
|
|
╚════╝";
|
|
break;
|
|
case 7:
|
|
Assert.Equal (new Rect (0, 0, 7, 5), win.Frame);
|
|
expected = @"
|
|
╒═══╕
|
|
╔╡123╞╗
|
|
║╘═══╛║
|
|
╚═════╝";
|
|
break;
|
|
case 8:
|
|
Assert.Equal (new Rect (0, 0, 8, 5), win.Frame);
|
|
expected = @"
|
|
╒════╕
|
|
╔╡1234╞╗
|
|
║╘════╛║
|
|
╚══════╝";
|
|
break;
|
|
case 9:
|
|
Assert.Equal (new Rect (0, 0, 9, 5), win.Frame);
|
|
expected = @"
|
|
╒════╕
|
|
╔╡1234╞═╗
|
|
║╘════╛ ║
|
|
╚═══════╝";
|
|
break;
|
|
case 10:
|
|
Assert.Equal (new Rect (0, 0, 10, 5), win.Frame);
|
|
expected = @"
|
|
╒════╕
|
|
╔╡1234╞══╗
|
|
║╘════╛ ║
|
|
╚════════╝";
|
|
break;
|
|
}
|
|
_ = TestHelpers.AssertDriverContentsWithFrameAre (expected, _output);
|
|
Application.End (rs);
|
|
}
|
|
|
|
[Fact, SetupFakeDriver]
|
|
public void Border_Uses_Parent_ColorScheme ()
|
|
{
|
|
var view = new View () {
|
|
Title = "A",
|
|
Height = 2,
|
|
Width = 5
|
|
};
|
|
view.Border.Thickness = new Thickness (0, 1, 0, 0);
|
|
view.Border.LineStyle = LineStyle.Single;
|
|
view.ColorScheme = new ColorScheme () {
|
|
Normal = new Attribute (Color.Red, Color.Green),
|
|
Focus = new Attribute (Color.Green, Color.Red),
|
|
};
|
|
Assert.Equal (ColorName.Red, view.Border.GetNormalColor ().Foreground.ColorName);
|
|
Assert.Equal (ColorName.Green, view.Border.GetFocusColor ().Foreground.ColorName);
|
|
Assert.Equal (view.GetNormalColor(), view.Border.GetNormalColor ());
|
|
Assert.Equal (view.GetFocusColor (), view.Border.GetFocusColor ());
|
|
|
|
view.BeginInit ();
|
|
view.EndInit ();
|
|
view.Draw ();
|
|
|
|
var expected = @"─┤A├─";
|
|
TestHelpers.AssertDriverContentsAre (expected, _output);
|
|
TestHelpers.AssertDriverAttributesAre ("00000", null, view.ColorScheme.Normal);
|
|
}
|
|
|
|
[Fact, SetupFakeDriver]
|
|
public void Border_Parent_HasFocus_Title_Uses_FocusAttribute ()
|
|
{
|
|
var view = new View () {
|
|
Title = "A",
|
|
Height = 2,
|
|
Width = 5
|
|
};
|
|
view.Border.Thickness = new Thickness (0, 1, 0, 0);
|
|
view.Border.LineStyle = LineStyle.Single;
|
|
view.ColorScheme = new ColorScheme () {
|
|
Normal = new Attribute (Color.Red, Color.Green),
|
|
Focus = new Attribute (Color.Green, Color.Red),
|
|
};
|
|
Assert.NotEqual (view.ColorScheme.Normal.Foreground, view.ColorScheme.Focus.Foreground);
|
|
Assert.Equal (ColorName.Red, view.Border.GetNormalColor ().Foreground.ColorName);
|
|
Assert.Equal (ColorName.Green, view.Border.GetFocusColor ().Foreground.ColorName);
|
|
Assert.Equal (view.GetFocusColor (), view.Border.GetFocusColor ());
|
|
|
|
view.BeginInit ();
|
|
view.EndInit ();
|
|
view.Draw ();
|
|
|
|
var expected = @"─┤A├─";
|
|
TestHelpers.AssertDriverContentsAre (expected, _output);
|
|
TestHelpers.AssertDriverAttributesAre ("00000", null, view.ColorScheme.Normal);
|
|
|
|
view.CanFocus = true;
|
|
view.SetFocus ();
|
|
view.Draw ();
|
|
Assert.Equal (view.GetFocusColor (), view.Border.GetFocusColor ());
|
|
Assert.Equal (view.ColorScheme.Focus.Foreground, view.Border.GetFocusColor ().Foreground);
|
|
Assert.Equal (view.ColorScheme.Normal.Foreground, view.Border.GetNormalColor ().Foreground);
|
|
TestHelpers.AssertDriverAttributesAre ("00100", null, view.ColorScheme.Normal, view.GetFocusColor ());
|
|
}
|
|
}
|