How do unit testing for IgnoreRoute in ASP.NET MVC - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T11:22:27Z http://stackoverflow.com/feeds/question/805028 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/805028/how-do-unit-testing-for-ignoreroute-in-asp-net-mvc 1 How do unit testing for IgnoreRoute in ASP.NET MVC Spencer 2009-04-30T01:32:43Z 2009-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#805235 1 Answer by tvanfosson for How do unit testing for IgnoreRoute in ASP.NET MVC tvanfosson 2009-04-30T03:23:01Z 2009-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>