CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
OptimizeChildChangedTests.cs
Go to the documentation of this file.
1using Csla.Core;
2using Csla.TestHelpers;
3using Microsoft.VisualStudio.TestTools.UnitTesting;
4using System;
5using System.Collections.Generic;
6using System.ComponentModel;
7using System.Diagnostics;
8using System.Linq;
9using System.Text;
10using System.Threading.Tasks;
11
13{
14 [TestClass]
16 {
17 private static TestDIContext _testDIContext;
18
19 public enum enumBO { SimpleBO, SimpleBOList };
20 public enum enumEvent { OnPropertyChanged, OnChildChanged, PropertyChanged, ChildChanged };
21 public struct EventDetail
22 {
24 public int UniqueID;
25 public int Depth { get; set; }
26 public enumBO BO { get; set; }
27 public enumEvent Event { get; set; }
28 public string PropertyName { get; set; }
29
30 public override string ToString()
31 {
32 return $"{SequenceID}: {BO.ToString()} {UniqueID} {Depth} {Event.ToString()} {PropertyName}";
33 }
34 }
35
36 private static int _UniqueID = 0;
37 protected static int NextUniqueID() => _UniqueID++;
38
39 private static int _SequenceID = 0;
40 protected static int NextSequenceID => _SequenceID++;
41
42 protected static List<EventDetail> EventDetails = new List<EventDetail>();
43
44
46 public class SimpleBO : BusinessBase<SimpleBO>
47 {
48 // I don't need these raising CSLA events
49 public int Depth { get; private set; }
50 public int UniqueID = NextUniqueID();
51
52 public static readonly PropertyInfo<string> NameProperty = RegisterProperty<string>(c => c.Name);
53 public string Name
54 {
55 get { return GetProperty(NameProperty); }
56 set { SetProperty(NameProperty, value); }
57 }
58
59 public static readonly PropertyInfo<SimpleBO> ChildProperty = RegisterProperty<SimpleBO>(c => c.Child);
61 {
62 get { return GetProperty(ChildProperty); }
63 set { SetProperty(ChildProperty, value); }
64 }
65
66 public static readonly PropertyInfo<SimpleBOList> ChildListProperty = RegisterProperty<SimpleBOList>(c => c.ChildList);
68 {
69 get { return GetProperty(ChildListProperty); }
70 set { SetProperty(ChildListProperty, value); }
71 }
72
73 protected override void AddBusinessRules()
74 {
75 base.AddBusinessRules();
76
77 BusinessRules.AddRule(new Csla.Rules.CommonRules.Required(NameProperty));
78
79 }
80
81 private void DataPortal_Fetch([Inject] IChildDataPortal<SimpleBO> simpleBOPortal, [Inject] IChildDataPortal<SimpleBOList> simpleBOListPortal)
82 {
83 Depth = 0;
84 LoadProperty(NameProperty, "Jupiter");
85 LoadProperty(ChildProperty, simpleBOPortal.FetchChild(Depth + 1));
86 LoadProperty(ChildListProperty, simpleBOListPortal.FetchChild(Depth + 1));
87
88 BusinessRules.CheckRules();
89
90 }
91
92 private void Child_Fetch(int depth, [Inject] IChildDataPortal<SimpleBO> simpleBOPortal, [Inject] IChildDataPortal<SimpleBOList> simpleBOListPortal)
93 {
94 Depth = depth;
95 LoadProperty(NameProperty, "Saturn");
96
97 if (depth < 4)
98 {
99 LoadProperty(ChildProperty, simpleBOPortal.FetchChild(Depth + 1));
100 LoadProperty(ChildListProperty, simpleBOListPortal.FetchChild(Depth + 1));
101 }
102
103 BusinessRules.CheckRules();
104 }
105
106 protected override void OnPropertyChanged(string propertyName)
107 {
108 EventDetails.Add(new EventDetail() { BO = enumBO.SimpleBO, Depth = Depth, Event = enumEvent.OnPropertyChanged, UniqueID = UniqueID, PropertyName = propertyName });
109 base.OnPropertyChanged(propertyName);
110 }
111
112 protected override void OnChildChanged(ChildChangedEventArgs e)
113 {
114 EventDetails.Add(new EventDetail() { BO = enumBO.SimpleBO, Depth = Depth, Event = enumEvent.OnChildChanged, UniqueID = UniqueID, PropertyName = e.PropertyChangedArgs?.PropertyName });
115 base.OnChildChanged(e);
116 }
117
118 }
119
121 public class SimpleBOList : BusinessListBase<SimpleBOList, SimpleBO>
122 {
123 // I don't need these raising CSLA events
124 public int Depth { get; private set; }
125 public int UniqueID = NextUniqueID();
126
127 private void Child_Fetch(int depth, [Inject] IChildDataPortal<SimpleBO> childDataPortal)
128 {
129 Depth = depth;
130 Add(childDataPortal.FetchChild(depth));
131 }
132
133 protected override void OnPropertyChanged(PropertyChangedEventArgs e)
134 {
135 EventDetails.Add(new EventDetail() { BO = enumBO.SimpleBOList, Depth = Depth, Event = enumEvent.OnPropertyChanged, UniqueID = UniqueID, PropertyName = e?.PropertyName });
136 base.OnPropertyChanged(e);
137 }
138
139 protected override void OnChildChanged(ChildChangedEventArgs e)
140 {
141 EventDetails.Add(new EventDetail() { BO = enumBO.SimpleBOList, Depth = Depth, Event = enumEvent.OnChildChanged, UniqueID = UniqueID, PropertyName = e.PropertyChangedArgs?.PropertyName });
142 base.OnChildChanged(e);
143 }
144
145 }
146
147 private SimpleBO Fetch()
148 {
149 IDataPortal<SimpleBO> dataPortal = _testDIContext.CreateDataPortal<SimpleBO>();
150
151 var result = dataPortal.Fetch();
152
153 void HookEvents(SimpleBO bo)
154 {
155 bo.PropertyChanged += Result_PropertyChanged;
156 bo.ChildChanged += Result_ChildChanged;
157
158 if (bo.Child != null)
159 {
160 bo.ChildList.ChildChanged += ChildList_ChildChanged;
161
162 HookEvents(bo.Child);
163 bo.ChildList.ToList().ForEach(c => HookEvents(c));
164 }
165
166 }
167
168 HookEvents(result);
169
170 _SequenceID = 0;
171 EventDetails.Clear();
172
173 return result;
174
175 }
176
177 private void ChildList_ChildChanged(object sender, ChildChangedEventArgs e)
178 {
179 var list = sender as SimpleBOList ?? throw new ArgumentNullException("Not a SimpleBOList");
180 EventDetails.Add(new EventDetail() { BO = enumBO.SimpleBOList, Depth = list[0].Depth, Event = enumEvent.ChildChanged, UniqueID = list.UniqueID, PropertyName = e.PropertyChangedArgs?.PropertyName });
181 }
182
183 private void Result_ChildChanged(object sender, ChildChangedEventArgs e)
184 {
185 var bo = sender as SimpleBO ?? throw new ArgumentNullException("Not a SimpleBO");
186 EventDetails.Add(new EventDetail() { BO = enumBO.SimpleBO, Depth = bo.Depth, Event = enumEvent.ChildChanged, UniqueID = bo.UniqueID, PropertyName = e.PropertyChangedArgs?.PropertyName });
187 }
188
189 private void Result_PropertyChanged(object sender, PropertyChangedEventArgs e)
190 {
191 var bo = sender as SimpleBO ?? throw new ArgumentNullException("Not a SimpleBO");
192 EventDetails.Add(new EventDetail() { BO = enumBO.SimpleBO, Depth = bo.Depth, Event = enumEvent.PropertyChanged, UniqueID = bo.UniqueID, PropertyName = e.PropertyName });
193 }
194
196 public static void ClassInitialize(TestContext context)
197 {
198 _testDIContext = TestDIContextFactory.CreateDefaultContext();
199 }
200
201 [TestMethod]
203 {
204 var result = Fetch();
205
206 Assert.IsNotNull(result.Child);
207 Assert.IsNotNull(result.ChildList);
208
209 Assert.IsNotNull(result.Child.Child);
210 Assert.IsNotNull(result.Child.ChildList);
211
212 Assert.IsNotNull(result.Child.Child.Child);
213 Assert.IsNotNull(result.Child.Child.ChildList);
214
215 Assert.IsTrue(result.IsValid);
216 Assert.IsFalse(result.IsNew);
217 Assert.IsFalse(result.IsDirty);
218
219 }
220
221 [TestMethod]
223 {
224 var result = Fetch();
225
226 result.Name = "Keith";
227
228 WriteEventDetails();
229
230 CheckBottomDepth(EventDetails, 0);
231
232 Assert.AreEqual(0, EventDetails.Count);
233
234 }
235
236 [TestMethod]
238 {
239 var result = Fetch();
240
241 result.Child.Name = "Keith";
242
243 WriteEventDetails();
244
245 CheckMidDepth(EventDetails, 0);
246 CheckBottomDepth(EventDetails, 1);
247
248 Assert.AreEqual(0, EventDetails.Count);
249
250 }
251
252 [TestMethod]
254 {
255 var result = Fetch();
256
257 result.Child.Child.Name = "Keith";
258
259 WriteEventDetails();
260
261 CheckMidDepth(EventDetails, 0);
262 CheckMidDepth(EventDetails, 1);
263 CheckBottomDepth(EventDetails, 2);
264
265 Assert.AreEqual(0, EventDetails.Count);
266
267 }
268
269 [TestMethod]
271 {
272 var result = Fetch();
273
274 _SequenceID = 0;
275 EventDetails.Clear();
276
277 result.Child.Child.Child.Name = "Keith";
278
279 WriteEventDetails();
280
281 CheckMidDepth(EventDetails, 0);
282 CheckMidDepth(EventDetails, 1);
283 CheckMidDepth(EventDetails, 2);
284 CheckBottomDepth(EventDetails, 3);
285
286 Assert.AreEqual(0, EventDetails.Count);
287
288 }
289
290 [TestMethod]
292 {
293 var result = Fetch();
294
295 result.ChildList[0].Name = "Keith";
296
297 WriteEventDetails();
298
299 CheckMidDepth(EventDetails, 0);
300 CheckBottomDepthList(EventDetails, 1);
301
302 Assert.AreEqual(0, EventDetails.Count);
303
304 }
305
306 [TestMethod]
308 {
309 var result = Fetch();
310
311 result.ChildList[0].ChildList[0].Name = "Keith";
312
313 WriteEventDetails();
314
315 CheckMidDepth(EventDetails, 0);
316 CheckMidDepthList(EventDetails, 1);
317 CheckBottomDepthList(EventDetails, 2);
318
319 Assert.AreEqual(0, EventDetails.Count);
320
321 }
322
323
324 [TestMethod]
326 {
327 var result = Fetch();
328
329 _SequenceID = 0;
330 EventDetails.Clear();
331
332 result.ChildList[0].ChildList[0].ChildList[0].Name = "Keith";
333
334 WriteEventDetails();
335
336 CheckMidDepth(EventDetails, 0);
337 CheckMidDepthList(EventDetails, 1);
338 CheckMidDepthList(EventDetails, 2);
339 CheckBottomDepthList(EventDetails, 3);
340
341 Assert.AreEqual(0, EventDetails.Count);
342
343 }
344
345 private void WriteEventDetails()
346 {
347 if (EventDetails != null)
348 {
349 EventDetails.ForEach(ev => Debug.WriteLine(ev.ToString()));
350 Debug.WriteLine("Name events");
351 EventDetails.Where(ev => ev.PropertyName == "Name").ToList().ForEach(x => Debug.WriteLine(x.ToString()));
352 }
353 }
354
355 private void CheckBottomDepth(List<EventDetail> list, int depth)
356 {
357 Assert.AreEqual(1, list.RemoveAll(ev => ev.BO == enumBO.SimpleBO && ev.Depth == depth && ev.Event == enumEvent.OnPropertyChanged && ev.PropertyName == "Name"));
358 Assert.AreEqual(1, list.RemoveAll(ev => ev.BO == enumBO.SimpleBO && ev.Depth == depth && ev.Event == enumEvent.PropertyChanged && ev.PropertyName == "Name"));
359 Assert.AreEqual(1, list.RemoveAll(ev => ev.BO == enumBO.SimpleBO && ev.Depth == depth && ev.Event == enumEvent.PropertyChanged && ev.PropertyName == "IsDirty"));
360 Assert.AreEqual(1, list.RemoveAll(ev => ev.BO == enumBO.SimpleBO && ev.Depth == depth && ev.Event == enumEvent.PropertyChanged && ev.PropertyName == "IsSelfDirty"));
361 Assert.AreEqual(1, list.RemoveAll(ev => ev.BO == enumBO.SimpleBO && ev.Depth == depth && ev.Event == enumEvent.PropertyChanged && ev.PropertyName == "IsValid"));
362 Assert.AreEqual(1, list.RemoveAll(ev => ev.BO == enumBO.SimpleBO && ev.Depth == depth && ev.Event == enumEvent.PropertyChanged && ev.PropertyName == "IsSelfValid"));
363 Assert.AreEqual(2, list.RemoveAll(ev => ev.BO == enumBO.SimpleBO && ev.Depth == depth && ev.Event == enumEvent.PropertyChanged && ev.PropertyName == "IsSavable"));
364
365 }
366
367 private void CheckBottomDepthList(List<EventDetail> list, int depth)
368 {
369 CheckBottomDepth(list, depth);
370 Assert.AreEqual(1, list.RemoveAll(ev => ev.BO == enumBO.SimpleBOList && ev.Depth == depth && ev.Event == enumEvent.OnChildChanged && ev.PropertyName == "Name"));
371 Assert.AreEqual(1, list.RemoveAll(ev => ev.BO == enumBO.SimpleBOList && ev.Depth == depth && ev.Event == enumEvent.ChildChanged && ev.PropertyName == "Name"));
372 }
373
374 private void CheckMidDepth(List<EventDetail> list, int depth)
375 {
376 Assert.AreEqual(1, list.RemoveAll(ev => ev.BO == enumBO.SimpleBO && ev.Depth == depth && ev.Event == enumEvent.OnChildChanged && ev.PropertyName == "Name"));
377 Assert.AreEqual(1, list.RemoveAll(ev => ev.BO == enumBO.SimpleBO && ev.Depth == depth && ev.Event == enumEvent.PropertyChanged && ev.PropertyName == "IsDirty"));
378 Assert.AreEqual(1, list.RemoveAll(ev => ev.BO == enumBO.SimpleBO && ev.Depth == depth && ev.Event == enumEvent.PropertyChanged && ev.PropertyName == "IsValid"));
379 Assert.AreEqual(1, list.RemoveAll(ev => ev.BO == enumBO.SimpleBO && ev.Depth == depth && ev.Event == enumEvent.PropertyChanged && ev.PropertyName == "IsSavable"));
380 Assert.AreEqual(1, list.RemoveAll(ev => ev.BO == enumBO.SimpleBO && ev.Depth == depth && ev.Event == enumEvent.ChildChanged && ev.PropertyName == "Name"));
381 }
382
383 private void CheckMidDepthList(List<EventDetail> list, int depth)
384 {
385 CheckMidDepth(list, depth);
386 Assert.AreEqual(1, list.RemoveAll(ev => ev.BO == enumBO.SimpleBOList && ev.Depth == depth && ev.Event == enumEvent.OnChildChanged && ev.PropertyName == "Name"));
387 Assert.AreEqual(1, list.RemoveAll(ev => ev.BO == enumBO.SimpleBOList && ev.Depth == depth && ev.Event == enumEvent.ChildChanged && ev.PropertyName == "Name"));
388 }
389
390 }
391}
This is the base class from which most business objects will be derived.
Definition: BusinessBase.cs:38
This is the base class from which most business collections or lists will be derived.
Contains event data about the changed child object.
PropertyChangedEventArgs PropertyChangedArgs
Gets the PropertyChangedEventArgs object from the child's PropertyChanged event, if the child is not ...
Maintains metadata about a property.
Business rule for a required string.
Definition: CommonRules.cs:106
static readonly PropertyInfo< SimpleBOList > ChildListProperty
Type to carry context information for DI in unit tests
Interface defining the members of the child data portal type.
Interface defining the members of the data portal type.
Definition: IDataPortalT.cs:17
object Fetch(params object[] criteria)
Called by a factory method in a business class to retrieve an object, which is loaded with values fro...
@ Serializable
Prevents updating or inserting until the transaction is complete.