13using System.Threading.Tasks;
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;
23using Microsoft.VisualStudio.TestTools.UnitTesting;
29 [System.Diagnostics.DebuggerNonUserCode]
38 Assert.AreEqual(3, list.Count);
46 Assert.AreEqual(
"Child_Fetch", list[0].DataPortalMethod);
49 Assert.AreEqual(
"Child_Fetch", list[1].DataPortalMethod);
52 Assert.AreEqual(
"Child_Fetch", list[2].DataPortalMethod);
59 var expectedGrandChildIds =
67 for (
int index = 0; index < list.Count; index++)
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);
82 Assert.AreEqual(0, list.Count);
89 Assert.AreEqual(1, list.Count);
90 Assert.AreEqual(
"c2", list[0].Name);
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);
117 [ExpectedException(typeof(InvalidOperationException))]
125 [ExpectedException(typeof(InvalidOperationException))]
129 list[0].GrandChildren.
Save();
133 [ExpectedException(typeof(InvalidOperationException))]
137 list[0].GrandChildren[0].
Save();
144 Assert.AreEqual(1, fetchedList.Count);
146 fetchedList[0].Name =
"saving";
147 var savedList = await fetchedList.
SaveAsync();
148 Assert.AreEqual(fetchedList.Count, savedList.Count);
155 Assert.AreEqual(
"c2", fetchedList[0].Name);
156 Assert.AreEqual(
"Child_Fetch", fetchedList[0].DataPortalMethod);
158 fetchedList[0].Name =
"saving";
159 Assert.IsTrue(fetchedList[0].IsDirty);
161 var savedList = await fetchedList.
SaveAsync();
162 Assert.AreEqual(fetchedList[0].Id, savedList[0].Id);
163 Assert.AreEqual(fetchedList[0].Name, savedList[0].Name);
165 Assert.AreEqual(
"Child_Update", savedList[0].DataPortalMethod);
166 Assert.IsFalse(savedList[0].IsDirty);
168 Assert.AreEqual(fetchedList[0].GrandChildren.Count, savedList[0].GrandChildren.Count);
175 var fetchedGrandChild = fetchedList[0].GrandChildren[0];
177 Assert.AreEqual(
"Child_Fetch", fetchedGrandChild.DataPortalMethod);
179 fetchedGrandChild.Name =
"saving";
180 Assert.IsTrue(fetchedGrandChild.IsDirty);
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);
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 FetchAll_Returns_all_3_Elements_and_does_not_throw_any_Exceptions()
async Task FetchAll_Loads_GrandChildren_with_correct_Ids()
async Task FetchByName_c2_Returns_Element_with_correct_Id_Marked_NotNew_and_NotDirty()
async Task FetchByName_c2_Returns_Element_with_one_GrandChild()
async Task Save_on_EditableChild_Throws_InvalidOperationException()
async Task FetchAll_Returns_Elements_with_correctly_assigned_Ids()
async Task After_Saved_FetchedList_Items_should_contain_same_values_and_Marked_NotDirty()
async Task After_Saved_FetchedList_should_contain_same_number_of_items()
async Task FetchByName_c2_Returns_one_Element_with_name_c2_and_correct_Id()
async Task After_Saved_GrandChild_should_be_NotDirty_and_should_have_same_value_as_Fetched_GrandChild()
async Task FetchByName_INVALID_Returns_Empty_List()
async Task Save_on_GrandChildList_Throws_InvalidOperationException()
async Task Save_on_GrandChildList_Item_Throws_InvalidOperationException()