csharpc-sharpdotnetxamlavaloniauicross-platformcross-platform-xamlavaloniaguimulti-platformuser-interfacedotnetcore
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
157 lines
4.3 KiB
157 lines
4.3 KiB
// 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;
|
|
using Xunit;
|
|
|
|
namespace Avalonia.Layout.UnitTests
|
|
{
|
|
public class MeasureTests
|
|
{
|
|
[Fact]
|
|
public void Margin_Should_Be_Included_In_DesiredSize()
|
|
{
|
|
var decorator = new Decorator
|
|
{
|
|
Width = 100,
|
|
Height = 100,
|
|
Margin = new Thickness(8),
|
|
};
|
|
|
|
decorator.Measure(Size.Infinity);
|
|
|
|
Assert.Equal(new Size(116, 116), decorator.DesiredSize);
|
|
}
|
|
|
|
[Fact]
|
|
public void Invalidating_Child_Should_Not_Invalidate_Parent()
|
|
{
|
|
var panel = new StackPanel();
|
|
var child = new Border();
|
|
panel.Children.Add(child);
|
|
|
|
panel.Measure(new Size(double.PositiveInfinity, double.PositiveInfinity));
|
|
|
|
Assert.Equal(new Size(0, 0), panel.DesiredSize);
|
|
|
|
child.Width = 100;
|
|
child.Height = 100;
|
|
|
|
Assert.True(panel.IsMeasureValid);
|
|
Assert.False(child.IsMeasureValid);
|
|
|
|
panel.Measure(new Size(double.PositiveInfinity, double.PositiveInfinity));
|
|
Assert.Equal(new Size(0, 0), panel.DesiredSize);
|
|
}
|
|
|
|
[Fact]
|
|
public void Removing_From_Parent_Should_Invalidate_Measure_Of_Control_And_Descendants()
|
|
{
|
|
var panel = new StackPanel();
|
|
var child2 = new Border();
|
|
var child1 = new Border { Child = child2 };
|
|
panel.Children.Add(child1);
|
|
|
|
panel.Measure(new Size(double.PositiveInfinity, double.PositiveInfinity));
|
|
Assert.True(child1.IsMeasureValid);
|
|
Assert.True(child2.IsMeasureValid);
|
|
|
|
panel.Children.Remove(child1);
|
|
Assert.False(child1.IsMeasureValid);
|
|
Assert.False(child2.IsMeasureValid);
|
|
}
|
|
|
|
[Fact]
|
|
public void Negative_Margin_Larger_Than_Constraint_Should_Request_Width_0()
|
|
{
|
|
Control target;
|
|
|
|
var outer = new Decorator
|
|
{
|
|
Width = 100,
|
|
Height = 100,
|
|
Child = target = new Control
|
|
{
|
|
Margin = new Thickness(-100, 0, 0, 0),
|
|
}
|
|
};
|
|
|
|
outer.Measure(Size.Infinity);
|
|
|
|
Assert.Equal(0, target.DesiredSize.Width);
|
|
}
|
|
|
|
[Fact]
|
|
public void Negative_Margin_Larger_Than_Constraint_Should_Request_Height_0()
|
|
{
|
|
Control target;
|
|
|
|
var outer = new Decorator
|
|
{
|
|
Width = 100,
|
|
Height = 100,
|
|
Child = target = new Control
|
|
{
|
|
Margin = new Thickness(0, -100, 0, 0),
|
|
}
|
|
};
|
|
|
|
outer.Measure(Size.Infinity);
|
|
|
|
Assert.Equal(0, target.DesiredSize.Height);
|
|
}
|
|
|
|
[Fact]
|
|
public void Margin_Should_Affect_AvailableSize()
|
|
{
|
|
MeasureTest target;
|
|
|
|
var outer = new Decorator
|
|
{
|
|
Width = 100,
|
|
Height = 100,
|
|
Child = target = new MeasureTest
|
|
{
|
|
Margin = new Thickness(10),
|
|
}
|
|
};
|
|
|
|
outer.Measure(Size.Infinity);
|
|
|
|
Assert.Equal(new Size(80, 80), target.AvailableSize);
|
|
}
|
|
|
|
[Fact]
|
|
public void Margin_Should_Be_Applied_Before_Width_Height()
|
|
{
|
|
MeasureTest target;
|
|
|
|
var outer = new Decorator
|
|
{
|
|
Width = 100,
|
|
Height = 100,
|
|
Child = target = new MeasureTest
|
|
{
|
|
Width = 80,
|
|
Height = 80,
|
|
Margin = new Thickness(10),
|
|
}
|
|
};
|
|
|
|
outer.Measure(Size.Infinity);
|
|
|
|
Assert.Equal(new Size(80, 80), target.AvailableSize);
|
|
}
|
|
|
|
class MeasureTest : Control
|
|
{
|
|
public Size? AvailableSize { get; private set; }
|
|
|
|
protected override Size MeasureOverride(Size availableSize)
|
|
{
|
|
AvailableSize = availableSize;
|
|
return availableSize;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|