vote up 6 vote down star
4

Has anyone written a tool to do static analysis of an ASP.NET MVC application?

Disclaimer: I'm not sure what I want really is static analysis - it just was the closest term I could come up with.

What I'd like is to get a tabulated list of all my controllers, my actions, show whether they respond to GET or POST, what their cache settings are etc.

I'm sure you could keep going and goin with this - and go on to more advanced issues like whether or not every action is actually accessible by a route.

If nobody has done this - is it something that people think would be useful ? What else ought it to do?

flag

30% accept rate
Technically speaking that is static analysis, but most people think of other things when they hear that word. – Grauenwolf Jun 4 at 2:42

2 Answers

vote up 1 vote down

In order to test routes you can use MvcContrib. It contains many various cool features and route debugging handler is one of them. And at the moment this is all what I saw. It will be rather hard to create a good tool to show all information that you described because architecture of asp.net mvc is very flexible and architecture of projects can be very different. But if you use NHibernate in your projects you should have a look at NHibernate Profiler.

link|flag
vote up -1 vote down

Please look at FxCop for Visual Studio. They do fairly good static analysis and tell you problems at hand. Its integrated in the Visual Studio team system edition in the properties tab.

Please have a look at this, its got a good list. http://stackoverflow.com/questions/38635/what-static-analysis-tools-are-available-for-c

link|flag

Your Answer

Get an OpenID
or

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