测试 属性 的自定义验证依赖于其他 属性 returns ArgumentNullException
Testing custom validation of property depenent on other property returns ArgumentNullException
我正在尝试编写 XUnit 测试来测试我的自定义验证器。验证器检查 other 属性 的值,该值指示已验证的 属性 是否应为空或具有值。但是,当我使用 TryValidateProperty 方法时,测试 returns ArgumentNullException。
验证者:
public class ConcatenatedDataValidator : ValidationAttribute
{
public string PropertyName { get; private set; }
public ConcatenatedDataValidator(string propertyName)
{
this.PropertyName = propertyName;
}
protected override ValidationResult IsValid(object value, ValidationContext validationContext)
{
var property = validationContext.ObjectType.GetProperty(PropertyName);
if(property == null && value != null)
{
return new ValidationResult(string.Format("{0} is null", PropertyName));
}
var chosenValue = property.GetValue(validationContext.ObjectInstance, null);
if(chosenValue.Equals("00") && (value == null || value.Equals(string.Empty))
|| chosenValue.Equals("01") && value != null)
{
return new ValidationResult(this.FormatErrorMessage(validationContext.DisplayName));
}
return null;
}
}
测试:
public class ConcatenatedDataValidatorTests
{
private TestedModel model;
private ValidationContext context;
private List<ValidationResult> results;
[Fact]
public void IsValid_OtherValueIs00ThisValueIsNull_ReturnFalse()
{
// arrange
var concatenatedDataValidator = new ConcatenatedDataValidator("OtherProperty");
model = new TestedModel();
model.OtherProperty = "00";
model.ThisProperty = null;
context = new ValidationContext(model);
results = new List<ValidationResult>();
// act
var result = Validator.TryValidateProperty(model.ThisProperty, context, results);
// assert
Assert.False(result);
}
}
测试returns
System.ArgumentNullException : Value cannot be null. Parameter name: propertyName
在表演部分。我只想测试这个 属性,因为在模型中我有很多其他具有 Required 属性的属性,我希望让测试尽可能简单并且只测试我的自定义验证器。有什么办法可以解决这个问题吗?
这是预期的行为。由于 Validator.TryValidateProperty
指定如果 value
是 null
,则抛出 System.ArgumentNullException
。
如果您想测试此行为/属性值为 null
的情况,那么您应该捕获异常并检查它 - 虽然这基本上是在测试 .NET 框架。
这也表明您可以删除 IsValid
方法中的 value == null
检查,因为它永远不会触发。
更新
整个错误是指在 TryValidateProperty
内部调用的私有方法 EnsureValidPropertyType
(参见 here)。
这是由于ValidationContext.MemberName
造成的。
要解决此问题,您必须在创建 ValidationContext 期间设置 MemberName
(如果 .NET 4.7.2 及更早版本)
ValidationContext context = new ValidationContext(model)
{
MemberName = "ThisProperty"
};
或更改应用配置 (.NET 4.8) 中的默认行为。
<configuration>
<appSettings>
<add key="aspnet:GetValidationMemberName" value="true" />
</appSettings>
</configuration>
我正在尝试编写 XUnit 测试来测试我的自定义验证器。验证器检查 other 属性 的值,该值指示已验证的 属性 是否应为空或具有值。但是,当我使用 TryValidateProperty 方法时,测试 returns ArgumentNullException。
验证者:
public class ConcatenatedDataValidator : ValidationAttribute
{
public string PropertyName { get; private set; }
public ConcatenatedDataValidator(string propertyName)
{
this.PropertyName = propertyName;
}
protected override ValidationResult IsValid(object value, ValidationContext validationContext)
{
var property = validationContext.ObjectType.GetProperty(PropertyName);
if(property == null && value != null)
{
return new ValidationResult(string.Format("{0} is null", PropertyName));
}
var chosenValue = property.GetValue(validationContext.ObjectInstance, null);
if(chosenValue.Equals("00") && (value == null || value.Equals(string.Empty))
|| chosenValue.Equals("01") && value != null)
{
return new ValidationResult(this.FormatErrorMessage(validationContext.DisplayName));
}
return null;
}
}
测试:
public class ConcatenatedDataValidatorTests
{
private TestedModel model;
private ValidationContext context;
private List<ValidationResult> results;
[Fact]
public void IsValid_OtherValueIs00ThisValueIsNull_ReturnFalse()
{
// arrange
var concatenatedDataValidator = new ConcatenatedDataValidator("OtherProperty");
model = new TestedModel();
model.OtherProperty = "00";
model.ThisProperty = null;
context = new ValidationContext(model);
results = new List<ValidationResult>();
// act
var result = Validator.TryValidateProperty(model.ThisProperty, context, results);
// assert
Assert.False(result);
}
}
测试returns
System.ArgumentNullException : Value cannot be null. Parameter name: propertyName
在表演部分。我只想测试这个 属性,因为在模型中我有很多其他具有 Required 属性的属性,我希望让测试尽可能简单并且只测试我的自定义验证器。有什么办法可以解决这个问题吗?
这是预期的行为。由于 Validator.TryValidateProperty
指定如果 value
是 null
,则抛出 System.ArgumentNullException
。
如果您想测试此行为/属性值为 null
的情况,那么您应该捕获异常并检查它 - 虽然这基本上是在测试 .NET 框架。
这也表明您可以删除 IsValid
方法中的 value == null
检查,因为它永远不会触发。
更新
整个错误是指在 TryValidateProperty
内部调用的私有方法 EnsureValidPropertyType
(参见 here)。
这是由于ValidationContext.MemberName
造成的。
要解决此问题,您必须在创建 ValidationContext 期间设置 MemberName
(如果 .NET 4.7.2 及更早版本)
ValidationContext context = new ValidationContext(model)
{
MemberName = "ThisProperty"
};
或更改应用配置 (.NET 4.8) 中的默认行为。
<configuration>
<appSettings>
<add key="aspnet:GetValidationMemberName" value="true" />
</appSettings>
</configuration>