Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a list of local URL’s and I need to determine if they are “valid MVC paths”. How can I check if a URL (path) maps to a MVC controller?

Phil Haack's Route Debugger will find a route that match the current request and does so using the current HttpContext. I would like to get this info without building up a mock HttpContext - if possible.

share|improve this question
Type the path into the browser and check for 404? – Pierreten Feb 3 '11 at 3:17
Do you want to check whether they're valid paths or valid MVC paths? – SLaks Feb 3 '11 at 3:23
@SLaks valid MVC paths – mawtex Feb 3 '11 at 3:25

1 Answer

up vote 11 down vote accepted

You can call RouteTable.Routes.GetRouteData with a mocked HttpContextBase.

The routes are matched internally using the request's AppRelativeCurrentExecutionFilePath.
However, this functionality is not exposed, so you need to pass an HttpContextBase.

You need to create an HttpContextBase class which returns an HttpRequestBase instance in its request property.
The HttpRequestBase class needs to return your path, beginning with ~/, in its AppRelativeCurrentExecutionFilePath property.

You don't need to implement any other properties, unless they're used by IRouteConstraints.

To check whether you got an MVC route, check whether the resulting routeData.Handler is MvcRouteHandler.

share|improve this answer
Do what parts would I need to mock? – mawtex Feb 3 '11 at 3:26
@mawtex: Create an HttpContextBase class which returns your URL in its Request.AppRelativeCurrentExecutionFilePath. – SLaks Feb 3 '11 at 3:29
I found your mention of the required AppRelativeCurrentExecutionFilePath very valuable as I am writing tests for this now. Wish I could vote up more than once :) – CRice Apr 15 '11 at 4:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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