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
EditableChildTestsLocal.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="EditableChildTestsLocal.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>no summary</summary>
7//-----------------------------------------------------------------------
8using Csla;
10using System;
11using UnitDriven;
12using System.Threading.Tasks;
13
14#if NUNIT
15using NUnit.Framework;
16using TestClass = NUnit.Framework.TestFixtureAttribute;
17using TestInitialize = NUnit.Framework.SetUpAttribute;
18using TestCleanup = NUnit.Framework.TearDownAttribute;
19using TestMethod = NUnit.Framework.TestAttribute;
20using TestSetup = NUnit.Framework.SetUpAttribute;
21#elif MSTEST
22using Microsoft.VisualStudio.TestTools.UnitTesting;
23#endif
24
26{
27 [TestClass]
29 {
30 #region List With Children - FetchAll
31
32 [TestMethod]
34 {
35 var result = await Csla.DataPortal.FetchAsync<MockList>();
36 Assert.AreEqual(3, result.Count);
37 }
38
39 [TestMethod]
41 {
42 var list = await Csla.DataPortal.FetchAsync<MockList>();
43 Assert.AreEqual(MockList.MockEditableChildId1, list[0].Id);
44 Assert.AreEqual("Child_Fetch", list[0].DataPortalMethod);
45
46 Assert.AreEqual(MockList.MockEditableChildId2, list[1].Id);
47 Assert.AreEqual("Child_Fetch", list[1].DataPortalMethod);
48
49 Assert.AreEqual(MockList.MockEditableChildId3, list[2].Id);
50 Assert.AreEqual("Child_Fetch", list[2].DataPortalMethod);
51 }
52
53 [TestMethod]
55 {
56 var list = await Csla.DataPortal.FetchAsync<MockList>();
57 var expectedGrandChildIds =
58 new[]
59 {
63 };
64
65 for (int index = 0; index < list.Count; index++)
66 {
67 var child = list[index];
68 Assert.IsNotNull(child.GrandChildren);
69 Assert.AreEqual(1, child.GrandChildren.Count);
70 Assert.AreEqual(expectedGrandChildIds[index], child.GrandChildren[0].Id);
71 Assert.AreEqual("Child_Fetch", child.GrandChildren[0].DataPortalMethod);
72 }
73 }
74
75 #endregion
76
77 #region ListWithChildren - FetchByName
78 //valid names: c1, c2, c3
79 [TestMethod]
81 {
82 var list = await Csla.DataPortal.FetchAsync<MockList>("INVALID");
83 Assert.AreEqual(0, list.Count);
84 }
85
86 [TestMethod]
88 {
89 var list = await Csla.DataPortal.FetchAsync<MockList>("c2");
90 Assert.AreEqual(1, list.Count);
91 }
92
93
94 [TestMethod]
96 {
97 var list = await Csla.DataPortal.FetchAsync<MockList>("c2");
98 Assert.AreEqual(MockList.MockEditableChildId2, list[0].Id);
99 Assert.AreEqual("Child_Fetch", list[0].DataPortalMethod);
100 Assert.IsFalse(list[0].IsNew);
101 Assert.IsFalse(list[0].IsDirty);
102 }
103
104 [TestMethod]
106 {
107 var list = await Csla.DataPortal.FetchAsync<MockList>("c2");
108 var child = list[0];
109 Assert.AreEqual(1, child.GrandChildren.Count);
110 Assert.AreEqual(GrandChildList.GrandChildId2, child.GrandChildren[0].Id);
111 Assert.AreEqual("Child_Fetch", child.GrandChildren[0].DataPortalMethod);
112 Assert.IsFalse(child.GrandChildren[0].IsNew);
113 Assert.IsFalse(child.GrandChildren[0].IsDirty);
114 }
115
116 #endregion
117
118 #region Calling Save on non-Root element - Child/GrandChild Save() - InvalidOperationException
119
120 [TestMethod]
121 [ExpectedException(typeof(InvalidOperationException))]
123 {
124 var list = await Csla.DataPortal.FetchAsync<MockList>("c2");
125 list[0].Save();
126 }
127
128 [TestMethod]
129 [ExpectedException(typeof(InvalidOperationException))]
131 {
132 var list = await Csla.DataPortal.FetchAsync<MockList>("c2");
133 list[0].GrandChildren.Save();
134 }
135
136 [TestMethod]
137 [ExpectedException(typeof(InvalidOperationException))]
139 {
140 var list = await Csla.DataPortal.FetchAsync<MockList>("c2");
141 list[0].GrandChildren[0].Save();
142 }
143
144 #endregion
145
146 #region Save()
147 [TestMethod]
149 {
150 var fetchedList = await Csla.DataPortal.FetchAsync<MockList>("c2");
151 Assert.AreEqual(1, fetchedList.Count);
152
153 fetchedList[0].Name = "saving";
154 var savedList = await fetchedList.SaveAsync();
155 Assert.AreEqual(fetchedList.Count, savedList.Count);
156 }
157
158 [TestMethod]
160 {
161 var fetchedList = await Csla.DataPortal.FetchAsync<MockList>("c2");
162 Assert.AreEqual("c2", fetchedList[0].Name);
163 Assert.AreEqual("Child_Fetch", fetchedList[0].DataPortalMethod);
164
165 fetchedList[0].Name = "saving";
166 Assert.IsTrue(fetchedList[0].IsDirty);
167 var savedList = await fetchedList.SaveAsync();
168 Assert.AreEqual(fetchedList[0].Id, savedList[0].Id);
169 Assert.AreEqual(fetchedList[0].Name, savedList[0].Name);
170
171 Assert.AreEqual("Child_Update", savedList[0].DataPortalMethod);
172 Assert.IsFalse(savedList[0].IsDirty);
173
174 Assert.AreEqual(fetchedList[0].GrandChildren.Count, savedList[0].GrandChildren.Count);
175 }
176
177 [TestMethod]
179 {
180 var fetchedList = await Csla.DataPortal.FetchAsync<MockList>("c2");
181 var fetchedGrandChild = fetchedList[0].GrandChildren[0];
182
183 Assert.AreEqual("Child_Fetch", fetchedGrandChild.DataPortalMethod);
184
185 fetchedGrandChild.Name = "saving";
186 Assert.IsTrue(fetchedGrandChild.IsDirty);
187
188 var savedList = await fetchedList.SaveAsync();
189 var savedGrandChild = savedList[0].GrandChildren[0];
190
191 Assert.AreEqual("Child_Update", savedGrandChild.DataPortalMethod);
192 Assert.IsFalse(savedGrandChild.IsDirty);
193 Assert.AreEqual(fetchedGrandChild.Name, savedGrandChild.Name);
194 Assert.AreEqual(fetchedGrandChild.Id, savedGrandChild.Id);//Guids used - otherwisewe would not test for this
195 }
196
197 #endregion
198
199 }
200}
T Save()
Saves the object to the database.
async Task< T > SaveAsync()
Saves the object to the database.
Client side data portal used for making asynchronous data portal calls in .NET.
Definition: DataPortalT.cs:24
async Task< T > FetchAsync(params object[] criteria)
Called by a factory method in a business class or by the UI to Fetch a new object,...
Definition: DataPortalT.cs:279
async Task After_Saved_GrandChild_should_be_NotDirty_and_should_have_same_value_as_Fetched_GrandChild()