I was wondering how you could mock that a controller is decorated with the [Authorize] attribute in MVC3? I am using a custom membership provider. I would like to test that a controller been decorated with the attribute and you are authorized and what happens when you are not. I'm using Moq. Any good suggestions on this?!

UPDATE: I'm currently getting an NullreferenceException saying "object reference not set to an instance of an object". It's the same error as previously mentioned in this post NullReferenceException while using Authorize Attribute

This is related to the Authorize attribute. I'm running under iis and not using cassini. Does anyone know if this is somehow related to applicaton pool and user rights. The tests that I have for the authorize attribute wont work until this is fixed.

Maybe there is some other way of testing the Authorize attribute? Big thanks in advance.

UPDATE2 So after some extensive research and debugging help from a colleague I mentioned to fix the problem with the [Authorize] attribute. It appears as though this line in the web.config was missing:

<modules runAllManagedModulesForAllRequests="true">

Strangely enough this did not cause problem for another colleague that was sharing the trunk or in beta environment. It only caused problems for me locally. This might have been related to something in the GAC. Anyhow all works now.

Thanks.

link|improve this question

56% accept rate
What do you execute in your test? A controller action? How do you execute it? Do you call it directly from your test suite as a normal method or is it called through the MVC infrastructure? – Tz_ Aug 23 '11 at 21:54
Good question. i have been on and off about this, not really sure how to go about. Yes a controller action. I'm through the MVC infrastructure is the "best" way to go about it. Or what do you think?! – Tim Aug 24 '11 at 4:46
feedback

1 Answer

up vote 1 down vote accepted

I wrote a blog post about exactly that a couple of months ago:

http://thomasardal.com/2011/06/28/unit-testing-attribute-decorations/

link|improve this answer
That looks basically what I'm looking for. Although where hoping not to use another framework(Shoudly). Maybe I could use that extension method anyway. Thanks – Tim Aug 24 '11 at 8:05
You don't need to use Shouldly in order to use the extension method. The two are not linked in any way. All I'm writing is, that the method is inspired by Shoudly. You can copy the code to your own source code and use the method right away. – ThomasArdal Aug 24 '11 at 8:17
Right about that:). Will try it out and return with feedback. Thanks. – Tim Aug 24 '11 at 8:26
+1. It is a good pragmatic idea to just check the attribute declaration itself and rely on the framework that it will do what it is supposed to do with it. I was thinking about testing the behavior somehow (faking a whole HttpContext, ControllerContext and who-knows-what-else necessary), but it would be way too complicated without much additional benefit. I was also partly mislead by the question, as it mentioned mocking the attribute (meaning there is no attribute but you want to fake it for some purpose). – Tz_ Aug 24 '11 at 8:45
Yes the question might have been a bit misleading as Im not really sure how you should test this. As I thought that I trust the framework to take care of the redirects. I just wanted to test that a controller, or action is decorated with the Authorize attribute. – Tim Aug 24 '11 at 9:21
show 16 more comments
feedback

Your Answer

 
or
required, but never shown

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