Nissan

135
Reputation
48 views

Registered User

Name Nissan
Member for 8 months
Seen Oct 27 at 22:46
Website
Location London, England
Age 30
Senior Dev at GigJunkie. Lover of technology, elegant code, and the more-than-occassional pizza :)
Oct
23
awarded  Teacher
Jun
10
comment How to mock the Request on Controller in ASP.Net MVC ?
It does! Thanks for the help!
Jun
9
comment How to mock the Request on Controller in ASP.Net MVC ?
should be context.SetupGet(x => x.Request).Returns(request.Object); your code above is missing the 's' on Return still Also results in Exception System.ArgumentException: System.ArgumentException : Invalid setup on a non-overridable member: x => x.Headers["X-Requested-With"] at Moq.Mock.ThrowIfCantOverride(Expression setup, MethodInfo methodInfo) error message
Jun
9
awarded  Supporter
Jun
9
revised How to mock the Request on Controller in ASP.Net MVC ?
Added results of trying the answers given so far to refine the question
Jun
9
awarded  Commentator
Jun
9
awarded  Autobiographer
Jun
9
comment How to mock the Request on Controller in ASP.Net MVC ?
Still generates: Exception System.ArgumentException: System.ArgumentException : Invalid setup on a non-overridable member: x => x.IsAjaxRequest() at Moq.Mock.ThrowIfCantOverride(Expression setup, MethodInfo methodInfo)
Jun
9
revised How to mock the Request on Controller in ASP.Net MVC ?
added 407 characters in body
Jun
9
comment How to mock the Request on Controller in ASP.Net MVC ?
I tried: var mocks = new MockRepository(); var mockedhttpContext = mocks.DynamicMock<HttpContextBase>(); var mockedHttpRequest = mocks.DynamicMock<HttpRequestBase>(); SetupResult.For(mockedhttpContext.Request).Return(mockedHttpRequest); var controller = new HomeController(Repository, LoginInfoProvider); controller.ControllerContext = new mockedhttpContext, new RouteData(), controller); var result = controller.Index() as ViewResult; However still get the same exception thrown.
Jun
9
revised How to mock the Request on Controller in ASP.Net MVC ?
added 2 characters in body
Jun
9
comment How to mock the Request on Controller in ASP.Net MVC ?
I get the message "The Type argument for method 'ISetupGetter<T, TProperty>Moq.Mock<T>.SetupGet<Tpropert>.... cannot be infered from uage. Try specifying the type arguments explicitly. What type do I set 'var request=' to though to get this to work?
Jun
9
comment How to mock the Request on Controller in ASP.Net MVC ?
and what would mockedHttpContext need to be mocked? tje RequestContext object it requires needs an HttpContextBase() object in the constructor, and HttpContextBase() has no constructor that accepts zero parameters.
Jun
9
asked How to mock the Request on Controller in ASP.Net MVC ?
Jun
9
comment How do I test an ASP.Net MVC View?
Testing out your code, it should be ViewResult result = controller.About() as ViewResult; no 's', but it is looking good so far. Will award this answer as correct if it works when I finish
Jun
9
awarded  Editor
Jun
9
revised How do I test an ASP.Net MVC View?
added 7 characters in body
Jun
9
comment How do I test an ASP.Net MVC View?
I meant I typed "controller." and Index would not appear as one of the methods I could instantiate.
Jun
9
asked How do I test an ASP.Net MVC View?
Jun
1
accepted How to not use ASP.Net Membership Security Question and Answer for custom password recovery?
Jun
1
comment How to not use ASP.Net Membership Security Question and Answer for custom password recovery?
This step was part of the solution I published, but was not the solution itself. Changing the web.config still would have left me without the method to change a password by passing it and the username alone to a Membership method. The solution I published gave this solution. Thank you for the contribution though.