2using System.ComponentModel;
3using System.Globalization;
8using Microsoft.VisualStudio.TestTools.UnitTesting;
34 return testContextInstance;
38 testContextInstance = value;
45 _testDIContext = TestDIContextFactory.CreateDefaultContext();
53 Assert.IsTrue(rule.IsAsync);
54 Assert.IsFalse(rule.CanRunOnServer);
55 Assert.IsFalse(rule.CanRunInCheckRules);
56 Assert.IsFalse(rule.CanRunAsAffectedProperty);
63 Assert.IsFalse(rule.IsAsync);
64 Assert.IsTrue(rule.CanRunOnServer);
65 Assert.IsTrue(rule.CanRunInCheckRules);
66 Assert.IsTrue(rule.CanRunAsAffectedProperty);
73 Assert.IsFalse(rule.IsAsync);
74 Assert.IsFalse(rule.CanRunOnServer);
75 Assert.IsTrue(rule.CanRunInCheckRules);
76 Assert.IsTrue(rule.CanRunAsAffectedProperty);
80 [ExpectedException(typeof(ArgumentException))]
96 string ruleSet =
"Date";
100 Thread.CurrentThread.CurrentCulture = CultureInfo.GetCultureInfo(
"en-US");
102 actual.EndDate =
"yesterday";
107 Assert.IsFalse(actual.IsSelfValid);
108 Assert.IsTrue(err1.Length > 1);
109 Assert.IsTrue(err2.Length > 1);
111 actual.EndDate =
"tomorrow";
115 Assert.IsTrue(actual.IsSelfValid);
116 Assert.AreEqual(
string.Empty, err1);
117 Assert.AreEqual(
string.Empty, err2);
125 string ruleSet =
"Lookup";
129 Assert.AreEqual(
string.Empty, actual.Name);
133 [TestCategory(
"SkipWhenLiveUnitTesting")]
138 string ruleSet =
"Lookup";
141 var waitHandle =
new EventWaitHandle(
false, EventResetMode.ManualReset);
142 actual.ValidationComplete += (o, e) => waitHandle.Set();
144 actual.CustomerId = 1;
145 waitHandle.WaitOne();
146 Assert.AreEqual(
"Rocky Lhotka", actual.Name);
149 actual.CustomerId = 2;
150 waitHandle.WaitOne();
151 Assert.AreEqual(
"Customer_2", actual.Name);
161 string ruleSet =
"LookupAndNameRequired";
167 Assert.AreEqual(
string.Empty, actual.Name);
168 Assert.IsFalse(actual.IsSelfValid);
169 Assert.IsTrue(err1.Length > 0);
173 [TestCategory(
"SkipWhenLiveUnitTesting")]
180 string ruleSet =
"LookupAndNameRequired";
185 Assert.IsFalse(actual.IsSelfValid);
187 var waitHandle =
new EventWaitHandle(
false, EventResetMode.ManualReset);
188 actual.ValidationComplete += (o, e) => waitHandle.Set();
190 actual.CustomerId = 1;
191 waitHandle.WaitOne();
193 Assert.IsTrue(actual.IsSelfValid);
201 string ruleSet =
"Object";
203 Assert.IsTrue(actual.IsSelfValid);
211 string ruleSet =
"Object";
215 Assert.IsFalse(actual.IsValid);
216 Assert.AreEqual(3, actual.BrokenRulesCollection.Where(p => p.Severity ==
RuleSeverity.Error).Count());
224 string ruleSet =
"Object";
228 Assert.IsTrue(actual.IsValid);
229 Assert.AreEqual(3, actual.BrokenRulesCollection.Where(p => p.Severity ==
RuleSeverity.Warning).Count());
237 string ruleSet =
"Object";
241 Assert.IsTrue(actual.IsValid);
242 Assert.AreEqual(3, actual.BrokenRulesCollection.Where(p => p.Severity ==
RuleSeverity.Information).Count());
251 string ruleSet =
"Required";
253 var culture = Thread.CurrentThread.CurrentCulture;
255 Thread.CurrentThread.CurrentCulture = CultureInfo.GetCultureInfo(
"en-US");
256 Thread.CurrentThread.CurrentUICulture = CultureInfo.GetCultureInfo(
"en-US");
259 Assert.AreEqual(
"Name required", actual.BrokenRulesCollection[0].Description);
260 Thread.CurrentThread.CurrentCulture = CultureInfo.GetCultureInfo(
"nb-NO");
261 Thread.CurrentThread.CurrentUICulture = CultureInfo.GetCultureInfo(
"nb-NO");
264 Assert.AreEqual(
"Name påkrevd", actual.BrokenRulesCollection[0].Description);
265 Thread.CurrentThread.CurrentCulture = culture;
266 Thread.CurrentThread.CurrentUICulture = culture;
CalcSum rule will set primary property to the sum of all.
Implements a rule to compare 2 property values and make sure property1 is less than property2
static readonly PropertyInfo< Csla.SmartDate > EndDateProperty
static readonly PropertyInfo< int > CustomerIdProperty
static readonly PropertyInfo< Csla.SmartDate > StartDateProperty
static readonly PropertyInfo< string > NameProperty
static RuleBaseClassesRoot NewEditableRoot(IDataPortal< RuleBaseClassesRoot > dataPortal, string ruleSet)
This is a test class for RootTest and is intended to contain all RootTest Unit Tests /summary>
void NewObjectWithObjectRulesHas3WarningsForCustomerId5()
void NewObjectWithObjectRulesHas3InfosForCustomerId6()
void NewObjectWithObjectRulesHas3ErrorForCustomerId4()
void NewObjectWithObjectRulesIsValid()
void PropertyRuleDefaultCanXYZVaules()
void NameRequiredIsNotBrokenAfterLookupCustomer()
void AsyncLookupCustomerSetsCustomerName()
void MessageDelegateAndResources()
static void ClassInitialize(TestContext context)
void PropertyEditRuleDefaultCanXYZVaules()
void NameRequiredIsBrokenOnNewRoot()
void ObjectRuleThrowsExceptionIfPrimareyPropertyIsSet()
TestContext TestContext
Gets or sets the test context which provides information about and functionality for the current test...
void LookupRuleDefaultCanXYZValues()
void AsyncLookupDoNotRunServerSide()
void LessThanSetsErrorOnBothFields()
A test for NewEditableRoot /summary>
Type to carry context information for DI in unit tests
Interface defining the members of the data portal type.
RuleSeverity
Values for validation rule severities.