5
5
using System . Reactive . Linq ;
6
6
using System . Text ;
7
7
using Avalonia . Data ;
8
+ using Avalonia . Layout ;
8
9
using Xunit ;
9
10
10
11
namespace Avalonia . Base . UnitTests
@@ -104,6 +105,25 @@ public void SetValue_Change_Should_Be_Raised_After_Batch_Update_2()
104
105
Assert . Equal ( "baz" , target . Foo ) ;
105
106
}
106
107
108
+ [ Fact ]
109
+ public void SetValue_Change_Should_Be_Raised_After_Batch_Update_3 ( )
110
+ {
111
+ var target = new TestClass ( ) ;
112
+ var raised = new List < AvaloniaPropertyChangedEventArgs > ( ) ;
113
+
114
+ target . PropertyChanged += ( s , e ) => raised . Add ( e ) ;
115
+
116
+ target . BeginBatchUpdate ( ) ;
117
+ target . SetValue ( TestClass . BazProperty , Orientation . Horizontal , BindingPriority . LocalValue ) ;
118
+ target . EndBatchUpdate ( ) ;
119
+
120
+ Assert . Equal ( 1 , raised . Count ) ;
121
+ Assert . Equal ( TestClass . BazProperty , raised [ 0 ] . Property ) ;
122
+ Assert . Equal ( Orientation . Vertical , raised [ 0 ] . OldValue ) ;
123
+ Assert . Equal ( Orientation . Horizontal , raised [ 0 ] . NewValue ) ;
124
+ Assert . Equal ( Orientation . Horizontal , target . Baz ) ;
125
+ }
126
+
107
127
[ Fact ]
108
128
public void SetValue_Changes_Should_Be_Raised_In_Correct_Order_After_Batch_Update ( )
109
129
{
@@ -234,6 +254,26 @@ public void Binding_Change_Should_Be_Raised_After_Batch_Update_2()
234
254
Assert . Equal ( "baz" , raised [ 0 ] . NewValue ) ;
235
255
}
236
256
257
+ [ Fact ]
258
+ public void Binding_Change_Should_Be_Raised_After_Batch_Update_3 ( )
259
+ {
260
+ var target = new TestClass ( ) ;
261
+ var observable = new TestObservable < Orientation > ( Orientation . Horizontal ) ;
262
+ var raised = new List < AvaloniaPropertyChangedEventArgs > ( ) ;
263
+
264
+ target . PropertyChanged += ( s , e ) => raised . Add ( e ) ;
265
+
266
+ target . BeginBatchUpdate ( ) ;
267
+ target . Bind ( TestClass . BazProperty , observable , BindingPriority . LocalValue ) ;
268
+ target . EndBatchUpdate ( ) ;
269
+
270
+ Assert . Equal ( 1 , raised . Count ) ;
271
+ Assert . Equal ( TestClass . BazProperty , raised [ 0 ] . Property ) ;
272
+ Assert . Equal ( Orientation . Vertical , raised [ 0 ] . OldValue ) ;
273
+ Assert . Equal ( Orientation . Horizontal , raised [ 0 ] . NewValue ) ;
274
+ Assert . Equal ( Orientation . Horizontal , target . Baz ) ;
275
+ }
276
+
237
277
[ Fact ]
238
278
public void Binding_Completion_Should_Be_Raised_After_Batch_Update ( )
239
279
{
@@ -579,6 +619,9 @@ public class TestClass : AvaloniaObject
579
619
public static readonly StyledProperty < string > BarProperty =
580
620
AvaloniaProperty . Register < TestClass , string > ( nameof ( Bar ) ) ;
581
621
622
+ public static readonly StyledProperty < Orientation > BazProperty =
623
+ AvaloniaProperty . Register < TestClass , Orientation > ( nameof ( Bar ) , Orientation . Vertical ) ;
624
+
582
625
public string Foo
583
626
{
584
627
get => GetValue ( FooProperty ) ;
@@ -590,6 +633,12 @@ public string Bar
590
633
get => GetValue ( BarProperty ) ;
591
634
set => SetValue ( BarProperty , value ) ;
592
635
}
636
+
637
+ public Orientation Baz
638
+ {
639
+ get => GetValue ( BazProperty ) ;
640
+ set => SetValue ( BazProperty , value ) ;
641
+ }
593
642
}
594
643
595
644
public class TestObservable < T > : ObservableBase < BindingValue < T > >
0 commit comments