Valitru (Validation+Unit+Rule) is a basic framework created to do rule based validation.
In a nutshell, you can create rules with custom logic and use them to validate an object.
This is not simply my version of a "rules engine". Each rule in this framework allows custom logic to determine it's validity.
Many times, object validation is done in a single method with many if statements. This requires a developer to code a Unit Test that will pass all preceeding rules until it reachs the desired rule.
All rules are registered and when validation is called for, all rules are checked*.
This single call for validation prevents rules from getting lost in the daily development shuffle of adding new methods where validation is needed.
* The exception being that the object may not meet the conditional rule's criteria.
Basic rules are run every time.
public ValidationRule<Order> RuleOrderPlacedDateTimeMustBeInThePast()
=>
ValidationRule.NewRule<Order>()
.ValidIf(order => DateTime.Now >= order.OrderDateTime)
.SetErrorMessage(order => $"Order has an invalid Date/Time of {order.OrderDateTime }")
.AddInvalidMember(order => order.OrderDateTime);
Conditional Rules differ in that they are only validated if the object meets the criteria provided in the OnlyCheckIf
method.
public ValidationRule<Order> RuleOrderCannotHaveAShippedDateLaterThanDatePlaced()
=>
ValidationRule.NewRule<Order>()
.OnlyCheckIf(order => order.ShipDateTime.HasValue)
.ValidIf(order => order.ShipDateTime.Value >= order.OrderDateTime)
.SetErrorMessage(order => $"Order Ship Date/Time '{order.ShipDateTime.Value}' is invalid")
.AddInvalidMember(order => order.ShipDateTime);
At times there will be a rule where if it fails, you want to immediately stop processing any further rules and kick out. You can call the StopProcessingMoreRulesIfValidationFails
method to implement this.
public ValidationRule<Order> RuleOrderCannotHaveAShippedDateLaterThanDatePlaced()
=>
ValidationRule.NewRule<Order>()
.OnlyCheckIf(order => order.ShipDateTime.HasValue)
.ValidIf(order => order.ShipDateTime.Value >= order.OrderDateTime)
.StopProcessingMoreRulesIfValidationFails()
.SetErrorMessage(order => $"Order Ship Date/Time '{order.ShipDateTime.Value}' is invalid")
.AddInvalidMember(order => order.ShipDateTime);
The pattern involves creating a class that inherits from ValidationServiceBase<T>
and overrides the AllRules()
method.
public class OrderValidation : ValidationServiceBase<Order>
{
//rules...
public override ValidationRules<Order> AllRules() => new ValidationRules<Order>
{
Rules =
{
RuleOrderPlacedDateTimeMustBeInThePast(),
RuleOrderCannotHaveAShippedDateLaterThanDatePlaced()
}
};
}
There are often many simple rules that we want to run and return any failures in bulk. Those rules, due to their simplicity, may appear first in the list, followed by more complicated rules, that may do things such as hitting up a database. If our simple rules have failed, why bother hitting the database? Enter the 'StopProcessingIfInvalidCheckpoint'. This class is an easy way to say, "If any rules have proven invalid by the time you arrive at this checkpoint, just return". In the example below, we will process the first three rules and if any fail, we will never even check the rules that follow after the checkpoint.
public class OrderValidation : ValidationServiceBase<Order>
{
//rules...
public override ValidationRules<Order> AllRules() => new ValidationRules<Order>
{
Rules =
{
RuleOrderMarkedAsShippedMustHaveAShippedDate(),
RuleOrderCannotHaveDuplicateConfirmationNumber(),
RuleOrderMustHaveAShippingAddressStreet1WhenMarkedAsShipped(),
new StopProcessingIfInvalidCheckpoint<Order>(),
RuleCustomersCannotHaveMoreThanFiveOrdersAMonth()
}
};
}
Calling the Validate
method will validate the instance against all basic rules and any conditional rules where applicable.
public class OrderService
{
private readonly OrderValidation _orderValidator;
private readonly IOrderRepository _orderRepository;
//constructor...
public bool PlaceOrder(Order orderToBePlaced)
{
var result = _orderValidator.Validate(orderToBePlaced);
if (!result.IsValid) { return false; }
//process the order...
_orderRepository.Save(orderToBePlaced);
return true;
}
}
Rules declared separately within their validation class can easily be tested on an individual basis. Rules can also be established outside of a validation class and easily shared among validation classes.
[TestMethod]
public void RuleOrderCannotHaveAShippedDateLaterThanDatePlaced_ShipDateAfterOrderDate_NotValid()
{
//Arrange
var order = new Order { OrderDateTime = DateTime.Today };
order.ShipDateTime = order.OrderDateTime.AddDays(-7);
//Act
var res = _orderValidation.RuleOrderCannotHaveAShippedDateLaterThanDatePlaced().Validate(order);
//Assert
Assert.IsFalse(res.IsValid);
}