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.
125 lines
3.7 KiB
125 lines
3.7 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Reactive.Linq;
|
|
using System.Threading.Tasks;
|
|
using Avalonia.Diagnostics;
|
|
using Avalonia.Data.Core;
|
|
using Xunit;
|
|
|
|
namespace Avalonia.Base.UnitTests.Data.Core
|
|
{
|
|
public class ExpressionObserverTests_AttachedProperty
|
|
{
|
|
|
|
[Fact]
|
|
public async Task Should_Get_Attached_Property_Value()
|
|
{
|
|
var data = new Class1();
|
|
var target = ExpressionObserver.Create(data, o => o[Owner.FooProperty]);
|
|
var result = await target.Take(1);
|
|
|
|
Assert.Equal("foo", result);
|
|
|
|
Assert.Null(((IAvaloniaObjectDebug)data).GetPropertyChangedSubscribers());
|
|
}
|
|
|
|
[Fact]
|
|
public async Task Should_Get_Chained_Attached_Property_Value()
|
|
{
|
|
var data = new Class1
|
|
{
|
|
Next = new Class1
|
|
{
|
|
[Owner.FooProperty] = "bar",
|
|
}
|
|
};
|
|
|
|
var target = ExpressionObserver.Create(data, o => o.Next[Owner.FooProperty]);
|
|
var result = await target.Take(1);
|
|
|
|
Assert.Equal("bar", result);
|
|
|
|
Assert.Null(((IAvaloniaObjectDebug)data).GetPropertyChangedSubscribers());
|
|
}
|
|
|
|
[Fact]
|
|
public void Should_Track_Simple_Attached_Value()
|
|
{
|
|
var data = new Class1();
|
|
var target = ExpressionObserver.Create(data, o => o[Owner.FooProperty]);
|
|
var result = new List<object>();
|
|
|
|
var sub = target.Subscribe(x => result.Add(x));
|
|
data.SetValue(Owner.FooProperty, "bar");
|
|
|
|
Assert.Equal(new[] { "foo", "bar" }, result);
|
|
|
|
sub.Dispose();
|
|
|
|
Assert.Null(((IAvaloniaObjectDebug)data).GetPropertyChangedSubscribers());
|
|
}
|
|
|
|
[Fact]
|
|
public void Should_Track_Chained_Attached_Value()
|
|
{
|
|
var data = new Class1
|
|
{
|
|
Next = new Class1
|
|
{
|
|
[Owner.FooProperty] = "foo",
|
|
}
|
|
};
|
|
|
|
var target = ExpressionObserver.Create(data, o => o.Next[Owner.FooProperty]);
|
|
var result = new List<object>();
|
|
|
|
var sub = target.Subscribe(x => result.Add(x));
|
|
data.Next.SetValue(Owner.FooProperty, "bar");
|
|
|
|
Assert.Equal(new[] { "foo", "bar" }, result);
|
|
|
|
sub.Dispose();
|
|
|
|
Assert.Null(((IAvaloniaObjectDebug)data).GetPropertyChangedSubscribers());
|
|
}
|
|
|
|
[Fact]
|
|
public void Should_Not_Keep_Source_Alive()
|
|
{
|
|
Func<Tuple<ExpressionObserver, WeakReference>> run = () =>
|
|
{
|
|
var source = new Class1();
|
|
var target = ExpressionObserver.Create(source, o => o.Next[Owner.FooProperty]);
|
|
return Tuple.Create(target, new WeakReference(source));
|
|
};
|
|
|
|
var result = run();
|
|
result.Item1.Subscribe(x => { });
|
|
|
|
GC.Collect();
|
|
|
|
Assert.Null(result.Item2.Target);
|
|
}
|
|
|
|
private static class Owner
|
|
{
|
|
public static readonly AttachedProperty<string> FooProperty =
|
|
AvaloniaProperty.RegisterAttached<Class1, string>(
|
|
"Foo",
|
|
typeof(Owner),
|
|
defaultValue: "foo");
|
|
}
|
|
|
|
private class Class1 : AvaloniaObject
|
|
{
|
|
public static readonly StyledProperty<Class1> NextProperty =
|
|
AvaloniaProperty.Register<Class1, Class1>(nameof(Next));
|
|
|
|
public Class1 Next
|
|
{
|
|
get { return GetValue(NextProperty); }
|
|
set { SetValue(NextProperty, value); }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|