How do unit testing for IgnoreRoute in ASP.NET MVC - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T11:22:27Zhttp://stackoverflow.com/feeds/question/805028http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/805028/how-do-unit-testing-for-ignoreroute-in-asp-net-mvc1How do unit testing for IgnoreRoute in ASP.NET MVCSpencer2009-04-30T01:32:43Z2009-04-30T03:23:01Z
<p>In ASP.NET MVC, I can get information on unit testing for routes and custom routes, but I can not figure out how to do unit testing for IgnoreRoute.</p>
<p>routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); </p>
<p>Practical code is much appreciated.</p>
<p><a href="http://weblogs.asp.net/scottgu/archive/2007/12/03/asp-net-mvc-framework-part-2-url-routing.aspx" rel="nofollow">ASP.NET MVC Framework (Part 2): URL Routing</a> </p>
<p><a href="http://stephenwalther.com/blog/archive/2008/07/02/asp-net-mvc-tip-13-unit-test-your-custom-routes.aspx" rel="nofollow">ASP.NET MVC Tip #13 – Unit Test Your Custom Routes</a></p>
<p><a href="http://stephenwalther.com/blog/archive/2008/08/07/asp-net-mvc-tip-30-create-custom-route-constraints.aspx" rel="nofollow">ASP.NET MVC Tip #30 – Create Custom Route Constraints</a></p>
http://stackoverflow.com/questions/805028/how-do-unit-testing-for-ignoreroute-in-asp-net-mvc/805235#8052351Answer by tvanfosson for How do unit testing for IgnoreRoute in ASP.NET MVCtvanfosson2009-04-30T03:23:01Z2009-04-30T03:23:01Z<p>I would check that the RouteHandler on the RouteData for a route matching the ignored path is of type StopRoutingHandler;</p>
<pre><code> [TestMethod]
public void TestIgnoredRoute()
{
// Arrange
var routes = new RouteCollection();
GlobalApplication.RegisterRoutes(routes);
// Act
var context = new FakeHttpContext("~/some.axd/path");
var routeData = routes.GetRouteData(context);
// Assert
Assert.IsInstanceOfType( routeData.RouteHandler, typeof(StopRoutingHandler) );
}
</code></pre>