A cross-platform UI framework for .NET
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.
 
 
 

109 lines
3.7 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;
using Avalonia.Controls.Presenters;
using Avalonia.Controls.Primitives;
using Avalonia.Controls.Templates;
using Avalonia.LogicalTree;
using Avalonia.UnitTests;
using Xunit;
namespace Avalonia.Controls.UnitTests.Primitives
{
public class PopupRootTests
{
[Fact]
public void PopupRoot_IsAttachedToLogicalTree_Is_True()
{
using (UnitTestApplication.Start(TestServices.StyledWindow))
{
var target = CreateTarget();
Assert.True(((ILogical)target).IsAttachedToLogicalTree);
}
}
[Fact]
public void Templated_Child_IsAttachedToLogicalTree_Is_True()
{
using (UnitTestApplication.Start(TestServices.StyledWindow))
{
var target = CreateTarget();
Assert.True(target.Presenter.IsAttachedToLogicalTree);
}
}
[Fact]
public void Attaching_PopupRoot_To_Parent_Logical_Tree_Raises_DetachedFromLogicalTree_And_AttachedToLogicalTree()
{
using (UnitTestApplication.Start(TestServices.StyledWindow))
{
var child = new Decorator();
var target = CreateTarget();
var window = new Window();
var detachedCount = 0;
var attachedCount = 0;
target.Content = child;
target.DetachedFromLogicalTree += (s, e) => ++detachedCount;
child.DetachedFromLogicalTree += (s, e) => ++detachedCount;
target.AttachedToLogicalTree += (s, e) => ++attachedCount;
child.AttachedToLogicalTree += (s, e) => ++attachedCount;
((ISetLogicalParent)target).SetParent(window);
Assert.Equal(2, detachedCount);
Assert.Equal(2, attachedCount);
}
}
[Fact]
public void Detaching_PopupRoot_From_Parent_Logical_Tree_Raises_DetachedFromLogicalTree_And_AttachedToLogicalTree()
{
using (UnitTestApplication.Start(TestServices.StyledWindow))
{
var child = new Decorator();
var target = CreateTarget();
var window = new Window();
var detachedCount = 0;
var attachedCount = 0;
target.Content = child;
((ISetLogicalParent)target).SetParent(window);
target.DetachedFromLogicalTree += (s, e) => ++detachedCount;
child.DetachedFromLogicalTree += (s, e) => ++detachedCount;
target.AttachedToLogicalTree += (s, e) => ++attachedCount;
child.AttachedToLogicalTree += (s, e) => ++attachedCount;
((ISetLogicalParent)target).SetParent(null);
// Despite being detached from the parent logical tree, we're still attached to a
// logical tree as PopupRoot itself is a logical tree root.
Assert.True(((ILogical)target).IsAttachedToLogicalTree);
Assert.True(((ILogical)child).IsAttachedToLogicalTree);
Assert.Equal(2, detachedCount);
Assert.Equal(2, attachedCount);
}
}
private PopupRoot CreateTarget()
{
var result = new PopupRoot
{
Template = new FuncControlTemplate<PopupRoot>(_ =>
new ContentPresenter
{
Name = "PART_ContentPresenter",
}),
};
result.ApplyTemplate();
return result;
}
}
}