| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- // 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.Linq;
- using System.Reactive.Linq;
- using Avalonia.Controls;
- using Avalonia.Data;
- using Avalonia.Markup.Xaml.Data;
- using Avalonia.Styling;
- using Avalonia.UnitTests;
- using Xunit;
- namespace Avalonia.Markup.Xaml.UnitTests
- {
- public class StyleTests
- {
- [Fact]
- public void Binding_Should_Be_Assigned_To_Setter_Value_Instead_Of_Bound()
- {
- using (UnitTestApplication.Start(TestServices.MockPlatformWrapper))
- {
- var xaml = "<Style xmlns='https://github.com/avaloniaui'><Setter Value='{Binding}'/></Style>";
- var loader = new AvaloniaXamlLoader();
- var style = (Style)loader.Load(xaml);
- var setter = (Setter)(style.Setters.First());
- Assert.IsType<Binding>(setter.Value);
- }
- }
- [Fact]
- public void Setter_With_TwoWay_Binding_Should_Update_Source()
- {
- using (UnitTestApplication.Start(TestServices.MockThreadingInterface))
- {
- var data = new Data
- {
- Foo = "foo",
- };
- var control = new TextBox
- {
- DataContext = data,
- };
- var setter = new Setter
- {
- Property = TextBox.TextProperty,
- Value = new Binding
- {
- Path = "Foo",
- Mode = BindingMode.TwoWay
- }
- };
- setter.Apply(null, control, null);
- Assert.Equal("foo", control.Text);
- control.Text = "bar";
- Assert.Equal("bar", data.Foo);
- }
- }
- [Fact]
- public void Setter_With_TwoWay_Binding_And_Activator_Should_Update_Source()
- {
- using (UnitTestApplication.Start(TestServices.MockThreadingInterface))
- {
- var data = new Data
- {
- Foo = "foo",
- };
- var control = new TextBox
- {
- DataContext = data,
- };
- var setter = new Setter
- {
- Property = TextBox.TextProperty,
- Value = new Binding
- {
- Path = "Foo",
- Mode = BindingMode.TwoWay
- }
- };
- var activator = Observable.Never<bool>().StartWith(true);
- setter.Apply(null, control, activator);
- Assert.Equal("foo", control.Text);
- control.Text = "bar";
- Assert.Equal("bar", data.Foo);
- }
- }
- private class Data
- {
- public string Foo { get; set; }
- }
- }
- }
|