User Nissan - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T20:04:44Z http://stackoverflow.com/feeds/user/85231 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/970198/how-to-mock-the-request-on-controller-in-asp-net-mvc 6 How to mock the Request on Controller in ASP.Net MVC ? Nissan 2009-06-09T13:51:01Z 2009-10-18T10:21:00Z <p>I have a controller in C# using the ASP.Net MVC framework</p> <pre><code>public class HomeController:Controller{ public ActionResult Index() { if (Request.IsAjaxRequest()) { //do some ajaxy stuff } return View("Index"); } } </code></pre> <p>I got some tips on mocking and was hoping to test the code with the following and RhinoMocks</p> <pre><code>var mocks = new MockRepository(); var mockedhttpContext = mocks.DynamicMock&lt;HttpContextBase&gt;(); var mockedHttpRequest = mocks.DynamicMock&lt;HttpRequestBase&gt;(); SetupResult.For(mockedhttpContext.Request).Return(mockedHttpRequest); var controller = new HomeController(); controller.ControllerContext = new ControllerContext(mockedhttpContext, new RouteData(), controller); var result = controller.Index() as ViewResult; Assert.AreEqual("About", result.ViewName); </code></pre> <p>However I keep getting this error:</p> <blockquote> <p>Exception System.ArgumentNullException: System.ArgumentNullException : Value cannot be null. Parameter name: request at System.Web.Mvc.AjaxRequestExtensions.IsAjaxRequest(HttpRequestBase request)</p> </blockquote> <p>Since the <code>Request</code> object on the controller has no setter. I tried to get this test working properly by using recommended code from an answer below.</p> <p>This used Moq instead of RhinoMocks, and in using Moq I use the following for the same test:</p> <pre><code>var request = new Mock&lt;HttpRequestBase&gt;(); // Not working - IsAjaxRequest() is static extension method and cannot be mocked // request.Setup(x =&gt; x.IsAjaxRequest()).Returns(true /* or false */); // use this request.SetupGet(x =&gt; x.Headers["X-Requested-With"]).Returns("XMLHttpRequest"); var context = new Mock&lt;HttpContextBase&gt;(); context.SetupGet(x =&gt; x.Request).Returns(request.Object); var controller = new HomeController(Repository, LoginInfoProvider); controller.ControllerContext = new ControllerContext(context.Object, new RouteData(), controller); var result = controller.Index() as ViewResult; Assert.AreEqual("About", result.ViewName); </code></pre> <p>but get the following error:</p> <blockquote> <p>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)</p> </blockquote> <p>Again, it seems like I cannot set the request header. How do I set this value, in RhinoMocks or Moq?</p> http://stackoverflow.com/questions/969889/how-do-i-test-an-asp-net-mvc-view 4 How do I test an ASP.Net MVC View? Nissan 2009-06-09T12:51:23Z 2009-06-09T18:47:52Z <p>I want to write a unit test to ensure that the view I am returning is the correct one.</p> <p>My plan is to write a test that first invokes the controller and then calls the ActionResult method I plan to test I thought I could write something like</p> <pre><code>Controller controller = new HomeController(); var actionresult = controller.Index(); Assert.False(actionresult.ToString(), String.Empty); </code></pre> <p>which would then allow me to parse the actionresult for the test value. However I cannot directly instantiate the <code>public ActionResult Index()</code> method.</p> <p>How do I do this?</p> http://stackoverflow.com/questions/920334/how-to-not-use-asp-net-membership-security-question-and-answer-for-custom-passwor 0 How to not use ASP.Net Membership Security Question and Answer for custom password recovery? Nissan 2009-05-28T11:12:56Z 2009-05-28T14:32:54Z <p>Hi, I don't want to have the security question and answer feature that ASP.Net Membership Provider gives, but I DO want to enable a lost/forgotten password page.</p> <p>This page would be where a user would enter his/her email address and an email would be sent to that address if the user was registered for them to reset their password via a link sent to that registered email address </p> <p>I've created the custom table to track such requests, the random key assigned to the request as well as an expiry date on the request. However in writing the code to actually reset the password, I realised that there doesn't seem to be a method that does something like ResetPassword(email, newPassword) without needing to use the Security Q&amp;A bit (which I don't have).</p> <p>Is there any way to simply reset a user's password via a built in Membership function?</p> <p>If not, how would I need to get this done? </p> <p>Thanks in advance for any help given. -Nissan</p> http://stackoverflow.com/questions/920334/how-to-not-use-asp-net-membership-security-question-and-answer-for-custom-passwor/920417#920417 2 Answer by Nissan for How to not use ASP.Net Membership Security Question and Answer for custom password recovery? Nissan 2009-05-28T11:36:37Z 2009-05-28T11:36:37Z <p>What I ended up doing was the following</p> <pre><code>public string ResetPassword(string email) { var m_userName = Membership.GetUserNameByEmail(email); var m_user = Membership.GetUser(m_userName); return m_user.ResetPassword(); } </code></pre> <p>then I added a new method to use this value to change the password</p> <pre><code>public bool ChangeLostPassword(string email, string newPassword) { var resetPassword = ResetPassword(email); var currentUser = Membership.GetUser(Membership.GetUserNameByEmail(email), true); return currentUser.ChangePassword(resetPassword, newPassword); } </code></pre> http://stackoverflow.com/questions/769521/jquery-script-executing-but-not-setting-css-for-show 0 jquery script executing but not setting css for .show Nissan 2009-04-20T18:28:26Z 2009-04-20T18:42:34Z <p>Hi, I have jquery code that is being reused by a repeatable partial view on an asp.net mvc page but the script is not executing as I expect it should.</p> <p>The scenario is not that complex, I have a page with multiple reviews for an item, and users who are logged in are allowed to 'vote up' or 'vote down' a review via a thumbs up/thumbs down button (similar to digg).</p> <p>I have each scenario's text rendered inside a <code>&lt;span&gt;</code> where the id='spanname-'+reviewId so each review's rating is uniquely identifiable (since they are repeatable since multiple reviews exist on the page, each with the same functionality) so e.g. if I want to ask the user to log in if they are not currently, I have the following html </p> <pre><code>&lt;span id="login-&lt;%=Model.EntityId%&gt;" style="margin: 0 5px 0 5px;display:none;"&gt; Why not &lt;a href="#"&gt;login&lt;/a&gt; and rate this? &lt;/span&gt; </code></pre> <p>and appropriate an initialise() method which sets</p> <pre><code>var isAuthenticated = &lt;%=Request.IsAuthenticated.ToString().ToLower() %&gt;; function initialise() { if (isAuthenticated) {//hide login spans, unhide other spans} else { //alert('user not logged in') $('rate-&lt;%=Model.EntityId%&gt;').hide(); $('login-&lt;%=((GigItModel)Model).EntityId%&gt;').show(); //alert($('login-&lt;%=((GigItModel)Model).EntityId%&gt;')); } } $().ready(function() { initialise(); }); </code></pre> <p>I've put alert buttons to test that it detects a logged in user vs a non-logged in user and also that it is referencing objects but for some reason the page is not rendering the CSS attributes and is showing NONE of the <code>&lt;span&gt;</code>'s (or all if i remove the display:none in the <code>style</code> attributes) </p> <p>Can anyone offer insight as to why the jquery is not executing as expected? Thanks in advance.</p> http://stackoverflow.com/questions/429963/the-resource-cannot-be-found-error-when-there-is-a-dot-at-the-end-of-the-url/702081#702081 0 Answer by Nissan for "The resource cannot be found." error when there is a "dot" at the end of the url Nissan 2009-03-31T17:12:26Z 2009-03-31T17:12:26Z <p>I went into IIS and put the 404 error page to route to my custom Error Controller, with the plan of using the ReferrerURL parameter to get the URL that generated the error, sanitise the URL by removing the period (.) and then re-route it appropriately to the proper controller.</p> <p>This does not work though, since when the 404 is generated, the header information has a null ReferrerURL, in fact, I went through all the Request parameters and there is nothing that can indicate what URL generated the 404 error, only that the error was generated.</p> <p>Anyone had better luck on this?</p> http://stackoverflow.com/questions/970198/how-to-mock-the-request-on-controller-in-asp-net-mvc/970272#970272 Comment by Nissan on How to mock the Request on Controller in ASP.Net MVC ? Nissan 2009-06-10T10:49:13Z 2009-06-10T10:49:13Z It does! Thanks for the help! http://stackoverflow.com/questions/970198/how-to-mock-the-request-on-controller-in-asp-net-mvc/970272#970272 Comment by Nissan on How to mock the Request on Controller in ASP.Net MVC ? Nissan 2009-06-09T18:29:53Z 2009-06-09T18:29:53Z should be context.SetupGet(x =&gt; 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 =&gt; x.Headers[&quot;X-Requested-With&quot;] at Moq.Mock.ThrowIfCantOverride(Expression setup, MethodInfo methodInfo) error message http://stackoverflow.com/questions/970198/how-to-mock-the-request-on-controller-in-asp-net-mvc/970272#970272 Comment by Nissan on How to mock the Request on Controller in ASP.Net MVC ? Nissan 2009-06-09T14:51:38Z 2009-06-09T14:51:38Z Still generates: Exception System.ArgumentException: System.ArgumentException : Invalid setup on a non-overridable member: x =&gt; x.IsAjaxRequest() at Moq.Mock.ThrowIfCantOverride(Expression setup, MethodInfo methodInfo) http://stackoverflow.com/questions/970198/how-to-mock-the-request-on-controller-in-asp-net-mvc/970225#970225 Comment by Nissan on How to mock the Request on Controller in ASP.Net MVC ? Nissan 2009-06-09T14:45:03Z 2009-06-09T14:45:03Z I tried: var mocks = new MockRepository(); var mockedhttpContext = mocks.DynamicMock&lt;HttpContextBase&gt;(); var mockedHttpRequest = mocks.DynamicMock&lt;HttpRequestBase&gt;(); 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. http://stackoverflow.com/questions/970198/how-to-mock-the-request-on-controller-in-asp-net-mvc/970272#970272 Comment by Nissan on How to mock the Request on Controller in ASP.Net MVC ? Nissan 2009-06-09T14:14:47Z 2009-06-09T14:14:47Z I get the message &quot;The Type argument for method 'ISetupGetter&lt;T, TProperty&gt;Moq.Mock&lt;T&gt;.SetupGet&lt;Tpropert&gt;.... 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? http://stackoverflow.com/questions/970198/how-to-mock-the-request-on-controller-in-asp-net-mvc/970225#970225 Comment by Nissan on How to mock the Request on Controller in ASP.Net MVC ? Nissan 2009-06-09T14:00:59Z 2009-06-09T14:00:59Z 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. http://stackoverflow.com/questions/969889/how-do-i-test-an-asp-net-mvc-view/969934#969934 Comment by Nissan on How do I test an ASP.Net MVC View? Nissan 2009-06-09T13:12:44Z 2009-06-09T13:12:44Z 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 http://stackoverflow.com/questions/969889/how-do-i-test-an-asp-net-mvc-view Comment by Nissan on How do I test an ASP.Net MVC View? Nissan 2009-06-09T13:01:26Z 2009-06-09T13:01:26Z I meant I typed &quot;controller.&quot; and Index would not appear as one of the methods I could instantiate. http://stackoverflow.com/questions/920334/how-to-not-use-asp-net-membership-security-question-and-answer-for-custom-passwor/921159#921159 Comment by Nissan on How to not use ASP.Net Membership Security Question and Answer for custom password recovery? Nissan 2009-06-01T13:02:58Z 2009-06-01T13:02:58Z 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. http://stackoverflow.com/questions/920334/how-to-not-use-asp-net-membership-security-question-and-answer-for-custom-passwor/920367#920367 Comment by Nissan on How to not use ASP.Net Membership Security Question and Answer for custom password recovery? Nissan 2009-05-28T11:39:50Z 2009-05-28T11:39:50Z This won't work, the method you're referencing doesn't accept a new password as the parameter, what it accepts is the new secret answer, and then generates and returns an autogenerated new password. What I wanted was to be able to enter my new password without having to use secret question/answer or needing to remember the old one (see use case scenario above) http://stackoverflow.com/questions/769521/jquery-script-executing-but-not-setting-css-for-show/769557#769557 Comment by Nissan on jquery script executing but not setting css for .show Nissan 2009-04-20T21:46:27Z 2009-04-20T21:46:27Z O snap, was it that simple?? I really need to brush up my jquery basics. Thank you so much!