测试覆盖IsValid

时间:2016-01-13 11:44:12

标签: c# asp.net-mvc unit-testing moq validationattribute

我在测试自定义验证属性时遇到了一些麻烦。由于方法签名为protected,当我在单元测试中调用IsValid方法时,我无法传入Mock<ValidationContext>对象,它会调用基础{ {1}}而不是。

ValidationAttribute

virtual bool IsValid(object value)

测试

protected override ValidationResult IsValid(object value, ValidationContext validationContext)
{
    var otherPropertyInfo = validationContext.ObjectType.GetProperty(this.otherPropertyName);
    var otherPropertyValue = otherPropertyInfo.GetValue(validationContext.ObjectInstance, null);

    if (value != null)
    {
        if (otherPropertyValue == null)
        {
            return new ValidationResult(FormatErrorMessage(this.ErrorMessage));
        }
    }

    return ValidationResult.Success;
}

如果我无法传递模拟的验证上下文,那么我该如何正确测试这个类?

1 个答案:

答案 0 :(得分:5)

您可以使用Validator类手动执行验证,而无需模拟任何内容。有一篇简短的文章here。我可能会做类似

的事情
[Test]
public void Should_BeValid_WhenPropertyIsNullAndOtherPropertyIsNull()
{
    var target = new ValidationTarget();
    var context = new ValidationContext(target);
    var results = new List<ValidationResult>();

    var isValid = Validator.TryValidateObject(target, context, results);

    Assert.That(isValid, Is.True);
}

private class ValidationTarget
{
    public string X { get; set; }

    [OptionalIf(nameof(X))]
    public string OptionalIfX { get; set; }
}

您可以选择在results上进行断言。