When Testing your MVC-based UI, how much of the test setup do you make common? - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T09:35:19Zhttp://stackoverflow.com/feeds/question/59859http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/59859/when-testing-your-mvc-based-ui-how-much-of-the-test-setup-do-you-make-common0When Testing your MVC-based UI, how much of the test setup do you make common?casademora2008-09-12T20:19:19Z2008-09-30T21:51:35Z
<p>I'm trying to test a simple WebForms (asp.net) based UI, and follow the MVP pattern to allow my UI to be more testable. </p>
<p>As I follow the TDD methodology for backend algorithms, I find that there are some unit test refactorings that happen in the spirit of the DRY principle (Don't Repeat Yourself). As I try to apply this to the UI using Rhino Mocks to verify my interactions, I see many commonalities in the Controller tests when setting up the view or model expectations.</p>
<p>My question is: how far do you typically take this refactoring, if at all? I'm curious to see how other TDDer's test their MVC/MVP based UIs.</p>
http://stackoverflow.com/questions/59859/when-testing-your-mvc-based-ui-how-much-of-the-test-setup-do-you-make-common/59918#599180Answer by Carlton Jenke for When Testing your MVC-based UI, how much of the test setup do you make common?Carlton Jenke2008-09-12T20:49:52Z2008-09-12T20:49:52Z<p>I use MVP, and on my tests I try to apply most of the refactoring I would in standard code. It normally doesn't work quite as well on the tests, due to the slight variations needed to test different scenarios, but within parts there can be commonality, and when possible I do consolidate. This does ease the needed changes later as the project evolves; just like in your standard code it is easier to change one place instead of 20.</p>
http://stackoverflow.com/questions/59859/when-testing-your-mvc-based-ui-how-much-of-the-test-setup-do-you-make-common/78499#784991Answer by aaronjensen for When Testing your MVC-based UI, how much of the test setup do you make common?aaronjensen2008-09-17T00:00:20Z2008-09-17T00:00:20Z<p>I would not refactor tests like standard code. Tests start to become more obscure as you refactor things into common base classes, helper methods, etc. Tests should be sufficiently clear on their own. </p>
<p>DRY is not a test concern.</p>
<p>That said, there are many plumbing things that are commonly done, and those should be abstracted away. </p>
http://stackoverflow.com/questions/59859/when-testing-your-mvc-based-ui-how-much-of-the-test-setup-do-you-make-common/155236#1552360Answer by Lorenzo Boccaccia for When Testing your MVC-based UI, how much of the test setup do you make common?Lorenzo Boccaccia2008-09-30T21:46:53Z2008-09-30T21:46:53Z<p>I'd prefer to treat unit test as pure functional programs, to avoid to have to test them. If an operation is enough common in between tests, then I would evaluate it for the standard codebase, but even then I'd avoid refactoring tests, because I tend to have lots of them, specially for gui driven BL.</p>
http://stackoverflow.com/questions/59859/when-testing-your-mvc-based-ui-how-much-of-the-test-setup-do-you-make-common/155258#1552580Answer by DanielHonig for When Testing your MVC-based UI, how much of the test setup do you make common?DanielHonig2008-09-30T21:51:35Z2008-09-30T21:51:35Z<p>I use selenium for functional testing
and I'm using JUnit to test my controllers.</p>
<p>I'll mock out services or resources used by the controller and test to see what URI the controller is redirecting to, etc...</p>
<p>The only thing I'm not really testing at this point are the views. But I have employed functional testing to compensate.</p>