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
DashboardTests.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="DashboardTests.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.Collections.Generic;
10using System.Linq;
11using System.Text;
12using System.Threading.Tasks;
13using Csla;
16using Csla.TestHelpers;
18#if !NUNIT
19using Microsoft.VisualStudio.TestTools.UnitTesting;
20#else
21using NUnit.Framework;
22using TestClass = NUnit.Framework.TestFixtureAttribute;
23using TestInitialize = NUnit.Framework.SetUpAttribute;
24using TestCleanup = NUnit.Framework.TearDownAttribute;
25using TestMethod = NUnit.Framework.TestAttribute;
26#endif
27
29{
30 [TestClass]
31 public class DashboardTests
32 {
33 // [TestCleanup]
34 // public void TestCleanup()
35 // {
36 // new CslaConfiguration().DataPortal().DashboardType("");
37 // }
38
39 [TestMethod]
41 {
42 ServiceProvider serviceProvider;
43
44 // Initialise DI, and add Csla using default settings
45 var services = new ServiceCollection();
46 services.AddCsla();
47 serviceProvider = services.BuildServiceProvider();
48
49 IDashboard dashboard = serviceProvider.GetRequiredService<IDashboard>();
50 Assert.IsInstanceOfType(dashboard, typeof(Csla.Server.Dashboard.NullDashboard));
51 }
52
53 // This would really be testing the behaviour of the service provider not the dashboard
54 // That doesn't really feel all that appropriate as a test
55 // [TestMethod]
56 // public void DashboardUseRealDashboard()
57 // {
58 // new CslaConfiguration().DataPortal().DashboardType("Dashboard");
59 // var dashboard = Csla.Server.Dashboard.DashboardFactory.GetDashboard();
60 // Assert.IsInstanceOfType(dashboard, typeof(Csla.Server.Dashboard.Dashboard));
61 // }
62
63 [TestMethod]
64 [TestCategory("SkipWhenLiveUnitTesting")]
65 public async Task DashboardSuccessCounter()
66 {
67 IServiceProvider serviceProvider = InitialiseServiceProviderUsingRealDashboard();
68 var dashboard = serviceProvider.GetRequiredService<IDashboard>();
69
70 var obj = CreateSimpleType(serviceProvider);
71
72 await Task.Delay(500);
73
74 Assert.IsTrue(dashboard.FirstCall.Ticks > 0);
75 Assert.AreEqual(1, dashboard.TotalCalls, "total");
76 Assert.AreEqual(0, dashboard.FailedCalls, "failed");
77 Assert.AreEqual(1, dashboard.CompletedCalls, "completed");
78 }
79
80 // This test fails when included. Are failures not being recorded correctly?
81 // N.B. This test was already ignored before CSLA 6, so it appears it used to fail before too!
82 [Ignore]
83 [TestMethod]
84 [TestCategory("SkipWhenLiveUnitTesting")]
85 public async Task DashboardFailureCounter()
86 {
87 IServiceProvider serviceProvider = InitialiseServiceProviderUsingRealDashboard();
88 var dashboard = serviceProvider.GetRequiredService<IDashboard>();
89
90 try
91 {
92 var obj = FetchSimpleType(serviceProvider, "123");
93 }
94 catch { /*expected failure*/ }
95
96 await Task.Delay(500);
97
98 Assert.IsTrue(dashboard.FirstCall.Ticks > 0);
99 Assert.AreEqual(1, dashboard.TotalCalls, "total");
100 Assert.AreEqual(1, dashboard.FailedCalls, "failed");
101 Assert.AreEqual(0, dashboard.CompletedCalls, "completed");
102 }
103
104 // This test fails when included. Are failures not being recorded correctly?
105 // N.B. This test was already ignored before CSLA 6, so it appears it used to fail before too!
106 [Ignore]
107 [TestMethod]
108 [TestCategory("SkipWhenLiveUnitTesting")]
109 public async Task DashboardRecentActivity()
110 {
111 IServiceProvider serviceProvider = InitialiseServiceProviderUsingRealDashboard();
112 var dashboard = serviceProvider.GetRequiredService<IDashboard>();
113
114 var obj = FetchSimpleType(serviceProvider, 123);
115 try
116 {
117 obj = FetchSimpleType(serviceProvider, "123");
118 }
119 catch { /*expected failure*/ }
120
121 await Task.Delay(500);
122
123 var activity = dashboard.GetRecentActivity();
124 Assert.AreEqual(2, activity.Count, "count");
125 Assert.IsTrue(activity.Average(r => r.Runtime.TotalMilliseconds) > 0, "runtime");
126 Assert.AreEqual(typeof(SimpleType).AssemblyQualifiedName, activity.Select(r => r.ObjectType).First().AssemblyQualifiedName);
127 Assert.AreEqual(DataPortalOperations.Fetch, activity.Select(r => r.Operation).First());
128 }
129
130 private SimpleType CreateSimpleType(IServiceProvider serviceProvider)
131 {
132 IDataPortal<SimpleType> dataPortal = serviceProvider.GetRequiredService<IDataPortal<SimpleType>>();
133 return dataPortal.Create();
134 }
135
136 private SimpleType FetchSimpleType(IServiceProvider serviceProvider, int id)
137 {
138 IDataPortal<SimpleType> dataPortal = serviceProvider.GetRequiredService<IDataPortal<SimpleType>>();
139 return dataPortal.Fetch(id);
140 }
141
142 private SimpleType FetchSimpleType(IServiceProvider serviceProvider, string idString)
143 {
144 IDataPortal<SimpleType> dataPortal = serviceProvider.GetRequiredService<IDataPortal<SimpleType>>();
145 return dataPortal.Fetch(idString);
146 }
147
148 private IServiceProvider InitialiseServiceProviderUsingRealDashboard()
149 {
150 ServiceProvider serviceProvider;
151
152 // Initialise DI
153 var services = new ServiceCollection();
154 services.AddCslaTesting();
155
156 // Add Csla, using the real dashboard
157 services.AddSingleton<IDashboard, Dashboard>();
158 services.AddCsla();
159 serviceProvider = services.BuildServiceProvider();
160
161 return serviceProvider;
162
163 }
164 }
165
167 public class SimpleType : BusinessBase<SimpleType>
168 {
169 public static readonly PropertyInfo<int> IdProperty = RegisterProperty<int>(c => c.Id);
170 public int Id
171 {
172 get { return GetProperty(IdProperty); }
173 set { SetProperty(IdProperty, value); }
174 }
175
176 [Create]
177 private void DataPortal_Create()
178 {
179 BusinessRules.CheckRules();
180 }
181
182 [Fetch]
183 private void DataPortal_Fetch(int id)
184 {
185 // load values into object
186 System.Threading.Thread.Sleep(10);
187 }
188
189 [Insert]
190 protected void DataPortal_Insert()
191 {
192 // insert object's data
193 }
194
195 [Update]
196 protected void DataPortal_Update()
197 {
198 // update object's data
199 }
200
201 [DeleteSelf]
202 protected void DataPortal_DeleteSelf()
203 {
204 DataPortal_Delete(ReadProperty(IdProperty));
205 }
206
207 [Delete]
208 private void DataPortal_Delete(int id)
209 {
210 // delete object's data
211 }
212
213 }
214}
This is the base class from which most business objects will be derived.
Definition: BusinessBase.cs:38
Maintains metadata about a property.
Data portal server dashboard.
Definition: Dashboard.cs:21
Data portal server dashboard that records no data and consumes no meaningful overhead.
static readonly PropertyInfo< int > IdProperty
Interface defining the members of the data portal type.
Definition: IDataPortalT.cs:17
object Fetch(params object[] criteria)
Called by a factory method in a business class to retrieve an object, which is loaded with values fro...
object Create(params object[] criteria)
Called by a factory method in a business class to create a new object, which is loaded with default v...
Data portal server dashboard.
Definition: IDashboard.cs:17
@ Serializable
Prevents updating or inserting until the transaction is complete.
DataPortalOperations
List of data portal operations.
@ Update
Update operation (includes insert, update and delete self).
@ Fetch
Fetch operation.
@ Create
Create operation.
@ Delete
Delete operation.