测试FluentValidation PropertyValidator

Jam*_*mez 10 c# validation fluentvalidation

是否可以单独测试FluentValidation PropertyValidator

我知道我可以测试使用PropertyValidator特定错误的Validator,但是如果可能的话,我宁愿在属性验证器上测试true/false.

可以这样做吗?如果是这样,怎么样?

小智 10

我也想测试我的真/假逻辑.很遗憾IsValid方法受到保护.我的工作是创建另一个IsValid方法并让受保护的IsValid调用它.

public class MyValidator: PropertyValidator 
{
    public MyValidator(
        string errorMessage = "default Message") : base(errorMessage)
    {
    }

    protected override bool IsValid(PropertyValidatorContext context)
    {
        var stringToValidate = context.PropertyValue as String;
        return IsValid(stringToValidate);
    }

    public bool IsValid(string stringToValidate)
    {
        if (stringToValidate == null)
        {
            return false;
        }

        //testing logic here
        return true;
    }
}
Run Code Online (Sandbox Code Playgroud)


小智 8

我知道这已经有一段时间了,但我实现了如下:

自定义验证器:

public class MyValidator : PropertyValidator
{
    public MyValidator ()
        : base("Value must be null or between 0 and 3.")
    {
    }

    protected override bool IsValid(PropertyValidatorContext context)
    {
        if (context.PropertyValue == null)
        {
            return true;
        }

        var value = (decimal)context.PropertyValue;
        return value >= 0m && value <= 3m;
    }
}
Run Code Online (Sandbox Code Playgroud)

测试验证器:

public class TestValidator : InlineValidator<TestObject>
{
    public TestValidator (params Action<TestValidator >[] actions)
    {
        foreach (var action in actions)
        {
            action(this);
        }
    }
}
Run Code Online (Sandbox Code Playgroud)

测试对象:

public class TestObject
{
    public TestObject(decimal? val)
    {
        this.GenericDecimal = val;
    }

    public decimal? GenericDecimal { get; set; }
}
Run Code Online (Sandbox Code Playgroud)

测试:

[Test]
public void TestIt()
{
    var validator = new TestValidator(v => v.RuleFor(obj => obj.GenericDecimal).SetValidator( new MyValidator() ));

    Assert.IsTrue(validator.Validate(new TestObject(null)).IsValid);    
    Assert.IsTrue(validator.Validate(new TestObject(0m)).IsValid);   
    Assert.IsTrue(validator.Validate(new TestObject(3m)).IsValid);   
    Assert.IsFalse(validator.Validate(new TestObject(-1m)).IsValid);   
    Assert.IsFalse(validator.Validate(new TestObject(3.01m)).IsValid);   
}
Run Code Online (Sandbox Code Playgroud)


Cee*_*ees 8

对于FluentValidation的6.2版本,可以构建PropertyValidator.Validate()参数,因为ValidatorSelectors可以全局配置:https://github.com/JeremySkinner/FluentValidation/commit/95376c0519da1a06388be91a97fb5062fd4a162e

在下面的例子中,您将看到我如何验证"puic"属性 Track

单元测试:

    public void ExistsInCollectionValidatorTest()
    {
        var track = new Track()
        {
            puic = "p1"
        };

        var sut = new ExistsInCollectionValidator<Track>();

        // Build PropertyValidator.Validate() parameter
        var selector = ValidatorOptions.ValidatorSelectors.DefaultValidatorSelectorFactory();
        var context = new ValidationContext(track, new PropertyChain(), selector);
        var propertyValidatorContext = new PropertyValidatorContext(context, PropertyRule.Create<Track,string>(t => t.puic), "puic");

        var results = sut.Validate(propertyValidatorContext);
        // Assertion..
    }
Run Code Online (Sandbox Code Playgroud)