-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TestHelper.ShouldHaveValidationErrorFor.WithoutErrorCode broken in 11.0 #1937
Comments
I am also experiencing this issue. It applies on I started my application and when I called the endpoint with validation it listed all expected validation errors. |
Hi @Aleksei-Pankratev-EPAM are you able to help with this as it's related to the introduction of |
@JeremySkinner yes, I will have a look. |
Brilliant, thanks! |
#1938 should fix this but I would ask to hold on with merging it as I want to check more edge cases. |
I'm seeing a very similar behavior happening to the extensions validator.TestValidate(dto).ShouldHaveValidationErrorFor(x => x.Status).WithErrorMessage("A"); This throws a message from another property ( |
@akamud I cannot reproduce your case. This is passing:
Can you prepare a failing test for I could double check if #1938 fixes it? |
I'm sorry, I should have been more specific. This is a failing test for this scenario: public class Person
{
public string? Forename { get; set; }
public int? Surname { get; set; }
}
public class Tests
{
[Test]
public void Test1()
{
var validator = new InlineValidator<Person>
{
v => v.RuleFor(x => x.Forename).NotEmpty(), v => v.RuleFor(x => x.Surname).NotEmpty()
};
validator.TestValidate(new Person())
.ShouldHaveValidationErrorFor(x => x.Surname)
.WithErrorMessage("bar");
}
} You can see the test failing with the
Update: Downgrading to 10.4 fixes this issue. |
Thank you @akamud! Now this is fixed too. |
I've pushed out 11.0.1 to nuget with the fix. Thanks @Aleksei-Pankratev-EPAM for your work on this |
FluentValidation version
11.0
ASP.NET version
No response
Summary
When adding multiple validation rules the TestHelper's
ShouldHaveValidationErrorFor.WithoutErrorCode
throws for each and any specified error code (see MWE below). The issue was introduced by d4773d2, but I'm not yet(?) powerful enough to suggest a fix.Steps to Reproduce
The text was updated successfully, but these errors were encountered: