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
CslaDataProviderTests.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="CslaDataProviderTests.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.Data;
9using System.Data.SqlClient;
10using Csla.Data;
11using Csla.Test.Basic;
12
13#if !NUNIT
14using Microsoft.VisualStudio.TestTools.UnitTesting;
15
16#else
17using NUnit.Framework;
18using TestClass = NUnit.Framework.TestFixtureAttribute;
19using TestInitialize = NUnit.Framework.SetUpAttribute;
20using TestCleanup = NUnit.Framework.TearDownAttribute;
21using TestMethod = NUnit.Framework.TestAttribute;
22using System.Configuration;
23using System.Linq;
24using Csla.Test.Basic;
25#endif
26
28{
29 [TestClass]
31 {
32 [TestMethod]
33 public void TestAddNew()
34 {
35
38 dp.ObjectInstance = list;
39 RootListChild child = dp.AddNew() as RootListChild;
40 Assert.IsNotNull(child);
41 }
42
43 [TestMethod]
45 {
46 Csla.Test.Basic.Root item = Csla.Test.Basic.Root.NewRoot();
48 dp.ObjectInstance = item;
49 object child = dp.AddNew();
50 Assert.IsNull(child);
51 }
52
53 [TestMethod]
54 public void TestCancelError()
55 {
58 list.BeginEdit();
59 dp.ManageObjectLifetime = true;
60 dp.ObjectInstance = list;
61 dp.RemoveItem(null, new Xaml.ExecuteEventArgs { MethodParameter = list[0] });
62 dp.Save();
63
64 Assert.AreEqual(1, list.Count);
65
66 dp.Cancel();
67 Assert.AreEqual(2, list.Count);
68
69 }
70
71 [TestMethod]
73 {
74 Customer item = Customer.GetCustomer(1);
76 dp.ObjectInstance = item;
77 item.Name = "New Name";
78 bool saved = false;
79 dp.Saved += (o, e) =>
80 {
81 Assert.IsNull(e.Error,"Error should be null");
82 Assert.IsNotNull(e.NewObject, "Object should exist");
83 Assert.AreEqual(((Customer)e.NewObject).Method, "Updating Customer New Name");
84 saved = true;
85 };
86 dp.Save();
87 Assert.IsTrue(saved);
88 }
89
90 [TestMethod]
92 {
93 Customer item = Customer.GetCustomer(1);
95 dp.ObjectInstance = item;
96 item.Name = "New Name";
97 item.Id = 0;
98 bool saved = false;
99 dp.Saved += (o, e) =>
100 {
101 Assert.IsNotNull(e.Error, "Error should be null");
102 saved = true;
103 };
104 dp.Save();
105 Assert.IsTrue(saved);
106 }
107
108 [TestMethod]
110 {
111 Customer item = Customer.GetCustomer(1);
113 dp.ObjectInstance = item;
114 bool saved = false;
115 dp.Saved += (o, e) =>
116 {
117 Assert.IsNull(e.Error, "Error should be null");
118 Assert.IsNotNull(e.NewObject, "Object should exist");
119 saved = true;
120 };
121 dp.Save();
122 Assert.IsTrue(saved);
123 }
124
125 [TestCleanup]
127 //Csla.ApplicationContext.GlobalContext.Clear();
128 }
129 }
130}
EventHandler< Csla.Core.SavedEventArgs > Saved
Event raised when an object has been saved.
override void RemoveItem(int index)
Marks the child object for deletion and moves it to the collection of deleted objects.
void BeginEdit()
Starts a nested edit on the object.
Wraps and creates a CSLA .NET-style object that you can use as a binding source.
object ObjectInstance
Gets or sets a reference to the data object.