up vote 5 down vote favorite
2
share [g+] share [fb]

How do I Unit Test a MVC redirection?

    public ActionResult Create(Product product)
    {

        _productTask.Save(product);

        return RedirectToAction("Success");

    }

    public ActionResult Success()
    {

        return View();
    }

Is Ayende's approach still the best way to go, with preview 5:

 public static void RenderView(this Controller self, string action) 
 {
    typeof(Controller).GetMethod("RenderView").Invoke(self,new object[] { action} ); 
 }

Seems odd to have to do this, especially as the MVC team have said they are writing the framework to be testable.

link|improve this question

59% accept rate
feedback

4 Answers

up vote 10 down vote accepted
[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");
	}
}
link|improve this answer
2  
RedirectToRouteResult.Values[] is now RedirectToRouteResult.RouteValues[...] – mxmissile Jul 7 '09 at 19:46
does anyone know how you can actually have the action invoked when redirected during testing ? – f0ster Jan 6 '10 at 21:02
@f0ster Why would you want that? Either way, controller.Success() in the above example would accomplish this. – bzlm Mar 9 '10 at 15:56
feedback

Funnily enough, I was reading about this last night at http://www.asp.net/learn/mvc/tutorial-07-cs.aspx

link|improve this answer
feedback

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 just one though.

link|improve this answer
feedback

you can use Mvc.Contrib.TestHelper which provides assertions for testing redirections. Take a look at http://kbochevski.blogspot.com/2010/06/unit-testing-mvcnet.html and the code sample. It might be helpful.

link|improve this answer
Per the FAQ "Be careful, because the community frowns on overt self-promotion and tends to vote it down and flag it as spam. Post good, relevant answers, and if they happen to be about your product or website, so be it. However, you must disclose your affiliation in your answers. Also, if a huge percentage of your posts include a mention of your product or website, you're probably here for the wrong reasons." – Will Apr 14 '11 at 18:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.