vote up 3 vote down star
2

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.

flag

51% accept rate

3 Answers

vote up 6 vote down check
[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|flag
RedirectToRouteResult.Values[] is now RedirectToRouteResult.RouteValues[...] – mxmissile Jul 7 at 19:46
vote up 0 vote down

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

link|flag
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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