vote up 3 vote down star
1

I’m not sure how to mock an ASP.NET Membership for my controller test.

Controller Code:

MembershipUser username = Membership.GetUser();
string UserID = username.UserName.ToString();

Does anyone know how to mock this for a controller test? I'm using RhinoMocks.

flag

73% accept rate

3 Answers

vote up 2 vote down

I would watch the MVS StoreFront Serieshttp://www.asp.net/learn/mvc-videos/

For one on Mocking -

http://www.asp.net/learn/mvc-videos/video-365.aspx

And the Membership one http://www.asp.net/learn/mvc-videos/video-372.aspx

One for Membership and the view of refactor with OpenID

http://www.asp.net/learn/mvc-videos/video-425.aspx

link|flag
vote up 0 vote down

i am also facing the same issue?

if someone has any solutions please share..

link|flag
vote up 0 vote down

I've started working on something like this. Rather than doing a true mock, I created a FakeMembershipProvider that just implements the minimum of MembershipProvider that I need and provides a way to set the users and such. I'm doing the same for RoleProvider. Then I've set the App.config for my test project so it uses these as the providers.

So far, it seems to be working well.

link|flag

Your Answer

Get an OpenID
or

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