// 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 System.Collections.Generic; using System.Reactive.Linq; using System.Threading.Tasks; using Avalonia.Diagnostics; using Avalonia.Data.Core; using Xunit; using Avalonia.Markup.Parsers; namespace Avalonia.Markup.UnitTests.Parsers { public class ExpressionObserverBuilderTests_AvaloniaProperty { public ExpressionObserverBuilderTests_AvaloniaProperty() { var foo = Class1.FooProperty; } [Fact] public async Task Should_Get_AvaloniaProperty_By_Name() { var data = new Class1(); var target = ExpressionObserverBuilder.Build(data, "Foo"); var result = await target.Take(1); Assert.Equal("foo", result); Assert.Null(((IAvaloniaObjectDebug)data).GetPropertyChangedSubscribers()); } [Fact] public void Should_Track_AvaloniaProperty_By_Name() { var data = new Class1(); var target = ExpressionObserverBuilder.Build(data, "Foo"); var result = new List(); var sub = target.Subscribe(x => result.Add(x)); data.SetValue(Class1.FooProperty, "bar"); Assert.Equal(new[] { "foo", "bar" }, result); sub.Dispose(); Assert.Null(((IAvaloniaObjectDebug)data).GetPropertyChangedSubscribers()); } private class Class1 : AvaloniaObject { public static readonly StyledProperty FooProperty = AvaloniaProperty.Register("Foo", defaultValue: "foo"); public string ClrProperty { get; } = "clr-property"; } } }