Unit-tests and validation logic - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T23:43:57Z http://stackoverflow.com/feeds/question/424517 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/424517/unit-tests-and-validation-logic 5 Unit-tests and validation logic JacobE 2009-01-08T14:54:52Z 2009-01-08T17:02:45Z <p>I am currently writing some unit tests for a business-logic class that includes validation routines. For example:</p> <pre><code>public User CreateUser(string username, string password, UserDetails details) { ValidateUserDetails(details); ValidateUsername(username); ValidatePassword(password); // create and return user } </code></pre> <p>Should my test fixture contain tests for every possible validation error that can occur in the Validate* methods, or is it better to leave that for a separate set of tests? Or perhaps the validation logic should be refactored out somehow?</p> <p>My reasoning is that if I decide to test for all the validation errors that can occur within CreateUser, the test fixture will become quite bloated. And most of the validation methods are used from more than one place...</p> <p>Any great patterns or suggestions in this case?</p> http://stackoverflow.com/questions/424517/unit-tests-and-validation-logic/424533#424533 9 Answer by Mendelt for Unit-tests and validation logic Mendelt 2009-01-08T14:58:46Z 2009-01-08T16:11:33Z <p>Every test should only fail for one reason and only one test should fail for that reason.</p> <p>This helps a lot with writing a maintainable set of unit tests.</p> <p>I'd write a couple of tests each for ValidateUserDetails, ValidateUsername and ValidateUserPassword. Then you only need to test that CreateUser calls those functions.</p> <p><hr /></p> <p>Re read your question; Seems I misunderstood things a bit.</p> <p>You might be interested in what J.P Boodhoo has written on his style of behaviour driven design. <a href="http://blog.jpboodhoo.com/HowIrsquomCurrentlyWritingMyBDDStyleTestsNdashPart2.aspx" rel="nofollow">http://blog.jpboodhoo.com/HowIrsquomCurrentlyWritingMyBDDStyleTestsNdashPart2.aspx</a></p> <p>BDD is becoming a very overloaded term, everyone has a different definition and different tools to do it. As far as I see what JP Boodhoo is doing is splitting up test fixtures according to concern and not class.</p> <p>For example you could create separate fixtures for testing Validation of user details, Validation of username, Validation of password and creating users. The idea of BDD is that by naming the testfixtures and tests the right way you can create something that almost reads like documentation by printing out the testfixture names and test names. Another advantage of grouping your tests by concern and not by class is that you'll probably only need one setup and teardown routine for each fixture.</p> <p>I havn't had much experience with this myself though. </p> <p>If you're interested in reading more, JP Boodhoo has posted a lot about this on his blog (see above link) or you can also listen to the dot net rocks episode with Scott Bellware where he talks about a similar way of grouping and naming tests <a href="http://www.dotnetrocks.com/default.aspx?showNum=406" rel="nofollow">http://www.dotnetrocks.com/default.aspx?showNum=406</a></p> <p>I hope this is more what you're looking for.</p> http://stackoverflow.com/questions/424517/unit-tests-and-validation-logic/424555#424555 2 Answer by David B for Unit-tests and validation logic David B 2009-01-08T15:06:52Z 2009-01-08T15:06:52Z <ul> <li>Let Unit Tests (plural) against the Validate methods confirm their correct functioning.</li> <li>Let Unit Tests (plural) against the CreateUser method confirm its correct functioning.</li> </ul> <p>If CreateUser is merely required to call the validate methods, but is not required to make validation decisions itself, then the tests against CreateUser should confirm that requirement.</p> http://stackoverflow.com/questions/424517/unit-tests-and-validation-logic/424657#424657 1 Answer by Konstantin for Unit-tests and validation logic Konstantin 2009-01-08T15:28:35Z 2009-01-08T15:28:35Z <p>You definitely need to test <em>validation</em> methods.</p> <p>There is no need to test other methods for all possible combinations of arguments just to make sure validation is performed.</p> <p>You seem to be mixing Validation and Design by Contract.</p> <p><strong>Validation</strong> is usually performed to friendly notify user that his input is incorrect. It is very related to business logic (password is not strong enough, email has incorrect format, etc.).</p> <p><strong>Design by Contract</strong> makes sure your code can execute without throwing exceptions later on (even without them you would get the exception, but much later and probably more obscure one).</p> <p>Regarding application layer that should contain validation logic, probably the best is <a href="http://martinfowler.com/eaaCatalog/serviceLayer.html" rel="nofollow">service layer (by Fowler)</a> which defines application boundaries and is a good place to sanitize application input. And there should not be any validation logic inside this boundaries, only Design By Contract to detect errors earlier.</p> <p>So finally, write validation logic tests when you want to friendly notify user that he has mistaken. Otherwise use Design By Contract and keep throwing exceptions.</p> http://stackoverflow.com/questions/424517/unit-tests-and-validation-logic/424783#424783 0 Answer by erikkallen for Unit-tests and validation logic erikkallen 2009-01-08T15:54:16Z 2009-01-08T15:54:16Z <p>I would add a bunch of test for each ValidateXXX method. Then in CreateUser create 3 test cases for checking what happens when each of ValidateUserDetails, ValidateUsername and ValidatePassword fails but the other succeed.</p> http://stackoverflow.com/questions/424517/unit-tests-and-validation-logic/424820#424820 0 Answer by Rinat Abdullin for Unit-tests and validation logic Rinat Abdullin 2009-01-08T16:00:58Z 2009-01-08T16:06:00Z <p>I'm using <a href="http://rabdullin.com/shared-libraries/" rel="nofollow">Lokad Shared Library</a> for defining business validation rules. Here's how I test corner cases (sample from the open-source):</p> <pre><code>[Test] public void Test() { ShouldPass("rinat.abdullin@lokad.com", "pwd", "http://ws.lokad.com/TimeSerieS2.asmx"); ShouldPass("some@nowhere.net", "pwd", "http://127.0.0.1/TimeSerieS2.asmx"); ShouldPass("rinat.abdullin@lokad.com", "pwd", "http://sandbox-ws.lokad.com/TimeSerieS2.asmx"); ShouldFail("invalid", "pwd", "http://ws.lokad.com/TimeSerieS.asmx"); ShouldFail("rinat.abdullin@lokad.com", "pwd", "http://identity-theift.com/TimeSerieS2.asmx"); } static void ShouldFail(string username, string pwd, string url) { try { ShouldPass(username, pwd, url); Assert.Fail("Expected {0}", typeof (RuleException).Name); } catch (RuleException) { } } static void ShouldPass(string username, string pwd, string url) { var connection = new ServiceConnection(username, pwd, new Uri(url)); Enforce.That(connection, ApiRules.ValidConnection); } </code></pre> <p>Where ValidConnection rule is defined as:</p> <pre><code>public static void ValidConnection(ServiceConnection connection, IScope scope) { scope.Validate(connection.Username, "UserName", StringIs.Limited(6, 256), StringIs.ValidEmail); scope.Validate(connection.Password, "Password", StringIs.Limited(1, 256)); scope.Validate(connection.Endpoint, "Endpoint", Endpoint); } static void Endpoint(Uri obj, IScope scope) { var local = obj.LocalPath.ToLowerInvariant(); if (local == "/timeseries.asmx") { scope.Error("Please, use TimeSeries2.asmx"); } else if (local != "/timeseries2.asmx") { scope.Error("Unsupported local address '{0}'", local); } if (!obj.IsLoopback) { var host = obj.Host.ToLowerInvariant(); if ((host != "ws.lokad.com") &amp;&amp; (host != "sandbox-ws.lokad.com")) scope.Error("Unknown host '{0}'", host); } </code></pre> <p>If some failing case is discovered (i.e.: new valid connection url is added), then the rule and the test gets updated. </p> <p>More on this pattern could be found in <a href="http://rabdullin.com/journal/2008/11/23/net-application-block-for-validation-and-business-rules.html" rel="nofollow">this article</a>. Everything is Open Source so feel free to reuse or ask questions.</p> <p>PS: note that <strong>primitive rules</strong> used in this sample composite rule (i.e. StringIs.ValidEmail or StringIs.Limited) are thoroughly tested on their own and thus <strong>do not need excessive unit tests</strong>.</p> http://stackoverflow.com/questions/424517/unit-tests-and-validation-logic/425048#425048 2 Answer by MrWiggles for Unit-tests and validation logic MrWiggles 2009-01-08T17:02:45Z 2009-01-08T17:02:45Z <p>What is the responsibility of your business logic class and does it do something apart from the validation? I think I'd be tempted to move the validation routines into a class of its own (UserValidator) or multiple classes (UserDetailsValidator + UserCredentialsValidator) depending on your context and then provide mocks for the tests. So your class now would look something like:</p> <pre><code>public User CreateUser(string username, string password, UserDetails details) { if (Validator.isValid(details, username, password)) { // what happens when not valid } // create and return user } </code></pre> <p>You can then provide seperate unit tests <em>purely</em> for the validation and your tests for the business logic class can focus on when validation passes and when validation fails, as well as all your other tests.</p>