| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- // Copyright (c) The Avalonia Project. All rights reserved.
- // Licensed under the MIT license. See licence.md file in the project root for full license information.
- using Avalonia.Controls.Primitives;
- using Avalonia.LogicalTree;
- using Xunit;
- namespace Avalonia.Controls.UnitTests.Primitives
- {
- public class TrackTests
- {
- [Fact]
- public void Measure_Should_Return_Thumb_DesiredWidth_In_Vertical_Orientation()
- {
- var thumb = new Thumb
- {
- Width = 12,
- };
- var target = new Track
- {
- Thumb = thumb,
- Orientation = Orientation.Vertical,
- };
- target.Measure(new Size(100, 100));
- Assert.Equal(new Size(12, 0), target.DesiredSize);
- }
- [Fact]
- public void Measure_Should_Return_Thumb_DesiredHeight_In_Horizontal_Orientation()
- {
- var thumb = new Thumb
- {
- Height = 12,
- };
- var target = new Track
- {
- Thumb = thumb,
- Orientation = Orientation.Horizontal,
- };
- target.Measure(new Size(100, 100));
- Assert.Equal(new Size(0, 12), target.DesiredSize);
- }
- [Fact]
- public void Should_Arrange_Thumb_In_Horizontal_Orientation()
- {
- var thumb = new Thumb
- {
- Height = 12,
- };
- var target = new Track
- {
- Thumb = thumb,
- Orientation = Orientation.Horizontal,
- Minimum = 100,
- Maximum = 200,
- Height = 12,
- Value = 150,
- ViewportSize = 50,
- };
- target.Measure(new Size(100, 100));
- target.Arrange(new Rect(0, 0, 100, 100));
- Assert.Equal(new Rect(33, 0, 34, 12), thumb.Bounds);
- }
- [Fact]
- public void Should_Arrange_Thumb_In_Vertical_Orientation()
- {
- var thumb = new Thumb
- {
- Width = 12,
- };
- var target = new Track
- {
- Thumb = thumb,
- Orientation = Orientation.Vertical,
- Minimum = 100,
- Maximum = 200,
- Value = 150,
- ViewportSize = 50,
- Width = 12,
- };
- target.Measure(new Size(100, 100));
- target.Arrange(new Rect(0, 0, 100, 100));
- Assert.Equal(new Rect(0, 33, 12, 34), thumb.Bounds);
- }
- [Fact]
- public void Thumb_Should_Fill_Track_When_Minimum_Equals_Maximum()
- {
- var thumb = new Thumb
- {
- Height = 12,
- };
- var target = new Track
- {
- Height = 12,
- Thumb = thumb,
- Orientation = Orientation.Horizontal,
- Minimum = 100,
- Maximum = 100,
- };
- target.Measure(new Size(100, 100));
- target.Arrange(new Rect(0, 0, 100, 100));
- Assert.Equal(new Rect(0, 0, 100, 12), thumb.Bounds);
- }
- [Fact]
- public void Thumb_Should_Be_Logical_Child()
- {
- var thumb = new Thumb
- {
- Height = 12,
- };
- var target = new Track
- {
- Height = 12,
- Thumb = thumb,
- Orientation = Orientation.Horizontal,
- Minimum = 100,
- Maximum = 100,
- };
- Assert.Same(thumb.Parent, target);
- Assert.Equal(new[] { thumb }, ((ILogical)target).LogicalChildren);
- }
- }
- }
|