So, I'm working with an MVC app that my team is testing using SpecFlow. I use an implementation of [RequiredIf(prop, val)] that is described here.
However, I found a 'slight' issue - while the validations work just fine on the webpage, they break in our unit tests! Upon investigation, I found that the IsValid() method of the attribute is getting directly called in our unit tests...likely because the Attribute is not being bound to the Validator.
On that blog, I followed the setup steps to register the RequiredIf attribute with the validator. However, for the purposes of certain Unit Tests, I need to find out where to bind the validation in the testing setup.
I've tried a few more-or-less logical options:
[Binding]
public class TestSteps
{
// Every test has to call this helper to load up the controller...
private void GoToHome()
{
// SNIP: Unimportant
DataAnnotationsViewModelValidatorProvider.RegisterAdapter(..., ...);
}
}
...As well as in the Test Suite file...
// See attribute for why I figured this may be a logical choice.
[BeforeScenario]
public void Setup()
{
DataAnnotationsViewModelValidatorProvider.RegisterAdapter(..., ...);
}
...Yet, for some reason, neither location causes RequiredIf() to bind to its RequiredIfValidator().
Question: For unit testing, where do I put the Attribute -> Validator binding such that my Unit Tests will correctly validate properties that are decorated if RequiredIf()?
