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.
449 lines
17 KiB
449 lines
17 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 System.Collections.Generic;
|
|
using System.Linq;
|
|
using Avalonia.UnitTests;
|
|
using Xunit;
|
|
|
|
namespace Avalonia.Controls.UnitTests
|
|
{
|
|
public class GridTests
|
|
{
|
|
[Fact]
|
|
public void Calculates_Colspan_Correctly()
|
|
{
|
|
var target = new Grid
|
|
{
|
|
ColumnDefinitions = new ColumnDefinitions
|
|
{
|
|
new ColumnDefinition(GridLength.Auto),
|
|
new ColumnDefinition(new GridLength(4, GridUnitType.Pixel)),
|
|
new ColumnDefinition(GridLength.Auto),
|
|
},
|
|
RowDefinitions = new RowDefinitions
|
|
{
|
|
new RowDefinition(GridLength.Auto),
|
|
new RowDefinition(GridLength.Auto),
|
|
},
|
|
Children =
|
|
{
|
|
new Border
|
|
{
|
|
Width = 100,
|
|
Height = 25,
|
|
[Grid.ColumnSpanProperty] = 3,
|
|
},
|
|
new Border
|
|
{
|
|
Width = 150,
|
|
Height = 25,
|
|
[Grid.RowProperty] = 1,
|
|
},
|
|
new Border
|
|
{
|
|
Width = 50,
|
|
Height = 25,
|
|
[Grid.RowProperty] = 1,
|
|
[Grid.ColumnProperty] = 2,
|
|
}
|
|
},
|
|
};
|
|
|
|
target.Measure(Size.Infinity);
|
|
|
|
// Issue #25 only appears after a second measure
|
|
target.InvalidateMeasure();
|
|
target.Measure(Size.Infinity);
|
|
|
|
target.Arrange(new Rect(target.DesiredSize));
|
|
|
|
Assert.Equal(new Size(204, 50), target.Bounds.Size);
|
|
Assert.Equal(150d, target.ColumnDefinitions[0].ActualWidth);
|
|
Assert.Equal(4d, target.ColumnDefinitions[1].ActualWidth);
|
|
Assert.Equal(50d, target.ColumnDefinitions[2].ActualWidth);
|
|
Assert.Equal(new Rect(52, 0, 100, 25), target.Children[0].Bounds);
|
|
Assert.Equal(new Rect(0, 25, 150, 25), target.Children[1].Bounds);
|
|
Assert.Equal(new Rect(154, 25, 50, 25), target.Children[2].Bounds);
|
|
}
|
|
|
|
[Fact]
|
|
public void Layout_EmptyColumnRow_LayoutLikeANormalPanel()
|
|
{
|
|
// Arrange & Action
|
|
var grid = GridMock.New(arrange: new Size(600, 200));
|
|
|
|
// Assert
|
|
GridAssert.ChildrenWidth(grid, 600);
|
|
GridAssert.ChildrenHeight(grid, 200);
|
|
}
|
|
|
|
[Fact]
|
|
public void Layout_PixelRowColumn_BoundsCorrect()
|
|
{
|
|
// Arrange & Action
|
|
var rowGrid = GridMock.New(new RowDefinitions("100,200,300"));
|
|
var columnGrid = GridMock.New(new ColumnDefinitions("50,100,150"));
|
|
|
|
// Assert
|
|
GridAssert.ChildrenHeight(rowGrid, 100, 200, 300);
|
|
GridAssert.ChildrenWidth(columnGrid, 50, 100, 150);
|
|
}
|
|
|
|
[Fact]
|
|
public void Layout_StarRowColumn_BoundsCorrect()
|
|
{
|
|
// Arrange & Action
|
|
var rowGrid = GridMock.New(new RowDefinitions("1*,2*,3*"), 600);
|
|
var columnGrid = GridMock.New(new ColumnDefinitions("*,*,2*"), 600);
|
|
|
|
// Assert
|
|
GridAssert.ChildrenHeight(rowGrid, 100, 200, 300);
|
|
GridAssert.ChildrenWidth(columnGrid, 150, 150, 300);
|
|
}
|
|
|
|
[Fact]
|
|
public void Layout_MixPixelStarRowColumn_BoundsCorrect()
|
|
{
|
|
// Arrange & Action
|
|
var rowGrid = GridMock.New(new RowDefinitions("1*,2*,150"), 600);
|
|
var columnGrid = GridMock.New(new ColumnDefinitions("1*,2*,150"), 600);
|
|
|
|
// Assert
|
|
GridAssert.ChildrenHeight(rowGrid, 150, 300, 150);
|
|
GridAssert.ChildrenWidth(columnGrid, 150, 300, 150);
|
|
}
|
|
|
|
[Fact]
|
|
public void Layout_StarRowColumnWithMinLength_BoundsCorrect()
|
|
{
|
|
// Arrange & Action
|
|
var rowGrid = GridMock.New(new RowDefinitions
|
|
{
|
|
new RowDefinition(1, GridUnitType.Star) { MinHeight = 200 },
|
|
new RowDefinition(1, GridUnitType.Star),
|
|
new RowDefinition(1, GridUnitType.Star),
|
|
}, 300);
|
|
var columnGrid = GridMock.New(new ColumnDefinitions
|
|
{
|
|
new ColumnDefinition(1, GridUnitType.Star) { MinWidth = 200 },
|
|
new ColumnDefinition(1, GridUnitType.Star),
|
|
new ColumnDefinition(1, GridUnitType.Star),
|
|
}, 300);
|
|
|
|
// Assert
|
|
GridAssert.ChildrenHeight(rowGrid, 200, 50, 50);
|
|
GridAssert.ChildrenWidth(columnGrid, 200, 50, 50);
|
|
}
|
|
|
|
[Fact]
|
|
public void Layout_StarRowColumnWithMaxLength_BoundsCorrect()
|
|
{
|
|
// Arrange & Action
|
|
var rowGrid = GridMock.New(new RowDefinitions
|
|
{
|
|
new RowDefinition(1, GridUnitType.Star) { MaxHeight = 200 },
|
|
new RowDefinition(1, GridUnitType.Star),
|
|
new RowDefinition(1, GridUnitType.Star),
|
|
}, 800);
|
|
var columnGrid = GridMock.New(new ColumnDefinitions
|
|
{
|
|
new ColumnDefinition(1, GridUnitType.Star) { MaxWidth = 200 },
|
|
new ColumnDefinition(1, GridUnitType.Star),
|
|
new ColumnDefinition(1, GridUnitType.Star),
|
|
}, 800);
|
|
|
|
// Assert
|
|
GridAssert.ChildrenHeight(rowGrid, 200, 300, 300);
|
|
GridAssert.ChildrenWidth(columnGrid, 200, 300, 300);
|
|
}
|
|
|
|
[Fact]
|
|
public void Changing_Child_Column_Invalidates_Measure()
|
|
{
|
|
Border child;
|
|
var target = new Grid
|
|
{
|
|
ColumnDefinitions = new ColumnDefinitions("*,*"),
|
|
Children =
|
|
{
|
|
(child = new Border
|
|
{
|
|
[Grid.ColumnProperty] = 0,
|
|
}),
|
|
}
|
|
};
|
|
|
|
target.Measure(Size.Infinity);
|
|
target.Arrange(new Rect(target.DesiredSize));
|
|
Assert.True(target.IsMeasureValid);
|
|
|
|
Grid.SetColumn(child, 1);
|
|
|
|
Assert.False(target.IsMeasureValid);
|
|
}
|
|
|
|
[Fact]
|
|
public void All_Descendant_Grids_Are_Registered_When_Added_After_Setting_Scope()
|
|
{
|
|
var grids = new[] { new Grid(), new Grid(), new Grid() };
|
|
var scope = new Panel();
|
|
scope.Children.AddRange(grids);
|
|
|
|
var root = new TestRoot();
|
|
root.SetValue(Grid.IsSharedSizeScopeProperty, true);
|
|
root.Child = scope;
|
|
|
|
Assert.All(grids, g => Assert.True(g.PrivateSharedSizeScope != null));
|
|
}
|
|
|
|
[Fact]
|
|
public void All_Descendant_Grids_Are_Registered_When_Setting_Scope()
|
|
{
|
|
var grids = new[] { new Grid(), new Grid(), new Grid() };
|
|
var scope = new Panel();
|
|
scope.Children.AddRange(grids);
|
|
|
|
var root = new TestRoot();
|
|
root.Child = scope;
|
|
root.SetValue(Grid.IsSharedSizeScopeProperty, true);
|
|
|
|
Assert.All(grids, g => Assert.True(g.PrivateSharedSizeScope != null));
|
|
}
|
|
|
|
[Fact]
|
|
public void All_Descendant_Grids_Are_Unregistered_When_Resetting_Scope()
|
|
{
|
|
var grids = new[] { new Grid(), new Grid(), new Grid() };
|
|
var scope = new Panel();
|
|
scope.Children.AddRange(grids);
|
|
|
|
var root = new TestRoot();
|
|
root.SetValue(Grid.IsSharedSizeScopeProperty, true);
|
|
root.Child = scope;
|
|
|
|
Assert.All(grids, g => Assert.True(g.PrivateSharedSizeScope != null));
|
|
root.SetValue(Grid.IsSharedSizeScopeProperty, false);
|
|
Assert.All(grids, g => Assert.False(g.PrivateSharedSizeScope != null));
|
|
Assert.Equal(null, root.GetValue(Grid.PrivateSharedSizeScopeProperty));
|
|
}
|
|
|
|
[Fact]
|
|
public void Size_Is_Propagated_Between_Grids()
|
|
{
|
|
var grids = new[] { CreateGrid("A", null), CreateGrid(("A", new GridLength(30)), (null, new GridLength())) };
|
|
var scope = new Panel();
|
|
scope.Children.AddRange(grids);
|
|
|
|
var root = new TestRoot();
|
|
root.SetValue(Grid.IsSharedSizeScopeProperty, true);
|
|
root.Child = scope;
|
|
|
|
root.Measure(new Size(50, 50));
|
|
root.Arrange(new Rect(new Point(), new Point(50, 50)));
|
|
Assert.Equal(30, grids[0].ColumnDefinitions[0].ActualWidth);
|
|
}
|
|
|
|
[Fact]
|
|
public void Size_Propagation_Is_Constrained_To_Innermost_Scope()
|
|
{
|
|
var grids = new[] { CreateGrid("A", null), CreateGrid(("A", new GridLength(30)), (null, new GridLength())) };
|
|
var innerScope = new Panel();
|
|
innerScope.Children.AddRange(grids);
|
|
innerScope.SetValue(Grid.IsSharedSizeScopeProperty, true);
|
|
|
|
var outerGrid = CreateGrid(("A", new GridLength(0)));
|
|
var outerScope = new Panel();
|
|
outerScope.Children.AddRange(new[] { outerGrid, innerScope });
|
|
|
|
var root = new TestRoot();
|
|
root.SetValue(Grid.IsSharedSizeScopeProperty, true);
|
|
root.Child = outerScope;
|
|
|
|
root.Measure(new Size(50, 50));
|
|
root.Arrange(new Rect(new Point(), new Point(50, 50)));
|
|
Assert.Equal(0, outerGrid.ColumnDefinitions[0].ActualWidth);
|
|
}
|
|
|
|
[Fact]
|
|
public void Size_Is_Propagated_Between_Rows_And_Columns()
|
|
{
|
|
var grid = new Grid
|
|
{
|
|
ColumnDefinitions = new ColumnDefinitions("*,30"),
|
|
RowDefinitions = new RowDefinitions("*,10")
|
|
};
|
|
|
|
grid.ColumnDefinitions[1].SharedSizeGroup = "A";
|
|
grid.RowDefinitions[1].SharedSizeGroup = "A";
|
|
|
|
var root = new TestRoot();
|
|
root.Child = grid;
|
|
root.SetValue(Grid.IsSharedSizeScopeProperty, true);
|
|
root.Measure(new Size(50, 50));
|
|
root.Arrange(new Rect(new Point(), new Point(50, 50)));
|
|
Assert.Equal(30, grid.RowDefinitions[1].ActualHeight);
|
|
}
|
|
|
|
[Fact]
|
|
public void Size_Group_Changes_Are_Tracked()
|
|
{
|
|
var grids = new[] {
|
|
CreateGrid((null, new GridLength(0, GridUnitType.Auto)), (null, new GridLength())),
|
|
CreateGrid(("A", new GridLength(30)), (null, new GridLength())) };
|
|
var scope = new Panel();
|
|
scope.Children.AddRange(grids);
|
|
|
|
var root = new TestRoot();
|
|
root.SetValue(Grid.IsSharedSizeScopeProperty, true);
|
|
root.Child = scope;
|
|
|
|
root.Measure(new Size(50, 50));
|
|
root.Arrange(new Rect(new Point(), new Point(50, 50)));
|
|
Assert.Equal(0, grids[0].ColumnDefinitions[0].ActualWidth);
|
|
|
|
grids[0].ColumnDefinitions[0].SharedSizeGroup = "A";
|
|
|
|
root.Measure(new Size(51, 51));
|
|
root.Arrange(new Rect(new Point(), new Point(51, 51)));
|
|
Assert.Equal(30, grids[0].ColumnDefinitions[0].ActualWidth);
|
|
|
|
grids[0].ColumnDefinitions[0].SharedSizeGroup = null;
|
|
|
|
root.Measure(new Size(52, 52));
|
|
root.Arrange(new Rect(new Point(), new Point(52, 52)));
|
|
Assert.Equal(0, grids[0].ColumnDefinitions[0].ActualWidth);
|
|
}
|
|
|
|
[Fact]
|
|
public void Collection_Changes_Are_Tracked()
|
|
{
|
|
var grid = CreateGrid(
|
|
("A", new GridLength(20)),
|
|
("A", new GridLength(30)),
|
|
("A", new GridLength(40)),
|
|
(null, new GridLength()));
|
|
|
|
var scope = new Panel();
|
|
scope.Children.Add(grid);
|
|
|
|
var root = new TestRoot();
|
|
root.SetValue(Grid.IsSharedSizeScopeProperty, true);
|
|
root.Child = scope;
|
|
|
|
grid.Measure(new Size(200, 200));
|
|
grid.Arrange(new Rect(new Point(), new Point(200, 200)));
|
|
Assert.All(grid.ColumnDefinitions.Where(cd => cd.SharedSizeGroup == "A"), cd => Assert.Equal(40, cd.ActualWidth));
|
|
|
|
grid.ColumnDefinitions.RemoveAt(2);
|
|
|
|
grid.Measure(new Size(200, 200));
|
|
grid.Arrange(new Rect(new Point(), new Point(200, 200)));
|
|
Assert.All(grid.ColumnDefinitions.Where(cd => cd.SharedSizeGroup == "A"), cd => Assert.Equal(30, cd.ActualWidth));
|
|
|
|
grid.ColumnDefinitions.Insert(1, new ColumnDefinition { Width = new GridLength(35), SharedSizeGroup = "A" });
|
|
|
|
grid.Measure(new Size(200, 200));
|
|
grid.Arrange(new Rect(new Point(), new Point(200, 200)));
|
|
Assert.All(grid.ColumnDefinitions.Where(cd => cd.SharedSizeGroup == "A"), cd => Assert.Equal(35, cd.ActualWidth));
|
|
|
|
grid.ColumnDefinitions[1] = new ColumnDefinition { Width = new GridLength(10), SharedSizeGroup = "A" };
|
|
|
|
grid.Measure(new Size(200, 200));
|
|
grid.Arrange(new Rect(new Point(), new Point(200, 200)));
|
|
Assert.All(grid.ColumnDefinitions.Where(cd => cd.SharedSizeGroup == "A"), cd => Assert.Equal(30, cd.ActualWidth));
|
|
|
|
grid.ColumnDefinitions[1] = new ColumnDefinition { Width = new GridLength(50), SharedSizeGroup = "A" };
|
|
|
|
grid.Measure(new Size(200, 200));
|
|
grid.Arrange(new Rect(new Point(), new Point(200, 200)));
|
|
Assert.All(grid.ColumnDefinitions.Where(cd => cd.SharedSizeGroup == "A"), cd => Assert.Equal(50, cd.ActualWidth));
|
|
}
|
|
|
|
[Fact]
|
|
public void Size_Priorities_Are_Maintained()
|
|
{
|
|
var sizers = new List<Control>();
|
|
var grid = CreateGrid(
|
|
("A", new GridLength(20)),
|
|
("A", new GridLength(20, GridUnitType.Auto)),
|
|
("A", new GridLength(1, GridUnitType.Star)),
|
|
("A", new GridLength(1, GridUnitType.Star)),
|
|
(null, new GridLength()));
|
|
for (int i = 0; i < 3; i++)
|
|
sizers.Add(AddSizer(grid, i, 6 + i * 6));
|
|
var scope = new Panel();
|
|
scope.Children.Add(grid);
|
|
|
|
var root = new TestRoot();
|
|
root.SetValue(Grid.IsSharedSizeScopeProperty, true);
|
|
root.Child = scope;
|
|
|
|
grid.Measure(new Size(100, 100));
|
|
grid.Arrange(new Rect(new Point(), new Point(100, 100)));
|
|
// all in group are equal to the first fixed column
|
|
Assert.All(grid.ColumnDefinitions.Where(cd => cd.SharedSizeGroup == "A"), cd => Assert.Equal(20, cd.ActualWidth));
|
|
|
|
grid.ColumnDefinitions[0].SharedSizeGroup = null;
|
|
|
|
grid.Measure(new Size(100, 100));
|
|
grid.Arrange(new Rect(new Point(), new Point(100, 100)));
|
|
// all in group are equal to width (MinWidth) of the sizer in the second column
|
|
Assert.All(grid.ColumnDefinitions.Where(cd => cd.SharedSizeGroup == "A"), cd => Assert.Equal(6 + 1 * 6, cd.ActualWidth));
|
|
|
|
grid.ColumnDefinitions[1].SharedSizeGroup = null;
|
|
|
|
grid.Measure(new Size(double.PositiveInfinity, 100));
|
|
grid.Arrange(new Rect(new Point(), new Point(100, 100)));
|
|
// with no constraint star columns default to the MinWidth of the sizer in the column
|
|
Assert.All(grid.ColumnDefinitions.Where(cd => cd.SharedSizeGroup == "A"), cd => Assert.Equal(6 + 2 * 6, cd.ActualWidth));
|
|
}
|
|
|
|
// grid creators
|
|
private Grid CreateGrid(params string[] columnGroups)
|
|
{
|
|
return CreateGrid(columnGroups.Select(s => (s, ColumnDefinition.WidthProperty.GetDefaultValue(typeof(ColumnDefinition)))).ToArray());
|
|
}
|
|
|
|
private Grid CreateGrid(params (string name, GridLength width)[] columns)
|
|
{
|
|
return CreateGrid(columns.Select(c =>
|
|
(c.name, c.width, ColumnDefinition.MinWidthProperty.GetDefaultValue(typeof(ColumnDefinition)))).ToArray());
|
|
}
|
|
|
|
private Grid CreateGrid(params (string name, GridLength width, double minWidth)[] columns)
|
|
{
|
|
return CreateGrid(columns.Select(c =>
|
|
(c.name, c.width, c.minWidth, ColumnDefinition.MaxWidthProperty.GetDefaultValue(typeof(ColumnDefinition)))).ToArray());
|
|
}
|
|
|
|
private Grid CreateGrid(params (string name, GridLength width, double minWidth, double maxWidth)[] columns)
|
|
{
|
|
var columnDefinitions = new ColumnDefinitions();
|
|
|
|
columnDefinitions.AddRange(
|
|
columns.Select(c => new ColumnDefinition
|
|
{
|
|
SharedSizeGroup = c.name,
|
|
Width = c.width,
|
|
MinWidth = c.minWidth,
|
|
MaxWidth = c.maxWidth
|
|
})
|
|
);
|
|
var grid = new Grid
|
|
{
|
|
ColumnDefinitions = columnDefinitions
|
|
};
|
|
|
|
return grid;
|
|
}
|
|
|
|
private Control AddSizer(Grid grid, int column, double size = 30)
|
|
{
|
|
var ctrl = new Control { MinWidth = size, MinHeight = size };
|
|
ctrl.SetValue(Grid.ColumnProperty, column);
|
|
grid.Children.Add(ctrl);
|
|
return ctrl;
|
|
}
|
|
}
|
|
}
|