如何对使用FederatedAuthentication.SessionAuthenticationModule的代码进行单元测试

时间:2013-09-11 15:02:42

标签: c# .net unit-testing asp.net-mvc-4 claims-based-identity

如何测试此代码(ASP.NET MVC 4,.NET 4.5 Web应用程序中的登录方法):

public ActionResult Login(LoginModel model, string returnUrl)
{
            if (ModelState.IsValid && _userCredentialsService.ValidateUser(model.UserName, model.Password))
            {
                SessionAuthentication.SetAuthCookie(model.UserName, _userCredentialsService.GetUserGroups(model.UserName), model.RememberMe);

                return RedirectToLocal(returnUrl);
            }
}

使用此SetAuthCookie方法:

public static void SetAuthCookie(IEnumerable<Claim> claims, bool isPersistent)
{
            if (!HttpContext.Current.Request.IsSecureConnection && FormsAuthentication.RequireSSL)
            {
                throw new HttpException(500, "Connection is not secured with SSL");
            }

            var sessionToken = CreateSessionSecurityToken(CreatePrincipal(claims.ToList()), isPersistent);
            FederatedAuthentication.SessionAuthenticationModule.WriteSessionTokenToCookie(sessionToken);
}

访问SessionAuthenticationModule时,我得到一个空引用异常(异常是在尝试获取HttpContext时提到的属性内部抛出的)。这是堆栈跟踪:

   at System.IdentityModel.Services.FederatedAuthentication.GetHttpContextModule[T]()
   at System.IdentityModel.Services.FederatedAuthentication.GetHttpModule[T]()
   at System.IdentityModel.Services.FederatedAuthentication.get_SessionAuthenticationModule()

我已经在位于测试程序集中的app.config中制作了我的web.config的精确副本,代码可以在应用程序的正常运行时中运行。

我已经使用了HttpSimulator和MvcContrib测试助手,因此HttpContext得到了设置,但仍然抛出了异常。有没有人有如何测试的解决方案或解决方法?

1 个答案:

答案 0 :(得分:2)

您可以随时使用Typemock Isolator / Telerik JustMock - 它们可以为静态方法和期货(代码中创建的类)启用模拟。 在Isolator的情况下一个简单的 Isolate.WhenCalled(() => FederatedAuthentication.SessionAuthenticationModule) .WillReturn(<a fake value>);

应该做的伎俩