User Nissan - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T20:04:44Zhttp://stackoverflow.com/feeds/user/85231http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/970198/how-to-mock-the-request-on-controller-in-asp-net-mvc6How to mock the Request on Controller in ASP.Net MVC ?Nissan2009-06-09T13:51:01Z2009-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<HttpContextBase>();
var mockedHttpRequest = mocks.DynamicMock<HttpRequestBase>();
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<HttpRequestBase>();
// Not working - IsAjaxRequest() is static extension method and cannot be mocked
// request.Setup(x => x.IsAjaxRequest()).Returns(true /* or false */);
// use this
request.SetupGet(x => x.Headers["X-Requested-With"]).Returns("XMLHttpRequest");
var context = new Mock<HttpContextBase>();
context.SetupGet(x => 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-view4How do I test an ASP.Net MVC View?Nissan2009-06-09T12:51:23Z2009-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-passwor0How to not use ASP.Net Membership Security Question and Answer for custom password recovery?Nissan2009-05-28T11:12:56Z2009-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&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#9204172Answer by Nissan for How to not use ASP.Net Membership Security Question and Answer for custom password recovery?Nissan2009-05-28T11:36:37Z2009-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-show0jquery script executing but not setting css for .showNissan2009-04-20T18:28:26Z2009-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><span></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><span id="login-<%=Model.EntityId%>" style="margin: 0 5px 0 5px;display:none;">
Why not <a href="#">login</a> and rate this?
</span>
</code></pre>
<p>and appropriate an initialise() method which sets</p>
<pre><code>var isAuthenticated = <%=Request.IsAuthenticated.ToString().ToLower() %>;
function initialise()
{
if (isAuthenticated)
{//hide login spans, unhide other spans}
else
{
//alert('user not logged in')
$('rate-<%=Model.EntityId%>').hide();
$('login-<%=((GigItModel)Model).EntityId%>').show();
//alert($('login-<%=((GigItModel)Model).EntityId%>'));
}
}
$().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><span></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#7020810Answer by Nissan for "The resource cannot be found." error when there is a "dot" at the end of the urlNissan2009-03-31T17:12:26Z2009-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#970272Comment by Nissan on How to mock the Request on Controller in ASP.Net MVC ?Nissan2009-06-10T10:49:13Z2009-06-10T10:49:13ZIt does! Thanks for the help!http://stackoverflow.com/questions/970198/how-to-mock-the-request-on-controller-in-asp-net-mvc/970272#970272Comment by Nissan on How to mock the Request on Controller in ASP.Net MVC ?Nissan2009-06-09T18:29:53Z2009-06-09T18:29:53Zshould 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 messagehttp://stackoverflow.com/questions/970198/how-to-mock-the-request-on-controller-in-asp-net-mvc/970272#970272Comment by Nissan on How to mock the Request on Controller in ASP.Net MVC ?Nissan2009-06-09T14:51:38Z2009-06-09T14:51:38ZStill generates:
Exception
System.ArgumentException: System.ArgumentException : Invalid setup on a non-overridable member:
x => 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#970225Comment by Nissan on How to mock the Request on Controller in ASP.Net MVC ?Nissan2009-06-09T14:45:03Z2009-06-09T14:45:03ZI 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.http://stackoverflow.com/questions/970198/how-to-mock-the-request-on-controller-in-asp-net-mvc/970272#970272Comment by Nissan on How to mock the Request on Controller in ASP.Net MVC ?Nissan2009-06-09T14:14:47Z2009-06-09T14:14:47ZI 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?http://stackoverflow.com/questions/970198/how-to-mock-the-request-on-controller-in-asp-net-mvc/970225#970225Comment by Nissan on How to mock the Request on Controller in ASP.Net MVC ?Nissan2009-06-09T14:00:59Z2009-06-09T14:00:59Zand 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#969934Comment by Nissan on How do I test an ASP.Net MVC View?Nissan2009-06-09T13:12:44Z2009-06-09T13:12:44ZTesting 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-viewComment by Nissan on How do I test an ASP.Net MVC View?Nissan2009-06-09T13:01:26Z2009-06-09T13:01:26ZI meant I typed "controller." 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#921159Comment by Nissan on How to not use ASP.Net Membership Security Question and Answer for custom password recovery?Nissan2009-06-01T13:02:58Z2009-06-01T13:02:58ZThis 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#920367Comment by Nissan on How to not use ASP.Net Membership Security Question and Answer for custom password recovery?Nissan2009-05-28T11:39:50Z2009-05-28T11:39:50ZThis 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#769557Comment by Nissan on jquery script executing but not setting css for .showNissan2009-04-20T21:46:27Z2009-04-20T21:46:27ZO snap, was it that simple?? I really need to brush up my jquery basics. Thank you so much!