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
Async/ChildUpdateTests.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="DataPortalChildTests.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//-----------------------------------------------------------------------
8
9using System.Threading.Tasks;
10using Csla.TestHelpers;
11using Microsoft.VisualStudio.TestTools.UnitTesting;
12#if !NUNIT
13
14#else
15using NUnit.Framework;
16using TestClass = NUnit.Framework.TestFixtureAttribute;
17using TestInitialize = NUnit.Framework.SetUpAttribute;
18using TestCleanup = NUnit.Framework.TearDownAttribute;
19using TestMethod = NUnit.Framework.TestAttribute;
20#endif
21
23{
24 [TestClass()]
25 public class ChildUpdateTests
26 {
27 private static TestDIContext _testDIContext;
28
30 public static void ClassInitialize(TestContext context)
31 {
32 _testDIContext = TestDIContextFactory.CreateDefaultContext();
33 }
34
35 [TestMethod]
36 public async Task CreateAndSaveChildAsync()
37 {
38 IChildDataPortal<Child> childDataPortal = _testDIContext.CreateChildDataPortal<Child>();
39 IDataPortal<Root> dataPortal = _testDIContext.CreateDataPortal<Root>();
40
41 Root root = await dataPortal.CreateAsync();
42 await root.FetchChildAsync(childDataPortal);
43
44 Assert.IsFalse(root.Child.IsDirty, "Child should not be dirty");
45 Assert.AreEqual("Fetched", root.Child.Status, "Child status incorrect after fetch");
46
47 root = await root.SaveAsync();
48
49 Assert.AreEqual("Fetched", root.Child.Status, "Child status incorrect after Save");
50 }
51
52 [TestMethod]
53 public async Task CreateAndSaveAnyChildAsync()
54 {
55 IChildDataPortal<Child> childDataPortal = _testDIContext.CreateChildDataPortal<Child>();
56 IDataPortal<RootUpdateAllChildren> dataPortal = _testDIContext.CreateDataPortal<RootUpdateAllChildren>();
57
58 var root = await dataPortal.CreateAsync();
59 await root.FetchChildAsync(childDataPortal);
60
61 Assert.IsFalse(root.Child.IsDirty, "Child should not be dirty");
62 Assert.AreEqual("Fetched", root.Child.Status, "Child status incorrect after fetch");
63
64 root = await root.SaveAsync();
65
66 Assert.AreEqual("Updated", root.Child.Status, "Child status incorrect after Save");
67 }
68
69 }
70}
static void ClassInitialize(TestContext context)
async Task CreateAsync([Inject] IChildDataPortal< Child > childDataPortal, [Inject]IChildDataPortal< ChildList > childListDataPortal)
Type to carry context information for DI in unit tests
Interface defining the members of the child data portal type.
Interface defining the members of the data portal type.
Definition: IDataPortalT.cs:17