Best way to unit test ASP.NET MVC action methods that use BindingHelperExtensions.UpdateFrom? - Stack Overflow most recent 30 from stackoverflow.com2009-11-25T17:09:50Zhttp://stackoverflow.com/feeds/question/28723http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/28723/best-way-to-unit-test-asp-net-mvc-action-methods-that-use-bindinghelperextensions1Best way to unit test ASP.NET MVC action methods that use BindingHelperExtensions.UpdateFrom?Joseph Kingry2008-08-26T17:53:56Z2008-08-29T21:09:42Z
<p>In handling a form post I have something like</p>
<pre><code> public ActionResult Insert()
{
Order order = new Order();
BindingHelperExtensions.UpdateFrom(order, this.Request.Form);
this.orderService.Save(order);
return this.RedirectToAction("Details", new { id = order.ID });
}
</code></pre>
<p>I am not using explicit parameters in the method as I anticipate having to adapt to variable number of fields etc. and a method with 20+ parameters is not appealing.</p>
<p>I suppose my only option here is mock up the whole HttpRequest, equivalent to what Rob Conery has done. Is this a best practice? Hard to tell with a framework which is so new.</p>
<p>I've also seen solutions involving using an ActionFilter so that you can transform the above method signature to something like</p>
<p>[SomeFilter]
public Insert(Contact contact)</p>
http://stackoverflow.com/questions/28723/best-way-to-unit-test-asp-net-mvc-action-methods-that-use-bindinghelperextensions/28799#287990Answer by Matt Hinze for Best way to unit test ASP.NET MVC action methods that use BindingHelperExtensions.UpdateFrom?Matt Hinze2008-08-26T18:28:10Z2008-08-26T18:28:10Z<p>Wrap it in an interface and mock it.</p>
http://stackoverflow.com/questions/28723/best-way-to-unit-test-asp-net-mvc-action-methods-that-use-bindinghelperextensions/29087#290870Answer by liammclennan for Best way to unit test ASP.NET MVC action methods that use BindingHelperExtensions.UpdateFrom?liammclennan2008-08-26T22:21:41Z2008-08-26T22:21:41Z<p>Use NameValueDeserializer from <a href="http://www.codeplex.com/MVCContrib" rel="nofollow">http://www.codeplex.com/MVCContrib</a> instead of UpdateFrom.</p>
http://stackoverflow.com/questions/28723/best-way-to-unit-test-asp-net-mvc-action-methods-that-use-bindinghelperextensions/35299#352991Answer by Joseph Kingry for Best way to unit test ASP.NET MVC action methods that use BindingHelperExtensions.UpdateFrom?Joseph Kingry2008-08-29T21:09:42Z2008-08-29T21:09:42Z<p>I'm now using <a href="http://beta.stackoverflow.com/questions/34709/how-do-you-use-the-new-modelbinder-classes-in-aspnet-mvc-preview-5#34725" rel="nofollow">ModelBinder</a> so that my action method can look (basically) like:</p>
<pre><code> public ActionResult Insert(Contact contact)
{
if (this.ViewData.ModelState.IsValid)
{
this.contactService.SaveContact(contact);
return this.RedirectToAction("Details", new { id = contact.ID });
}
else
{
return this.RedirectToAction("Create");
}
}
</code></pre>