Unit testing MVC.net Redirection - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T14:31:44Z http://stackoverflow.com/feeds/question/58513 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/58513/unit-testing-mvc-net-redirection 3 Unit testing MVC.net Redirection Dan 2008-09-12T08:38:29Z 2009-01-24T17:57:31Z <p>How do I Unit Test a MVC redirection?</p> <blockquote> <pre><code> public ActionResult Create(Product product) { _productTask.Save(product); return RedirectToAction("Success"); } public ActionResult Success() { return View(); } </code></pre> </blockquote> <p>Is <a href="http://www.ayende.com/Blog/archive/2007/12/13/Dont-like-visibility-levels-change-that.aspx" rel="nofollow">Ayende's</a> approach still the best way to go, with preview 5:</p> <pre><code> public static void RenderView(this Controller self, string action) { typeof(Controller).GetMethod("RenderView").Invoke(self,new object[] { action} ); } </code></pre> <p>Seems odd to have to do this, especially as the MVC team have said they are writing the framework to be testable.</p> http://stackoverflow.com/questions/58513/unit-testing-mvc-net-redirection/58542#58542 0 Answer by harriyott for Unit testing MVC.net Redirection harriyott 2008-09-12T09:15:59Z 2008-09-12T09:15:59Z <p>Funnily enough, I was reading about this last night at <a href="http://www.asp.net/learn/mvc/tutorial-07-cs.aspx" rel="nofollow">http://www.asp.net/learn/mvc/tutorial-07-cs.aspx</a></p> http://stackoverflow.com/questions/58513/unit-testing-mvc-net-redirection/58789#58789 0 Answer by Colin Jack for Unit testing MVC.net Redirection Colin Jack 2008-09-12T12:09:53Z 2008-09-12T12:09:53Z <p>You can assert on the ActionResult that is returned, you'll need to cast it to the appropriate type but it does allow you to use state-based testing. A search on the Web should find some useful links, here's <a href="http://sebastienlachance.com/2008/05/06/testing-controllers-in-aspnet-mvc-aka-actionresult/" rel="nofollow">just one</a> though.</p> http://stackoverflow.com/questions/58513/unit-testing-mvc-net-redirection/58818#58818 6 Answer by Matt Hinze for Unit testing MVC.net Redirection Matt Hinze 2008-09-12T12:29:02Z 2008-09-12T12:29:02Z <pre><code>[TestFixture] public class RedirectTester { [Test] public void Should_redirect_to_success_action() { var controller = new RedirectController(); var result = controller.Index() as RedirectToRouteResult; Assert.That(result, Is.Not.Null); Assert.That(result.Values["action"], Is.EqualTo("success")); } } public class RedirectController : Controller { public ActionResult Index() { return RedirectToAction("success"); } } </code></pre>