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
EditContextCslaExtensionsTests.cs
Go to the documentation of this file.
1using Microsoft.VisualStudio.TestTools.UnitTesting;
3using Microsoft.AspNetCore.Components.Forms;
4using System.Collections.Generic;
5using System.Linq;
7using System;
8using Csla.TestHelpers;
9
10namespace Csla.Blazor.Test
11{
12 [TestClass]
14 {
15 private static TestDIContext _testDIContext;
16
18 public static void ClassInitialize(TestContext context)
19 {
20 _testDIContext = TestDIContextFactory.CreateDefaultContext();
21 }
22
23 [TestMethod]
25 {
26 // Arrange
27 FakePerson person = GetValidFakePerson();
28 EditContext editContext = new EditContext(person);
29 editContext.AddCslaValidation();
30
31 // Set last name to an invalid value
32 person.LastName = string.Empty;
33
34 // Act
35 editContext.Validate();
36 IEnumerable<string> messages = editContext.GetValidationMessages();
37
38 // Assert
39 Assert.AreEqual(1, messages.Count(), "Incorrect number of validation messages returned! " + ConcatenateMessages(messages));
40
41 }
42
43 [TestMethod]
45 {
46 // Arrange
47 FakePerson person = GetValidFakePerson();
48 EditContext editContext = new EditContext(person);
49 editContext.AddCslaValidation();
50
51 // Set last name to an invalid value
52 person.LastName = "A";
53
54 // Act
55 editContext.Validate();
56 IEnumerable<string> messages = editContext.GetValidationMessages();
57
58 // Assert
59 Assert.AreEqual(0, messages.Count(), "Incorrect number of validation messages returned! " + ConcatenateMessages(messages));
60
61 }
62
63 [TestMethod]
65 {
66 // Arrange
67 FakePerson person = GetValidFakePerson();
68 EditContext editContext = new EditContext(person);
69 editContext.AddCslaValidation();
70
71 // Set last name to an invalid value
72 person.LastName = "A";
73
74 // Act
75 editContext.Validate();
76 IEnumerable<string> messages = editContext.GetValidationMessages();
77
78 // Assert
79 Assert.AreEqual(0, messages.Count(), "Incorrect number of validation messages returned! " + ConcatenateMessages(messages));
80
81 }
82
83 [TestMethod]
85 {
86 // Arrange
87 FakePerson person = GetValidFakePerson();
88 EditContext editContext = new EditContext(person);
89 editContext.AddCslaValidation();
90
91 // Set first and last names to invalid values
92 person.FirstName = "This text is more than twenty five characters long";
93 person.LastName = string.Empty;
94
95 // Act
96 editContext.Validate();
97 IEnumerable<string> messages = editContext.GetValidationMessages();
98
99 // Assert
100 Assert.AreEqual(2, messages.Count(), "Incorrect number of validation messages returned! " + ConcatenateMessages(messages));
101
102 }
103
104 [TestMethod]
106 {
107 // Arrange
108 FakePerson person = GetValidFakePerson();
109 EditContext editContext = new EditContext(person);
110 editContext.AddCslaValidation();
111
112 // Set both phone numbers to invalid values
113 person.HomeTelephone = "";
114 person.MobileTelephone = "";
115
116 // Act
117 editContext.Validate();
118 IEnumerable<string> messages = editContext.GetValidationMessages();
119
120 // Assert
121 Assert.AreEqual(2, messages.Count(), "Incorrect number of validation messages returned! " + ConcatenateMessages(messages));
122
123 }
124
125 [TestMethod]
127 {
128 // Arrange
129 FakePerson person = GetValidFakePerson();
130 EditContext editContext = new EditContext(person);
131 editContext.AddCslaValidation();
132
133 // Create a new child object (which is immediately invalid)
134 person.EmailAddresses.AddNew();
135
136 // Act
137 editContext.Validate();
138 IEnumerable<string> messages = editContext.GetValidationMessages();
139
140 // Assert
141 Assert.AreEqual(1, messages.Count(), "Incorrect number of validation messages returned! " + ConcatenateMessages(messages));
142
143 }
144
145 [TestMethod]
147 {
148 // Arrange
149 FakePerson person = GetValidFakePerson();
150 EditContext editContext = new EditContext(person);
151 editContext.AddCslaValidation();
152
153 // Set first and last names to invalid values
154 person.FirstName = "This text is more than twenty five characters long";
155 person.LastName = string.Empty;
156
157 // Act
158 editContext.NotifyFieldChanged(new FieldIdentifier(person, nameof(person.FirstName)));
159 IEnumerable<string> messages = editContext.GetValidationMessages(new FieldIdentifier(person, nameof(person.FirstName)));
160
161 // Assert
162 Assert.AreEqual(1, messages.Count(), "Incorrect number of validation messages returned! " + ConcatenateMessages(messages));
163
164 }
165
166 [TestMethod]
168 {
169 // Arrange
170 FakePerson person = GetValidFakePerson();
171 EditContext editContext = new EditContext(person);
172 editContext.AddCslaValidation();
173
174 // Set both phone numbers to invalid values
175 person.HomeTelephone = "";
176 person.MobileTelephone = "";
177
178 // Act
179 editContext.NotifyFieldChanged(new FieldIdentifier(person, nameof(person.HomeTelephone)));
180 IEnumerable<string> messages = editContext.GetValidationMessages(new FieldIdentifier(person, nameof(person.HomeTelephone)));
181
182 // Assert
183 Assert.AreEqual(1, messages.Count(), "Incorrect number of validation messages returned! " + ConcatenateMessages(messages));
184
185 }
186
187 [TestMethod]
189 {
190 // Arrange
191 FakePerson person = GetValidFakePerson();
192 EditContext editContext = new EditContext(person);
193 editContext.AddCslaValidation();
194
195 // Set first name to an invalid value
196 person.FirstName = "A";
197
198 // Act
199 editContext.NotifyFieldChanged(new FieldIdentifier(person, nameof(person.FirstName)));
200 IEnumerable<string> messages = editContext.GetValidationMessages(new FieldIdentifier(person, nameof(person.FirstName)));
201
202 // Assert
203 Assert.AreEqual(0, messages.Count(), "Incorrect number of validation messages returned! " + ConcatenateMessages(messages));
204
205 }
206
207 [TestMethod]
209 {
210 // Arrange
211 FakePerson person = GetValidFakePerson();
212 EditContext editContext = new EditContext(person);
213 editContext.AddCslaValidation();
214
215 // Set both last name to an invalid value
216 person.LastName = "A";
217
218 // Act
219 editContext.NotifyFieldChanged(new FieldIdentifier(person, nameof(person.LastName)));
220 IEnumerable<string> messages = editContext.GetValidationMessages(new FieldIdentifier(person, nameof(person.LastName)));
221
222 // Assert
223 Assert.AreEqual(0, messages.Count(), "Incorrect number of validation messages returned! " + ConcatenateMessages(messages));
224
225 }
226
227 [TestMethod]
229 {
230 // Arrange
231 FakePerson person = GetValidFakePerson();
232 EditContext editContext = new EditContext(person);
233 editContext.AddCslaValidation();
234
235 // Add a new, empty email address
236 FakePersonEmailAddress address = person.EmailAddresses.AddNew();
237 address.EmailAddress = "";
238
239 // Act
240 editContext.NotifyFieldChanged(new FieldIdentifier(address, nameof(address.EmailAddress)));
241 IEnumerable<string> messages = editContext.GetValidationMessages(new FieldIdentifier(address, nameof(address.EmailAddress)));
242
243 // Assert
244 Assert.AreEqual(1, messages.Count(), "Incorrect number of validation messages returned! " + ConcatenateMessages(messages));
245
246 }
247
248 [TestMethod]
250 {
251 // Arrange
252 FakePerson person = GetValidFakePerson();
253 EditContext editContext = new EditContext(person);
254 editContext.AddCslaValidation();
255
256 // Add a new, valid email address
257 FakePersonEmailAddress address = person.EmailAddresses.AddNew();
258 address.EmailAddress = "name@domain.com";
259
260 // Act
261 editContext.NotifyFieldChanged(new FieldIdentifier(address, nameof(address.EmailAddress)));
262 IEnumerable<string> messages = editContext.GetValidationMessages(new FieldIdentifier(address, nameof(address.EmailAddress)));
263
264 // Assert
265 Assert.AreEqual(0, messages.Count(), "Incorrect number of validation messages returned! " + ConcatenateMessages(messages));
266
267 }
268
269 #region Helper Methods
270
271 FakePerson GetValidFakePerson()
272 {
273 IDataPortal<FakePerson> dataPortal;
274 FakePerson person;
275
276 // Create an instance of a DataPortal that can be used for instantiating objects
277 dataPortal = _testDIContext.CreateDataPortal<FakePerson>();
278 person = dataPortal.Create();
279
280 person.FirstName = "John";
281 person.LastName = "Smith";
282 person.HomeTelephone = "01234 567890";
283
284 return person;
285 }
286
287 private string ConcatenateMessages(IEnumerable<string> messages)
288 {
289 return string.Join("; ", messages);
290 }
291
292 #endregion
293
294 }
295}
FakePersonEmailAddresses EmailAddresses
Definition: FakePerson.cs:48
Type to carry context information for DI in unit tests
Interface defining the members of the data portal type.
Definition: IDataPortalT.cs:17
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...