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
EditableRootTests.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="EditableRootTests.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 System;
9using System.Threading;
11using System.Diagnostics;
12using Csla;
13using UnitDriven;
15using System.Threading.Tasks;
16
17#if NUNIT
18using NUnit.Framework;
19using TestClass = NUnit.Framework.TestFixtureAttribute;
20using TestInitialize = NUnit.Framework.SetUpAttribute;
21using TestCleanup = NUnit.Framework.TearDownAttribute;
22using TestMethod = NUnit.Framework.TestAttribute;
23using TestSetup = NUnit.Framework.SetUpAttribute;
24#elif MSTEST
25using Microsoft.VisualStudio.TestTools.UnitTesting;
26#endif
27
29{
30 [TestClass]
32 {
33 [TestMethod]
34 public void CanConstructTest()
35 {
36 var context = GetContext();
37 var root = new MockEditableRoot();
38 context.Assert.Success();
39 }
40
41 [TestMethod]
43 {
44 var context = GetContext();
45 var actual = await Csla.DataPortal.CreateAsync<MockEditableRoot>();
46 context.Assert.IsNotNull(actual);
47 context.Assert.AreEqual(MockEditableRoot.MockEditableRootId, actual.Id);
48 context.Assert.IsTrue(actual.IsNew);
49 context.Assert.IsTrue(actual.IsDirty);
50 context.Assert.IsFalse(actual.IsDeleted);
51 context.Assert.AreEqual("create", actual.DataPortalMethod);
52 context.Assert.Success();
53 context.Complete();
54 }
55
56 [TestMethod]
57
59 {
60 var context = GetContext();
62 {
63 Name = "justin"
64 };
65 var actual = await root.SaveAsync();
66 context.Assert.AreEqual(MockEditableRoot.MockEditableRootId, actual.Id);
67 context.Assert.IsFalse(actual.IsNew);
68 context.Assert.IsFalse(actual.IsDirty);
69 context.Assert.AreEqual("insert", actual.DataPortalMethod);
70 context.Assert.Success();
71
72 context.Complete();
73 }
74
75 [TestMethod]
76
78 {
79 var context = GetContext();
81 root.Name = "justin";
82
83 //State prior to saved
84 context.Assert.IsFalse(root.IsNew);
85 context.Assert.IsTrue(root.IsDirty);
86
87 var actual = await root.SaveAsync();
88 context.Assert.AreEqual(MockEditableRoot.MockEditableRootId, actual.Id);
89 context.Assert.IsFalse(actual.IsNew);
90 context.Assert.IsFalse(actual.IsDirty);
91 context.Assert.AreEqual("update", actual.DataPortalMethod);
92 context.Assert.Success();
93
94 context.Complete();
95 }
96
97 [TestMethod]
98
100 {
101 var context = GetContext();
103 root.Delete();
104 //state prior to save()
105 context.Assert.IsFalse(root.IsNew);
106 context.Assert.IsTrue(root.IsDirty);
107 context.Assert.IsTrue(root.IsDeleted);
108
109 var actual = await root.SaveAsync();
110 context.Assert.IsTrue(actual.IsNew);
111 context.Assert.IsTrue(actual.IsDirty);
112 context.Assert.IsFalse(actual.IsDeleted);
113 context.Assert.AreEqual("delete", actual.DataPortalMethod);
114 context.Assert.Success();
115
116 context.Complete();
117 }
118
119 [TestMethod]
121 {
123 Assert.AreEqual(MockEditableRoot.MockEditableRootId, actual.Id);
124 Assert.AreEqual("fetch", actual.DataPortalMethod);
125 Assert.IsFalse(actual.IsNew);
126 Assert.IsFalse(actual.IsDeleted);
127 Assert.IsFalse(actual.IsDirty);
128 }
129 }
130}
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 > CreateAsync(params object[] criteria)
Called by a factory method in a business class or by the UI to create a new object,...
Definition: DataPortalT.cs:184
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
UnitTestContext GetContext()
Definition: TestBase.cs:12
async Task When_New_EditableRoot_is_Saved_Then_returned_object_isMarked_NotNew_NotDirty()
async Task When_Fetching_EditableRoot_the_object_returned_ShouldNotBe_Marked_New_Deleted_or_Dirty()
async Task If_EditableRoot_IsDeleted_Then_Saved_Returns_New_Dirty_Instance_of_Root_That_is_no_longer_marked_Deleted()
async Task When_EditableRoot_is_Saved_Then_we_receive_an_object_back_that_is_Marked_as_NotNew_NotDirty()
async Task When_CreateNew_Returns_EditableRoot_Then_returned_object_is_Marked_New_Dirty_and_NotDeleted()