| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015 |
- using UnitTests;
- using Xunit.Abstractions;
- namespace UnitTests_Parallelizable.ViewsTests;
- public class ScrollSliderTests (ITestOutputHelper output) : FakeDriverBase
- {
- [Fact]
- public void Constructor_Initializes_Correctly ()
- {
- var scrollSlider = new ScrollSlider ();
- Assert.False (scrollSlider.CanFocus);
- Assert.Equal (Orientation.Vertical, scrollSlider.Orientation);
- Assert.Equal (TextDirection.TopBottom_LeftRight, scrollSlider.TextDirection);
- Assert.Equal (Alignment.Center, scrollSlider.TextAlignment);
- Assert.Equal (Alignment.Center, scrollSlider.VerticalTextAlignment);
- scrollSlider.Layout ();
- Assert.Equal (0, scrollSlider.Frame.X);
- Assert.Equal (0, scrollSlider.Frame.Y);
- Assert.Equal (1, scrollSlider.Size);
- Assert.Equal (2048, scrollSlider.VisibleContentSize);
- }
- [Fact]
- public void Add_To_SuperView_Initializes_Correctly ()
- {
- var super = new View
- {
- Id = "super",
- Width = 10,
- Height = 10,
- CanFocus = true
- };
- var scrollSlider = new ScrollSlider ();
- super.Add (scrollSlider);
- Assert.False (scrollSlider.CanFocus);
- Assert.Equal (Orientation.Vertical, scrollSlider.Orientation);
- Assert.Equal (TextDirection.TopBottom_LeftRight, scrollSlider.TextDirection);
- Assert.Equal (Alignment.Center, scrollSlider.TextAlignment);
- Assert.Equal (Alignment.Center, scrollSlider.VerticalTextAlignment);
- scrollSlider.Layout ();
- Assert.Equal (0, scrollSlider.Frame.X);
- Assert.Equal (0, scrollSlider.Frame.Y);
- Assert.Equal (1, scrollSlider.Size);
- Assert.Equal (10, scrollSlider.VisibleContentSize);
- }
- //[Fact]
- //public void OnOrientationChanged_Sets_Size_To_1 ()
- //{
- // var scrollSlider = new ScrollSlider ();
- // scrollSlider.Orientation = Orientation.Horizontal;
- // Assert.Equal (1, scrollSlider.Size);
- //}
- [Fact]
- public void OnOrientationChanged_Sets_Position_To_0 ()
- {
- var super = new View
- {
- Id = "super",
- Width = 10,
- Height = 10
- };
- var scrollSlider = new ScrollSlider ();
- super.Add (scrollSlider);
- scrollSlider.Layout ();
- scrollSlider.Position = 1;
- scrollSlider.Orientation = Orientation.Horizontal;
- Assert.Equal (0, scrollSlider.Position);
- }
- [Fact]
- public void OnOrientationChanged_Updates_TextDirection_And_TextAlignment ()
- {
- var scrollSlider = new ScrollSlider ();
- scrollSlider.Orientation = Orientation.Horizontal;
- Assert.Equal (TextDirection.LeftRight_TopBottom, scrollSlider.TextDirection);
- Assert.Equal (Alignment.Center, scrollSlider.TextAlignment);
- Assert.Equal (Alignment.Center, scrollSlider.VerticalTextAlignment);
- }
- [Theory]
- [CombinatorialData]
- public void Size_Clamps_To_SuperView_Viewport ([CombinatorialRange (-1, 6, 1)] int sliderSize, Orientation orientation)
- {
- var super = new View
- {
- Id = "super",
- Width = 5,
- Height = 5
- };
- var scrollSlider = new ScrollSlider
- {
- Orientation = orientation
- };
- super.Add (scrollSlider);
- scrollSlider.Layout ();
- scrollSlider.Size = sliderSize;
- scrollSlider.Layout ();
- Assert.True (scrollSlider.Size > 0);
- Assert.True (scrollSlider.Size <= 5);
- }
- [Theory]
- [CombinatorialData]
- public void Size_Clamps_To_VisibleContentSizes (
- [CombinatorialRange (1, 6, 1)] int dimension,
- [CombinatorialRange (-1, 6, 1)] int sliderSize,
- Orientation orientation
- )
- {
- var scrollSlider = new ScrollSlider
- {
- Orientation = orientation,
- VisibleContentSize = dimension,
- Size = sliderSize
- };
- scrollSlider.Layout ();
- Assert.True (scrollSlider.Size > 0);
- Assert.True (scrollSlider.Size <= dimension);
- }
- [Theory]
- [CombinatorialData]
- public void CalculateSize_ScrollBounds_0_Returns_1 (
- [CombinatorialRange (-1, 5, 1)] int visibleContentSize,
- [CombinatorialRange (-1, 5, 1)] int scrollableContentSize
- )
- {
- // Arrange
- // Act
- int sliderSize = ScrollSlider.CalculateSize (scrollableContentSize, visibleContentSize, 0);
- // Assert
- Assert.Equal (1, sliderSize);
- }
- [Theory]
- [CombinatorialData]
- public void CalculateSize_ScrollableContentSize_0_Returns_1 (
- [CombinatorialRange (-1, 5, 1)] int visibleContentSize,
- [CombinatorialRange (-1, 5, 1)] int sliderBounds
- )
- {
- // Arrange
- // Act
- int sliderSize = ScrollSlider.CalculateSize (0, visibleContentSize, sliderBounds);
- // Assert
- Assert.Equal (1, sliderSize);
- }
- //[Theory]
- //[CombinatorialData]
- //public void CalculateSize_VisibleContentSize_0_Returns_0 ([CombinatorialRange (-1, 5, 1)] int scrollableContentSize, [CombinatorialRange (-1, 5, 1)] int sliderBounds)
- //{
- // // Arrange
- // // Act
- // var sliderSize = ScrollSlider.CalculateSize (scrollableContentSize, 0, sliderBounds);
- // // Assert
- // Assert.Equal (0, sliderSize);
- //}
- [Theory]
- [InlineData (0, 1, 1, 1)]
- [InlineData (1, 1, 1, 1)]
- [InlineData (1, 2, 1, 1)]
- [InlineData (0, 5, 5, 5)]
- [InlineData (1, 5, 5, 1)]
- [InlineData (2, 5, 5, 2)]
- [InlineData (3, 5, 5, 3)]
- [InlineData (4, 5, 5, 4)]
- [InlineData (5, 5, 5, 5)]
- [InlineData (6, 5, 5, 5)]
- public void CalculateSize_Calculates_Correctly (int visibleContentSize, int scrollableContentSize, int scrollBounds, int expectedSliderSize)
- {
- // Arrange
- // Act
- int sliderSize = ScrollSlider.CalculateSize (scrollableContentSize, visibleContentSize, scrollBounds);
- // Assert
- Assert.Equal (expectedSliderSize, sliderSize);
- }
- [Fact]
- public void VisibleContentSize_Not_Set_Uses_SuperView ()
- {
- View super = new ()
- {
- Id = "super",
- Height = 5,
- Width = 5
- };
- var scrollSlider = new ScrollSlider ();
- super.Add (scrollSlider);
- super.Layout ();
- Assert.Equal (5, scrollSlider.VisibleContentSize);
- }
- [Fact]
- public void VisibleContentSize_Set_Overrides_SuperView ()
- {
- View super = new ()
- {
- Id = "super",
- Height = 5,
- Width = 5
- };
- var scrollSlider = new ScrollSlider
- {
- VisibleContentSize = 10
- };
- super.Add (scrollSlider);
- super.Layout ();
- Assert.Equal (10, scrollSlider.VisibleContentSize);
- super.Height = 3;
- super.Layout ();
- Assert.Equal (10, scrollSlider.VisibleContentSize);
- super.Height = 7;
- super.Layout ();
- Assert.Equal (10, scrollSlider.VisibleContentSize);
- }
- [Theory]
- [CombinatorialData]
- public void VisibleContentSizes_Clamps_0_To_Dimension ([CombinatorialRange (0, 10, 1)] int dimension, Orientation orientation)
- {
- var scrollSlider = new ScrollSlider
- {
- Orientation = orientation,
- VisibleContentSize = dimension
- };
- Assert.InRange (scrollSlider.VisibleContentSize, 1, 10);
- View super = new ()
- {
- Id = "super",
- Height = dimension,
- Width = dimension
- };
- scrollSlider = new()
- {
- Orientation = orientation
- };
- super.Add (scrollSlider);
- super.Layout ();
- Assert.InRange (scrollSlider.VisibleContentSize, 1, 10);
- scrollSlider.VisibleContentSize = dimension;
- Assert.InRange (scrollSlider.VisibleContentSize, 1, 10);
- }
- [Theory]
- //// 0123456789
- //// ---------
- //// ◄█►
- //[InlineData (3, 3, 0, 1, 0)]
- //[InlineData (3, 3, 1, 1, 0)]
- //[InlineData (3, 3, 2, 1, 0)]
- //// 0123456789
- //// ---------
- //// ◄██►
- //[InlineData (4, 4, 0, 2, 0)]
- //[InlineData (4, 4, 1, 2, 0)]
- //[InlineData (4, 4, 2, 2, 0)]
- //[InlineData (4, 4, 3, 2, 0)]
- //[InlineData (4, 4, 4, 2, 0)]
- // 012345
- // ^----
- // █░
- [InlineData (2, 5, 0, 0)]
- // -^---
- // █░
- [InlineData (2, 5, 1, 0)]
- // --^--
- // ░█
- [InlineData (2, 5, 2, 1)]
- // ---^-
- // ░█
- [InlineData (2, 5, 3, 1)]
- // ----^
- // ░█
- [InlineData (2, 5, 4, 1)]
- // 012345
- // ^----
- // █░░
- [InlineData (3, 5, 0, 0)]
- // -^---
- // ░█░
- [InlineData (3, 5, 1, 1)]
- // --^--
- // ░░█
- [InlineData (3, 5, 2, 2)]
- // ---^-
- // ░░█
- [InlineData (3, 5, 3, 2)]
- // ----^
- // ░░█
- [InlineData (3, 5, 4, 2)]
- // 0123456789
- // ^-----
- // █░░
- [InlineData (3, 6, 0, 0)]
- // -^----
- // █░░
- [InlineData (3, 6, 1, 1)]
- // --^---
- // ░█░
- [InlineData (3, 6, 2, 1)]
- // ---^--
- // ░░█
- [InlineData (3, 6, 3, 2)]
- // ----^-
- // ░░█
- [InlineData (3, 6, 4, 2)]
- // -----^
- // ░░█
- [InlineData (3, 6, 5, 2)]
- // 012345
- // ^----
- // ███░
- [InlineData (4, 5, 0, 0)]
- // -^---
- // ░███
- [InlineData (4, 5, 1, 1)]
- // --^--
- // ░███
- [InlineData (4, 5, 2, 1)]
- // ---^-
- // ░███
- [InlineData (4, 5, 3, 1)]
- // ----^
- // ░███
- [InlineData (4, 5, 4, 1)]
- //// 01234
- //// ^---------
- //// ◄█░░►
- //[InlineData (5, 10, 0, 1, 0)]
- //// -^--------
- //// ◄█░░►
- //[InlineData (5, 10, 1, 1, 0)]
- //// --^-------
- //// ◄█░░►
- //[InlineData (5, 10, 2, 1, 0)]
- //// ---^------
- //// ◄█░░►
- //[InlineData (5, 10, 3, 1, 0)]
- //// ----^----
- //// ◄░█░►
- //[InlineData (5, 10, 4, 1, 1)]
- //// -----^---
- //// ◄░█░►
- //[InlineData (5, 10, 5, 1, 1)]
- //// ------^--
- //// ◄░░█►
- //[InlineData (5, 10, 6, 1, 2)]
- //// ------^--
- //// ◄░░█►
- //[InlineData (5, 10, 7, 1, 2)]
- //// -------^-
- //// ◄░░█►
- //[InlineData (5, 10, 8, 1, 2)]
- //// --------^
- //// ◄░░█►
- //[InlineData (5, 10, 9, 1, 2)]
- // 0123456789
- // ████░░░░
- // ^-----------------
- // 012345678901234567890123456789
- // ░████░░░
- // ----^-------------
- // 012345678901234567890123456789
- // ░░████░░
- // --------^---------
- // 012345678901234567890123456789
- // ░░░████░
- // ------------^-----
- // 012345678901234567890123456789
- // ░░░░████
- // ----------------^--
- // 0123456789
- // ███░░░░░
- // ^-----------------
- // 012345678901234567890123456789
- // ░░███░░░
- // --------^---------
- // 012345678901234567890123456789
- // ░░░███░░
- // ------------^-----
- // 012345678901234567890123456789
- // ░░░░███░
- // ----------------^--
- // 012345678901234567890123456789
- // ░░░░░███
- // ----------------^--
- [InlineData (8, 18, 0, 0)]
- [InlineData (8, 18, 1, 0)]
- // 012345678901234567890123456789
- // ░███░░░░
- // --^---------------
- [InlineData (8, 18, 2, 1)]
- [InlineData (8, 18, 3, 2)]
- [InlineData (8, 18, 4, 2)]
- [InlineData (8, 18, 5, 2)]
- [InlineData (8, 18, 6, 3)]
- [InlineData (8, 18, 7, 4)]
- [InlineData (8, 18, 8, 4)]
- [InlineData (8, 18, 9, 4)]
- // 012345678901234567890123456789
- // ░░░░░███
- // ----------^--------
- [InlineData (8, 18, 10, 5)]
- [InlineData (8, 18, 11, 5)]
- [InlineData (8, 18, 12, 5)]
- [InlineData (8, 18, 13, 5)]
- [InlineData (8, 18, 14, 5)]
- [InlineData (8, 18, 15, 5)]
- [InlineData (8, 18, 16, 5)]
- [InlineData (8, 18, 17, 5)]
- [InlineData (8, 18, 18, 5)]
- [InlineData (8, 18, 19, 5)]
- [InlineData (8, 18, 20, 5)]
- [InlineData (8, 18, 21, 5)]
- [InlineData (8, 18, 22, 5)]
- [InlineData (8, 18, 23, 5)]
- // ------------------ ^
- [InlineData (8, 18, 24, 5)]
- [InlineData (8, 18, 25, 5)]
- //// 0123456789
- //// ◄████░░░░►
- //// ^-----------------
- //[InlineData (10, 20, 0, 5, 0)]
- //[InlineData (10, 20, 1, 5, 0)]
- //[InlineData (10, 20, 2, 5, 0)]
- //[InlineData (10, 20, 3, 5, 0)]
- //[InlineData (10, 20, 4, 5, 1)]
- //[InlineData (10, 20, 5, 5, 1)]
- //[InlineData (10, 20, 6, 5, 1)]
- //[InlineData (10, 20, 7, 5, 2)]
- //[InlineData (10, 20, 8, 5, 2)]
- //[InlineData (10, 20, 9, 5, 2)]
- //[InlineData (10, 20, 10, 5, 3)]
- //[InlineData (10, 20, 11, 5, 3)]
- //[InlineData (10, 20, 12, 5, 3)]
- //[InlineData (10, 20, 13, 5, 3)]
- //[InlineData (10, 20, 14, 5, 4)]
- //[InlineData (10, 20, 15, 5, 4)]
- //[InlineData (10, 20, 16, 5, 4)]
- //[InlineData (10, 20, 17, 5, 5)]
- //[InlineData (10, 20, 18, 5, 5)]
- //[InlineData (10, 20, 19, 5, 5)]
- //[InlineData (10, 20, 20, 5, 6)]
- //[InlineData (10, 20, 21, 5, 6)]
- //[InlineData (10, 20, 22, 5, 6)]
- //[InlineData (10, 20, 23, 5, 6)]
- //[InlineData (10, 20, 24, 5, 6)]
- //[InlineData (10, 20, 25, 5, 6)]
- public void CalculatePosition_Calculates_Correctly (int visibleContentSize, int scrollableContentSize, int contentPosition, int expectedSliderPosition)
- {
- // Arrange
- // Act
- int sliderPosition = ScrollSlider.CalculatePosition (
- scrollableContentSize,
- visibleContentSize,
- contentPosition,
- visibleContentSize,
- NavigationDirection.Forward);
- // Assert
- Assert.Equal (expectedSliderPosition, sliderPosition);
- }
- [Theory]
- [InlineData (8, 18, 0, 0)]
- public void CalculateContentPosition_Calculates_Correctly (
- int visibleContentSize,
- int scrollableContentSize,
- int sliderPosition,
- int expectedContentPosition
- )
- {
- // Arrange
- // Act
- int contentPosition = ScrollSlider.CalculateContentPosition (
- scrollableContentSize,
- visibleContentSize,
- sliderPosition,
- visibleContentSize);
- // Assert
- Assert.Equal (expectedContentPosition, contentPosition);
- }
- [Theory]
- [CombinatorialData]
- public void ClampPosition_WithSuperView_Clamps_To_ViewPort_Minus_Size_If_VisibleContentSize_Not_Set (
- [CombinatorialRange (10, 10, 1)] int dimension,
- [CombinatorialRange (1, 5, 1)] int sliderSize,
- [CombinatorialRange (-1, 10, 2)] int sliderPosition,
- Orientation orientation
- )
- {
- View super = new ()
- {
- Id = "super",
- Height = dimension,
- Width = dimension
- };
- var scrollSlider = new ScrollSlider
- {
- Orientation = orientation,
- Size = sliderSize
- };
- super.Add (scrollSlider);
- super.Layout ();
- Assert.Equal (dimension, scrollSlider.VisibleContentSize);
- int clampedPosition = scrollSlider.ClampPosition (sliderPosition);
- Assert.InRange (clampedPosition, 0, dimension - sliderSize);
- }
- [Theory]
- [CombinatorialData]
- public void ClampPosition_WithSuperView_Clamps_To_VisibleContentSize_Minus_Size (
- [CombinatorialRange (10, 10, 1)] int dimension,
- [CombinatorialRange (1, 5, 1)] int sliderSize,
- [CombinatorialRange (-1, 10, 2)] int sliderPosition,
- Orientation orientation
- )
- {
- View super = new ()
- {
- Id = "super",
- Height = dimension + 2,
- Width = dimension + 2
- };
- var scrollSlider = new ScrollSlider
- {
- Orientation = orientation,
- VisibleContentSize = dimension,
- Size = sliderSize
- };
- super.Add (scrollSlider);
- super.Layout ();
- int clampedPosition = scrollSlider.ClampPosition (sliderPosition);
- Assert.InRange (clampedPosition, 0, dimension - sliderSize);
- }
- [Theory]
- [CombinatorialData]
- public void ClampPosition_NoSuperView_Clamps_To_VisibleContentSize_Minus_Size (
- [CombinatorialRange (10, 10, 1)] int dimension,
- [CombinatorialRange (1, 5, 1)] int sliderSize,
- [CombinatorialRange (-1, 10, 2)] int sliderPosition,
- Orientation orientation
- )
- {
- var scrollSlider = new ScrollSlider
- {
- Orientation = orientation,
- VisibleContentSize = dimension,
- Size = sliderSize
- };
- int clampedPosition = scrollSlider.ClampPosition (sliderPosition);
- Assert.InRange (clampedPosition, 0, dimension - sliderSize);
- }
- [Theory]
- [CombinatorialData]
- public void Position_Clamps_To_VisibleContentSize (
- [CombinatorialRange (0, 5, 1)] int dimension,
- [CombinatorialRange (1, 5, 1)] int sliderSize,
- [CombinatorialRange (-1, 10, 2)] int sliderPosition,
- Orientation orientation
- )
- {
- var scrollSlider = new ScrollSlider
- {
- Orientation = orientation,
- VisibleContentSize = dimension,
- Size = sliderSize,
- Position = sliderPosition
- };
- Assert.True (scrollSlider.Position <= 5);
- }
- [Theory]
- [CombinatorialData]
- public void Position_Clamps_To_SuperView_Viewport (
- [CombinatorialRange (0, 5, 1)] int sliderSize,
- [CombinatorialRange (-2, 10, 2)] int sliderPosition,
- Orientation orientation
- )
- {
- var super = new View
- {
- Id = "super",
- Width = 5,
- Height = 5
- };
- var scrollSlider = new ScrollSlider
- {
- Orientation = orientation
- };
- super.Add (scrollSlider);
- scrollSlider.Size = sliderSize;
- scrollSlider.Layout ();
- scrollSlider.Position = sliderPosition;
- Assert.True (scrollSlider.Position <= 5);
- }
- [Theory]
- [SetupFakeApplication]
- [InlineData (
- 3,
- 10,
- 1,
- 0,
- Orientation.Vertical,
- @"
- ┌───┐
- │███│
- │ │
- │ │
- │ │
- │ │
- │ │
- │ │
- │ │
- │ │
- │ │
- └───┘")]
- [InlineData (
- 10,
- 1,
- 3,
- 0,
- Orientation.Horizontal,
- @"
- ┌──────────┐
- │███ │
- └──────────┘")]
- [InlineData (
- 3,
- 10,
- 3,
- 0,
- Orientation.Vertical,
- @"
- ┌───┐
- │███│
- │███│
- │███│
- │ │
- │ │
- │ │
- │ │
- │ │
- │ │
- │ │
- └───┘")]
- [InlineData (
- 3,
- 10,
- 5,
- 0,
- Orientation.Vertical,
- @"
- ┌───┐
- │███│
- │███│
- │███│
- │███│
- │███│
- │ │
- │ │
- │ │
- │ │
- │ │
- └───┘")]
- [InlineData (
- 3,
- 10,
- 5,
- 1,
- Orientation.Vertical,
- @"
- ┌───┐
- │ │
- │███│
- │███│
- │███│
- │███│
- │███│
- │ │
- │ │
- │ │
- │ │
- └───┘")]
- [InlineData (
- 3,
- 10,
- 5,
- 4,
- Orientation.Vertical,
- @"
- ┌───┐
- │ │
- │ │
- │ │
- │ │
- │███│
- │███│
- │███│
- │███│
- │███│
- │ │
- └───┘")]
- [InlineData (
- 3,
- 10,
- 5,
- 5,
- Orientation.Vertical,
- @"
- ┌───┐
- │ │
- │ │
- │ │
- │ │
- │ │
- │███│
- │███│
- │███│
- │███│
- │███│
- └───┘")]
- [InlineData (
- 3,
- 10,
- 5,
- 6,
- Orientation.Vertical,
- @"
- ┌───┐
- │ │
- │ │
- │ │
- │ │
- │ │
- │███│
- │███│
- │███│
- │███│
- │███│
- └───┘")]
- [InlineData (
- 3,
- 10,
- 10,
- 0,
- Orientation.Vertical,
- @"
- ┌───┐
- │███│
- │███│
- │███│
- │███│
- │███│
- │███│
- │███│
- │███│
- │███│
- │███│
- └───┘")]
- [InlineData (
- 3,
- 10,
- 10,
- 5,
- Orientation.Vertical,
- @"
- ┌───┐
- │███│
- │███│
- │███│
- │███│
- │███│
- │███│
- │███│
- │███│
- │███│
- │███│
- └───┘")]
- [InlineData (
- 3,
- 10,
- 11,
- 0,
- Orientation.Vertical,
- @"
- ┌───┐
- │███│
- │███│
- │███│
- │███│
- │███│
- │███│
- │███│
- │███│
- │███│
- │███│
- └───┘")]
- [InlineData (
- 10,
- 3,
- 5,
- 0,
- Orientation.Horizontal,
- @"
- ┌──────────┐
- │█████ │
- │█████ │
- │█████ │
- └──────────┘")]
- [InlineData (
- 10,
- 3,
- 5,
- 1,
- Orientation.Horizontal,
- @"
- ┌──────────┐
- │ █████ │
- │ █████ │
- │ █████ │
- └──────────┘")]
- [InlineData (
- 10,
- 3,
- 5,
- 4,
- Orientation.Horizontal,
- @"
- ┌──────────┐
- │ █████ │
- │ █████ │
- │ █████ │
- └──────────┘")]
- [InlineData (
- 10,
- 3,
- 5,
- 5,
- Orientation.Horizontal,
- @"
- ┌──────────┐
- │ █████│
- │ █████│
- │ █████│
- └──────────┘")]
- [InlineData (
- 10,
- 3,
- 5,
- 6,
- Orientation.Horizontal,
- @"
- ┌──────────┐
- │ █████│
- │ █████│
- │ █████│
- └──────────┘")]
- [InlineData (
- 10,
- 3,
- 10,
- 0,
- Orientation.Horizontal,
- @"
- ┌──────────┐
- │██████████│
- │██████████│
- │██████████│
- └──────────┘")]
- [InlineData (
- 10,
- 3,
- 10,
- 5,
- Orientation.Horizontal,
- @"
- ┌──────────┐
- │██████████│
- │██████████│
- │██████████│
- └──────────┘")]
- [InlineData (
- 10,
- 3,
- 11,
- 0,
- Orientation.Horizontal,
- @"
- ┌──────────┐
- │██████████│
- │██████████│
- │██████████│
- └──────────┘")]
- public void Draws_Correctly (int superViewportWidth, int superViewportHeight, int sliderSize, int position, Orientation orientation, string expected)
- {
- IDriver driver = CreateFakeDriver ();
- var super = new Window
- {
- Driver = driver,
- Id = "super",
- Width = superViewportWidth + 2,
- Height = superViewportHeight + 2
- };
- var scrollSlider = new ScrollSlider
- {
- Orientation = orientation,
- Size = sliderSize,
- //Position = position,
- };
- Assert.Equal (sliderSize, scrollSlider.Size);
- super.Add (scrollSlider);
- scrollSlider.Position = position;
- super.Layout ();
- super.Draw ();
- _ = DriverAssert.AssertDriverContentsWithFrameAre (expected, output, driver);
- }
- }
|