123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311 |
- using Xunit.Abstractions;
- using static Terminal.Gui.Dim;
- using static Terminal.Gui.Pos;
- namespace Terminal.Gui.LayoutTests;
- public class PosAnchorEndTests (ITestOutputHelper output)
- {
- [Fact]
- public void PosAnchorEnd_Constructor ()
- {
- var posAnchorEnd = new PosAnchorEnd (10);
- Assert.NotNull (posAnchorEnd);
- }
- [Theory]
- [InlineData (0, 0, true)]
- [InlineData (10, 10, true)]
- [InlineData (0, 10, false)]
- [InlineData (10, 1, false)]
- public void PosAnchorEnd_Equals (int offset1, int offset2, bool expectedEquals)
- {
- var posAnchorEnd1 = new PosAnchorEnd (offset1);
- var posAnchorEnd2 = new PosAnchorEnd (offset2);
- Assert.Equal (expectedEquals, posAnchorEnd1.Equals (posAnchorEnd2));
- Assert.Equal (expectedEquals, posAnchorEnd2.Equals (posAnchorEnd1));
- }
- [Fact]
- public void PosAnchorEnd_ToString ()
- {
- var posAnchorEnd = new PosAnchorEnd (10);
- var expectedString = "AnchorEnd(10)";
- Assert.Equal (expectedString, posAnchorEnd.ToString ());
- }
- [Fact]
- public void PosAnchorEnd_GetAnchor ()
- {
- var posAnchorEnd = new PosAnchorEnd (10);
- var width = 50;
- var expectedAnchor = width - 10;
- Assert.Equal (expectedAnchor, posAnchorEnd.GetAnchor (width));
- }
- [Fact]
- public void PosAnchorEnd_CreatesCorrectInstance ()
- {
- var pos = Pos.AnchorEnd (10);
- Assert.IsType<PosAnchorEnd> (pos);
- }
- [Fact]
- public void PosAnchorEnd_Negative_Throws ()
- {
- Pos pos;
- int n = -1;
- Assert.Throws<ArgumentOutOfRangeException> (() => pos = Pos.AnchorEnd (n));
- }
- [Theory]
- [InlineData (0)]
- [InlineData (1)]
- public void PosAnchorEnd_SetsValue_GetAnchor_Is_Negative (int offset)
- {
- Pos pos = Pos.AnchorEnd (offset);
- Assert.Equal (offset, -pos.GetAnchor (0));
- }
- [Theory]
- [InlineData (0, 0, 25)]
- [InlineData (0, 10, 25)]
- [InlineData (1, 10, 24)]
- [InlineData (10, 10, 15)]
- [InlineData (20, 10, 5)]
- [InlineData (25, 10, 0)]
- [InlineData (26, 10, -1)]
- public void PosAnchorEnd_With_Offset_PositionsViewOffsetFromRight (int offset, int width, int expectedXPosition)
- {
- // Arrange
- var superView = new View { Width = 25, Height = 25 };
- var view = new View
- {
- X = Pos.AnchorEnd (offset),
- Width = width,
- Height = 1
- };
- superView.Add (view);
- superView.BeginInit ();
- superView.EndInit ();
- // Act
- superView.LayoutSubviews ();
- // Assert
- Assert.Equal (expectedXPosition, view.Frame.X);
- }
- // UseDimForOffset tests
- [Fact]
- public void PosAnchorEnd_UseDimForOffset_CreatesCorrectInstance ()
- {
- var pos = Pos.AnchorEnd ();
- Assert.IsType<PosAnchorEnd> (pos);
- Assert.True (((PosAnchorEnd)pos).UseDimForOffset);
- }
- [Fact]
- public void PosAnchorEnd_UseDimForOffset_SetsValue_GetAnchor_Is_Negative ()
- {
- Pos pos = Pos.AnchorEnd ();
- Assert.Equal (-10, -pos.GetAnchor (10));
- }
- [Theory]
- [InlineData (0, 25)]
- [InlineData (10, 15)]
- [InlineData (9, 16)]
- [InlineData (11, 14)]
- [InlineData (25, 0)]
- [InlineData (26, -1)]
- public void PosAnchorEnd_UseDimForOffset_PositionsViewOffsetByDim (int dim, int expectedXPosition)
- {
- // Arrange
- var superView = new View { Width = 25, Height = 25 };
- var view = new View
- {
- X = Pos.AnchorEnd (),
- Width = dim,
- Height = 1
- };
- superView.Add (view);
- superView.BeginInit ();
- superView.EndInit ();
- // Act
- superView.LayoutSubviews ();
- // Assert
- Assert.Equal (expectedXPosition, view.Frame.X);
- }
- [Theory]
- [InlineData (0, 25)]
- [InlineData (10, 23)]
- [InlineData (50, 13)]
- [InlineData (100, 0)]
- public void PosAnchorEnd_UseDimForOffset_DimPercent_PositionsViewOffsetByDim (int percent, int expectedXPosition)
- {
- // Arrange
- var superView = new View { Width = 25, Height = 25 };
- var view = new View
- {
- X = Pos.AnchorEnd (),
- Width = Dim.Percent (percent),
- Height = 1
- };
- superView.Add (view);
- superView.BeginInit ();
- superView.EndInit ();
- // Act
- superView.LayoutSubviews ();
- // Assert
- Assert.Equal (expectedXPosition, view.Frame.X);
- }
- // This test used to be Dialog_In_Window_With_TextField_And_Button_AnchorEnd in DialogTests.
- [Fact]
- [SetupFakeDriver]
- public void PosAnchorEnd_View_And_Button ()
- {
- ((FakeDriver)Application.Driver!).SetBufferSize (20, 5);
- // Override CM
- Button.DefaultShadow = ShadowStyle.None;
- var b = $"{CM.Glyphs.LeftBracket} Ok {CM.Glyphs.RightBracket}";
- var frame = new FrameView { Width = 18, Height = 3 };
- Assert.Equal (16, frame.Viewport.Width);
- Button btn = null;
- int Btn_Width () { return btn?.Viewport.Width ?? 0; }
- btn = new () { Text = "Ok", X = Pos.AnchorEnd (0) - Pos.Func (Btn_Width) };
- var view = new View
- {
- Text = "0123456789abcdefghij",
- // Dim.Fill (1) fills remaining space minus 1 (16 - 1 = 15)
- // Dim.Function (Btn_Width) is 6
- // Width should be 15 - 6 = 9
- Width = Dim.Fill (1) - Dim.Func (Btn_Width),
- Height = 1
- };
- frame.Add (btn, view);
- frame.BeginInit(); // Needed to enable Border
- frame.EndInit();
- frame.Layout ();
- Assert.Equal (6, btn.Viewport.Width);
- Assert.Equal (10, btn.Frame.X); // frame.Viewport.Width (16) - btn.Frame.Width (6) = 10
- Assert.Equal (0, btn.Frame.Y);
- Assert.Equal (6, btn.Frame.Width);
- Assert.Equal (1, btn.Frame.Height);
- Assert.Equal (9, view.Viewport.Width); // frame.Viewport.Width (16) - Dim.Fill (1) - Dim.Function (6) = 9
- Assert.Equal (0, view.Frame.X);
- Assert.Equal (0, view.Frame.Y);
- Assert.Equal (9, view.Frame.Width);
- Assert.Equal (1, view.Frame.Height);
- frame.Draw ();
- var expected = $@"
- ┌────────────────┐
- │012345678 {b}│
- └────────────────┘
- ";
- _ = TestHelpers.AssertDriverContentsWithFrameAre (expected, output);
- }
- // TODO: This actually a SetRelativeLayout/LayoutSubViews test and should be moved
- // TODO: A new test that calls SetRelativeLayout directly is needed.
- [Fact]
- [AutoInitShutdown]
- public void PosAnchorEnd_Equal_Inside_Window ()
- {
- var viewWidth = 10;
- var viewHeight = 1;
- var tv = new TextView
- {
- X = Pos.AnchorEnd (viewWidth), Y = Pos.AnchorEnd (viewHeight), Width = viewWidth, Height = viewHeight
- };
- var win = new Window ();
- win.Add (tv);
- Toplevel top = new ();
- top.Add (win);
- RunState rs = Application.Begin (top);
- Assert.Equal (new (0, 0, 80, 25), top.Frame);
- Assert.Equal (new (0, 0, 80, 25), win.Frame);
- Assert.Equal (new (68, 22, 10, 1), tv.Frame);
- Application.End (rs);
- top.Dispose ();
- }
- //// TODO: This actually a SetRelativeLayout/LayoutSubViews test and should be moved
- //// TODO: A new test that calls SetRelativeLayout directly is needed.
- //[Fact]
- //[AutoInitShutdown]
- //public void PosAnchorEnd_Equal_Inside_Window_With_MenuBar_And_StatusBar_On_Toplevel ()
- //{
- // var viewWidth = 10;
- // var viewHeight = 1;
- // var tv = new TextView
- // {
- // X = Pos.AnchorEnd (viewWidth), Y = Pos.AnchorEnd (viewHeight), Width = viewWidth, Height = viewHeight
- // };
- // var win = new Window ();
- // win.Add (tv);
- // var menu = new MenuBar ();
- // var status = new StatusBar ();
- // Toplevel top = new ();
- // top.Add (win, menu, status);
- // RunState rs = Application.Begin (top);
- // Assert.Equal (new (0, 0, 80, 25), top.Frame);
- // Assert.Equal (new (0, 0, 80, 1), menu.Frame);
- // Assert.Equal (new (0, 24, 80, 1), status.Frame);
- // Assert.Equal (new (0, 1, 80, 23), win.Frame);
- // Assert.Equal (new (68, 20, 10, 1), tv.Frame);
- // Application.End (rs);
- // top.Dispose ();
- //}
- [Fact]
- public void PosAnchorEnd_Calculate_ReturnsExpectedValue ()
- {
- var posAnchorEnd = new PosAnchorEnd (5);
- var result = posAnchorEnd.Calculate (10, new DimAbsolute (2), null, Dimension.None);
- Assert.Equal (5, result);
- }
- [Fact]
- public void PosAnchorEnd_MinusOne_Combine_Works ()
- {
- var pos = AnchorEnd () - 1;
- var result = pos.Calculate (10, new DimAbsolute (2), null, Dimension.None);
- Assert.Equal (7, result);
- }
- }
|