Best way to unit test ASP.NET MVC action methods that use BindingHelperExtensions.UpdateFrom? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-25T17:09:50Z http://stackoverflow.com/feeds/question/28723 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/28723/best-way-to-unit-test-asp-net-mvc-action-methods-that-use-bindinghelperextensions 1 Best way to unit test ASP.NET MVC action methods that use BindingHelperExtensions.UpdateFrom? Joseph Kingry 2008-08-26T17:53:56Z 2008-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#28799 0 Answer by Matt Hinze for Best way to unit test ASP.NET MVC action methods that use BindingHelperExtensions.UpdateFrom? Matt Hinze 2008-08-26T18:28:10Z 2008-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#29087 0 Answer by liammclennan for Best way to unit test ASP.NET MVC action methods that use BindingHelperExtensions.UpdateFrom? liammclennan 2008-08-26T22:21:41Z 2008-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#35299 1 Answer by Joseph Kingry for Best way to unit test ASP.NET MVC action methods that use BindingHelperExtensions.UpdateFrom? Joseph Kingry 2008-08-29T21:09:42Z 2008-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>