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
EditableChildTestsRemote.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="EditableChildTestsRemote.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;
13using System.Threading.Tasks;
14
15#if NUNIT
16using NUnit.Framework;
17using TestClass = NUnit.Framework.TestFixtureAttribute;
18using TestInitialize = NUnit.Framework.SetUpAttribute;
19using TestCleanup = NUnit.Framework.TearDownAttribute;
20using TestMethod = NUnit.Framework.TestAttribute;
21using TestSetup = NUnit.Framework.SetUpAttribute;
22#elif MSTEST
23using Microsoft.VisualStudio.TestTools.UnitTesting;
24#endif
25
27{
28#if TESTING
29 [System.Diagnostics.DebuggerNonUserCode]
30#endif
31 [TestClass]
33 {
34 [TestMethod]
36 {
37 var list = await Csla.DataPortal.FetchAsync<MockList>();
38 Assert.AreEqual(3, list.Count);
39 }
40
41 [TestMethod]
43 {
44 var list = await Csla.DataPortal.FetchAsync<MockList>();
45 Assert.AreEqual(MockList.MockEditableChildId1, list[0].Id);
46 Assert.AreEqual("Child_Fetch", list[0].DataPortalMethod);
47
48 Assert.AreEqual(MockList.MockEditableChildId2, list[1].Id);
49 Assert.AreEqual("Child_Fetch", list[1].DataPortalMethod);
50
51 Assert.AreEqual(MockList.MockEditableChildId3, list[2].Id);
52 Assert.AreEqual("Child_Fetch", list[2].DataPortalMethod);
53 }
54
55 [TestMethod]
57 {
58 var list = await Csla.DataPortal.FetchAsync<MockList>();
59 var expectedGrandChildIds =
60 new[]
61 {
65 };
66
67 for (int index = 0; index < list.Count; index++)
68 {
69 var child = list[index];
70 Assert.IsNotNull(child.GrandChildren);
71 Assert.AreEqual(1, child.GrandChildren.Count);
72 Assert.AreEqual(expectedGrandChildIds[index], child.GrandChildren[0].Id);
73 Assert.AreEqual("Child_Fetch", child.GrandChildren[0].DataPortalMethod);
74 }
75 }
76
77 //valid names: c1, c2, c3
78 [TestMethod]
80 {
81 var list = await Csla.DataPortal.FetchAsync<MockList>("INVALID");
82 Assert.AreEqual(0, list.Count);
83 }
84
85 [TestMethod]
87 {
88 var list = await Csla.DataPortal.FetchAsync<MockList>("c2");
89 Assert.AreEqual(1, list.Count);
90 Assert.AreEqual("c2", list[0].Name);
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 [TestMethod]
117 [ExpectedException(typeof(InvalidOperationException))]
119 {
120 var list = await Csla.DataPortal.FetchAsync<MockList>("c2");
121 list[0].Save();
122 }
123
124 [TestMethod]
125 [ExpectedException(typeof(InvalidOperationException))]
127 {
128 var list = await Csla.DataPortal.FetchAsync<MockList>("c2");
129 list[0].GrandChildren.Save();
130 }
131
132 [TestMethod]
133 [ExpectedException(typeof(InvalidOperationException))]
135 {
136 var list = await Csla.DataPortal.FetchAsync<MockList>("c2");
137 list[0].GrandChildren[0].Save();
138 }
139
140 [TestMethod]
142 {
143 var fetchedList = await Csla.DataPortal.FetchAsync<MockList>("c2");
144 Assert.AreEqual(1, fetchedList.Count);
145
146 fetchedList[0].Name = "saving";
147 var savedList = await fetchedList.SaveAsync();
148 Assert.AreEqual(fetchedList.Count, savedList.Count);
149 }
150
151 [TestMethod]
153 {
154 var fetchedList = await Csla.DataPortal.FetchAsync<MockList>("c2");
155 Assert.AreEqual("c2", fetchedList[0].Name);
156 Assert.AreEqual("Child_Fetch", fetchedList[0].DataPortalMethod);
157
158 fetchedList[0].Name = "saving";
159 Assert.IsTrue(fetchedList[0].IsDirty);
160
161 var savedList = await fetchedList.SaveAsync();
162 Assert.AreEqual(fetchedList[0].Id, savedList[0].Id);
163 Assert.AreEqual(fetchedList[0].Name, savedList[0].Name);
164
165 Assert.AreEqual("Child_Update", savedList[0].DataPortalMethod);
166 Assert.IsFalse(savedList[0].IsDirty);
167
168 Assert.AreEqual(fetchedList[0].GrandChildren.Count, savedList[0].GrandChildren.Count);
169 }
170
171 [TestMethod]
173 {
174 var fetchedList = await Csla.DataPortal.FetchAsync<MockList>("c2");
175 var fetchedGrandChild = fetchedList[0].GrandChildren[0];
176
177 Assert.AreEqual("Child_Fetch", fetchedGrandChild.DataPortalMethod);
178
179 fetchedGrandChild.Name = "saving";
180 Assert.IsTrue(fetchedGrandChild.IsDirty);
181
182 var savedList = await fetchedList.SaveAsync();
183 var savedGrandChild = savedList[0].GrandChildren[0];
184 Assert.AreEqual("Child_Update", savedGrandChild.DataPortalMethod);
185 Assert.IsFalse(savedGrandChild.IsDirty);
186 Assert.AreEqual(fetchedGrandChild.Name, savedGrandChild.Name);
187 Assert.AreEqual(fetchedGrandChild.Id, savedGrandChild.Id);//Guids used - otherwisewe would not test for this
188 }
189 }
190}
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()