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.
 
 
 

156 lines
5.1 KiB

using System;
using System.Linq;
using System.Reactive.Linq;
using Xunit;
namespace Avalonia.Base.UnitTests
{
public class AvaloniaPropertyRegistryTests
{
public AvaloniaPropertyRegistryTests(ITestOutputHelper s)
{
// Ensure properties are registered.
AvaloniaProperty p;
p = Class1.FooProperty;
p = Class2.BarProperty;
p = AttachedOwner.AttachedProperty;
}
[Fact]
public void Registered_Properties_Count_Reflects_Newly_Added_Attached_Property()
{
var registry = new AvaloniaPropertyRegistry();
var metadata = new StyledPropertyMetadata<int>();
var property = new AttachedProperty<int>("test", typeof(object), typeof(object), metadata, true);
registry.Register(typeof(object), property);
registry.RegisterAttached(typeof(AvaloniaPropertyRegistryTests), property);
property.AddOwner<Class4>();
Assert.Equal(1, registry.Properties.Count);
}
[Fact]
public void GetRegistered_Returns_Registered_Properties()
{
string[] names = AvaloniaPropertyRegistry.Instance.GetRegistered(typeof(Class1))
.Select(x => x.Name)
.ToArray();
Assert.Equal(new[] { "Foo", "Baz", "Qux" }, names);
}
[Fact]
public void GetRegistered_Returns_Registered_Properties_For_Base_Types()
{
string[] names = AvaloniaPropertyRegistry.Instance.GetRegistered(typeof(Class2))
.Select(x => x.Name)
.ToArray();
Assert.Equal(new[] { "Bar", "Flob", "Fred", "Foo", "Baz", "Qux" }, names);
}
[Fact]
public void GetRegisteredAttached_Returns_Registered_Properties()
{
string[] names = AvaloniaPropertyRegistry.Instance.GetRegisteredAttached(typeof(Class1))
.Select(x => x.Name)
.ToArray();
Assert.Contains("Attached", names);
}
[Fact]
public void GetRegisteredAttached_Returns_Registered_Properties_For_Base_Types()
{
string[] names = AvaloniaPropertyRegistry.Instance.GetRegisteredAttached(typeof(Class2))
.Select(x => x.Name)
.ToArray();
Assert.Contains("Attached", names);
}
[Fact]
public void FindRegistered_Finds_Property()
{
var result = AvaloniaPropertyRegistry.Instance.FindRegistered(typeof(Class1), "Foo");
Assert.Equal(Class1.FooProperty, result);
}
[Fact]
public void FindRegistered_Doesnt_Find_Nonregistered_Property()
{
var result = AvaloniaPropertyRegistry.Instance.FindRegistered(typeof(Class1), "Bar");
Assert.Null(result);
}
[Fact]
public void FindRegistered_Finds_Unqualified_Attached_Property_On_Registering_Type()
{
var result = AvaloniaPropertyRegistry.Instance.FindRegistered(typeof(AttachedOwner), "Attached");
Assert.Same(AttachedOwner.AttachedProperty, result);
}
[Fact]
public void FindRegistered_Finds_AddOwnered_Attached_Property()
{
var result = AvaloniaPropertyRegistry.Instance.FindRegistered(typeof(Class3), "Attached");
Assert.Same(AttachedOwner.AttachedProperty, result);
}
[Fact]
public void FindRegistered_Doesnt_Find_Non_AddOwnered_Attached_Property()
{
var result = AvaloniaPropertyRegistry.Instance.FindRegistered(typeof(Class2), "Attached");
Assert.Null(result);
}
private class Class1 : AvaloniaObject
{
public static readonly StyledProperty<string> FooProperty =
AvaloniaProperty.Register<Class1, string>("Foo");
public static readonly StyledProperty<string> BazProperty =
AvaloniaProperty.Register<Class1, string>("Baz");
public static readonly StyledProperty<int> QuxProperty =
AvaloniaProperty.Register<Class1, int>("Qux");
}
private class Class2 : Class1
{
public static readonly StyledProperty<string> BarProperty =
AvaloniaProperty.Register<Class2, string>("Bar");
public static readonly StyledProperty<double> FlobProperty =
AvaloniaProperty.Register<Class2, double>("Flob");
public static readonly StyledProperty<double?> FredProperty =
AvaloniaProperty.Register<Class2, double?>("Fred");
}
private class Class3 : Class1
{
public static readonly AttachedProperty<string> AttachedProperty =
AttachedOwner.AttachedProperty.AddOwner<Class3>();
}
private class AttachedOwner : Class1
{
public static readonly AttachedProperty<string> AttachedProperty =
AvaloniaProperty.RegisterAttached<AttachedOwner, Class1, string>("Attached");
}
private class AttachedOwner2 : AttachedOwner
{
}
private class Class4 : AvaloniaObject
{
}
}
}