Unit testing MVC.net Redirection - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T14:31:44Zhttp://stackoverflow.com/feeds/question/58513http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/58513/unit-testing-mvc-net-redirection3Unit testing MVC.net RedirectionDan2008-09-12T08:38:29Z2009-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#585420Answer by harriyott for Unit testing MVC.net Redirectionharriyott2008-09-12T09:15:59Z2008-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#587890Answer by Colin Jack for Unit testing MVC.net RedirectionColin Jack2008-09-12T12:09:53Z2008-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#588186Answer by Matt Hinze for Unit testing MVC.net RedirectionMatt Hinze2008-09-12T12:29:02Z2008-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>