Hi i'm doing some unit test on my ASP.Net MVC2 project. I'm using Moq framework. In my LogOnController,
[HttpPost]
public ActionResult LogOn(LogOnModel model, string returnUrl = "")
{
FormsAuthenticationService FormsService = new FormsAuthenticationService();
FormsService.SignIn(model.UserName, model.RememberMe);
}
In FormAuthenticationService class,
public class FormsAuthenticationService : IFormsAuthenticationService
{
public virtual void SignIn(string userName, bool createPersistentCookie)
{
if (String.IsNullOrEmpty(userName)) throw new ArgumentException("Value cannot be null or empty.", "userName");
FormsAuthentication.SetAuthCookie(userName, createPersistentCookie);
}
public void SignOut()
{
FormsAuthentication.SignOut();
}
}
My problem is how can i avoid executing
FormsService.SignIn(model.UserName, model.RememberMe);
this line. Or is there any way to Moq
FormsService.SignIn(model.UserName, model.RememberMe);
using Moq framework without changing my ASP.Net MVC2 project.
LogOnControllerorFormsAuthenticationService? If it's the former, a fake should be supplied for theFormsAuthenticationServiceand you should verify that theSignInmethod is called on it. The latter is harder to unit test as it requires a currentHttpContextto which to add a cookie (to theHttpResponse). – Russ Cam Jul 9 '12 at 13:37