Where is the best place in an app to do validation? Rules of thumb? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T19:06:48Zhttp://stackoverflow.com/feeds/question/328939http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/328939/where-is-the-best-place-in-an-app-to-do-validation-rules-of-thumb2Where is the best place in an app to do validation? Rules of thumb?jle2008-11-30T15:15:27Z2008-12-01T04:49:07Z
<p>I am making a C# app for a class project. I want to ensure a string has one of three values. Normally, in a web app, I would do validation with javascript on the client side. However, this is currently a console app. I know that I should do the validation early, but what are some good rules of thumb for validation?</p>
http://stackoverflow.com/questions/328939/where-is-the-best-place-in-an-app-to-do-validation-rules-of-thumb/328943#3289430Answer by Pat for Where is the best place in an app to do validation? Rules of thumb?Pat2008-11-30T15:18:17Z2008-11-30T15:18:17Z<p>Depending on how the application progresses you can validate either before you leave that page/step (if its like a wizard where you step through multiple pages/steps), or you can have it validate immediately once the user leaves that textbox/value. Another option is validation while it is modified.</p>
http://stackoverflow.com/questions/328939/where-is-the-best-place-in-an-app-to-do-validation-rules-of-thumb/328953#3289532Answer by Mehrdad Afshari for Where is the best place in an app to do validation? Rules of thumb?Mehrdad Afshari2008-11-30T15:27:48Z2008-11-30T15:27:48Z<p>As a rule of thumb, as you said you should validate as early as possible, but in client-server applications, it's important to validate data as soon as possible on the server to prevent security problems that might arise.</p>
http://stackoverflow.com/questions/328939/where-is-the-best-place-in-an-app-to-do-validation-rules-of-thumb/328957#3289578Answer by Jeffrey L Whitledge for Where is the best place in an app to do validation? Rules of thumb?Jeffrey L Whitledge2008-11-30T15:31:20Z2008-11-30T15:31:20Z<p>Each module should do its own validation and never trust what the calling code gives it. This typically means that validation should happen at each layer of your application. You especially do not want to trust any validation to occurs on the client side, because that can lead to security holes. Code that runs on the client has been known to change from time to time.</p>
http://stackoverflow.com/questions/328939/where-is-the-best-place-in-an-app-to-do-validation-rules-of-thumb/328968#3289681Answer by Jeff for Where is the best place in an app to do validation? Rules of thumb?Jeff2008-11-30T15:46:16Z2008-11-30T15:46:16Z<p>I like validating after the user clicks Ok or Next - before they leave the screen they are on. Validating during modification rarely works - the user has to be able to backspace, insert in a string as they enter it, and a copy/paste into a string field has it's own issues. If the string is colored red until it's valid, that might help, but you still have to prevent proceeding until it's corrected. Similarly for leaving the textbox, it can be jarring to have message boxes show up while doing data entry. Wait until the user says everthing is done, and do all the validation at once.</p>
http://stackoverflow.com/questions/328939/where-is-the-best-place-in-an-app-to-do-validation-rules-of-thumb/329037#3290372Answer by Theo for Where is the best place in an app to do validation? Rules of thumb?Theo2008-11-30T16:33:01Z2008-11-30T16:33:01Z<p>I think you should validate three times. </p>
<ol>
<li>in the client, 2 on the server and 3. in the database with a check constraint.</li>
</ol>
<p>In a console application you can validate immediately because you know in what order the user will enter the data. </p>
http://stackoverflow.com/questions/328939/where-is-the-best-place-in-an-app-to-do-validation-rules-of-thumb/329107#3291073Answer by qui for Where is the best place in an app to do validation? Rules of thumb?qui2008-11-30T17:47:03Z2008-11-30T17:47:03Z<p>If you're doing MVC, chances are you're working from the ground up using TDD.</p>
<p>I'm not sure if this is the best way, but the way I do things is..</p>
<ul>
<li>Make my business objects.</li>
<li>Define some kind of validation framework, so business objects can return a list of errors on it's current state and test those using unit testing.</li>
<li>If you're using linq to sql, implement the partial method OnValidate() and make it so it calls your mybusinessobject.geterrors(). OnValidate is called when you do db.submitchanges() so you can stop invalid data getting saved</li>
<li>Now, in your controllers, when someone makes a new business object, or edits one, make the object with whatever data you get from the user - then call your geterrors() method and do whatever</li>
<li>Then client side validation if you can be arsed</li>
</ul>
<p>That is a framework which scott guthrie described here: <a href="http://weblogs.asp.net/scottgu/archive/2008/09/02/asp-net-mvc-preview-5-and-form-posting-scenarios.aspx" rel="nofollow">http://weblogs.asp.net/scottgu/archive/2008/09/02/asp-net-mvc-preview-5-and-form-posting-scenarios.aspx</a></p>
<p>I like it and it means you can define your business rules once and re-use them on different layers, which means its less likely you'll miss them out at a particular area when you are updating things</p>
http://stackoverflow.com/questions/328939/where-is-the-best-place-in-an-app-to-do-validation-rules-of-thumb/329356#3293560Answer by Timothy Khouri for Where is the best place in an app to do validation? Rules of thumb?Timothy Khouri2008-11-30T20:57:30Z2008-11-30T20:57:30Z<p>There are a lot of great answers here about general best practices... but your question specified "MVC", and there is only one right answer for that.</p>
<p>EDIT: Your "question" didn't say MVC, but your tags did.</p>
<p>MVC = Model View Controller</p>
<p>All business logic goes in the Controller. That's <strong>the</strong> answer.</p>
<p>The other answers in this post are great tips, such as "don't trust client validation"... and "validate everywhere".</p>
http://stackoverflow.com/questions/328939/where-is-the-best-place-in-an-app-to-do-validation-rules-of-thumb/329455#3294550Answer by Robert Rossney for Where is the best place in an app to do validation? Rules of thumb?Robert Rossney2008-11-30T21:57:54Z2008-11-30T21:57:54Z<p>One other tip: validation everywhere is a lot easier to do if you can define your validation rules in metainformation that all of your validation logic can interpret. Then you only need to define the rules in one place, and you don't have to worry about your client-side validation, server-side validation, and test cases getting out of sync with each other.</p>
http://stackoverflow.com/questions/328939/where-is-the-best-place-in-an-app-to-do-validation-rules-of-thumb/330066#3300660Answer by orcmid for Where is the best place in an app to do validation? Rules of thumb?orcmid2008-12-01T04:49:07Z2008-12-01T04:49:07Z<p>I liked <a href="http://stackoverflow.com/questions/328939/where-is-the-best-place-in-an-app-to-do-validation-rules-of-thumb#329356">Timothy's picking up on MVC</a>. </p>
<p>Since we are given very little about the nature of the application, I want to point out some very general rules of thumb along with the good advice already provided.</p>
<p>Validate in a way that</p>
<ol>
<li><p>No irreversible action is performed with invalid input</p></li>
<li><p>The user does not lose work</p></li>
<li><p>The user's activity is never put in a state where an erroneous input cannot be easily identified and simply retracted</p></li>
<li><p>The application will not fail or crash</p></li>
<li><p>No (shared) persistent material is ever left (or seen) in a bad state as a result of application handling of invalid data</p></li>
<li><p>An user is not frustrated in accomplishing their useful work as a result of how and when validation is done</p></li>
</ol>
<p>That should pretty much cover it.</p>