12using System.Threading.Tasks;
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;
22using Microsoft.VisualStudio.TestTools.UnitTesting;
30 #region List With Children - FetchAll
36 Assert.AreEqual(3, result.Count);
44 Assert.AreEqual(
"Child_Fetch", list[0].DataPortalMethod);
47 Assert.AreEqual(
"Child_Fetch", list[1].DataPortalMethod);
50 Assert.AreEqual(
"Child_Fetch", list[2].DataPortalMethod);
57 var expectedGrandChildIds =
65 for (
int index = 0; index < list.Count; index++)
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);
77 #region ListWithChildren - FetchByName
83 Assert.AreEqual(0, list.Count);
90 Assert.AreEqual(1, list.Count);
99 Assert.AreEqual(
"Child_Fetch", list[0].DataPortalMethod);
100 Assert.IsFalse(list[0].IsNew);
101 Assert.IsFalse(list[0].IsDirty);
109 Assert.AreEqual(1, child.GrandChildren.Count);
111 Assert.AreEqual(
"Child_Fetch", child.GrandChildren[0].DataPortalMethod);
112 Assert.IsFalse(child.GrandChildren[0].IsNew);
113 Assert.IsFalse(child.GrandChildren[0].IsDirty);
118 #region Calling Save on non-Root element - Child/GrandChild Save() - InvalidOperationException
121 [ExpectedException(typeof(InvalidOperationException))]
129 [ExpectedException(typeof(InvalidOperationException))]
133 list[0].GrandChildren.
Save();
137 [ExpectedException(typeof(InvalidOperationException))]
141 list[0].GrandChildren[0].
Save();
151 Assert.AreEqual(1, fetchedList.Count);
153 fetchedList[0].Name =
"saving";
154 var savedList = await fetchedList.
SaveAsync();
155 Assert.AreEqual(fetchedList.Count, savedList.Count);
162 Assert.AreEqual(
"c2", fetchedList[0].Name);
163 Assert.AreEqual(
"Child_Fetch", fetchedList[0].DataPortalMethod);
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);
171 Assert.AreEqual(
"Child_Update", savedList[0].DataPortalMethod);
172 Assert.IsFalse(savedList[0].IsDirty);
174 Assert.AreEqual(fetchedList[0].GrandChildren.Count, savedList[0].GrandChildren.Count);
181 var fetchedGrandChild = fetchedList[0].GrandChildren[0];
183 Assert.AreEqual(
"Child_Fetch", fetchedGrandChild.DataPortalMethod);
185 fetchedGrandChild.Name =
"saving";
186 Assert.IsTrue(fetchedGrandChild.IsDirty);
188 var savedList = await fetchedList.
SaveAsync();
189 var savedGrandChild = savedList[0].GrandChildren[0];
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);
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.
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,...
static Guid MockEditableChildId2
static Guid MockEditableChildId1
static Guid MockEditableChildId3
async Task Save_on_EditableChild_Throws_InvalidOperationException()
async Task After_Saved_FetchedList_should_contain_same_number_of_items()
async Task FetchAll_Loads_GrandChildren_with_correct_Ids()
async Task Save_on_GrandChildList_Throws_InvalidOperationException()
async Task FetchByName_c2_Returns_one_Element_with_name_c2_and_correct_Id()
async Task FetchByName_INVALID_Returns_Empty_List()
async Task Save_on_GrandChildList_Item_Throws_InvalidOperationException()
async Task After_Saved_FetchedList_Items_should_contain_same_values_and_Marked_NotDirty()
async Task FetchByName_c2_Returns_Element_with_correct_Id_Marked_NotNew_and_NotDirty()
async Task FetchAll_Returns_all_3_Elements_and_does_not_throw_any_Exceptions()
async Task After_Saved_GrandChild_should_be_NotDirty_and_should_have_same_value_as_Fetched_GrandChild()
async Task FetchAll_Returns_Elements_with_correctly_assigned_Ids()
async Task FetchByName_c2_Returns_Element_with_one_GrandChild()