我有可以从多种客户端类型调用的库代码,例如WinForms,Console,ASP.NET等......并且需要确定当前主体。在这样做时,我正在执行Thread.CurrentPrincipal和Environment.UserName的两步检查,如下所示:
var currentUser = !System.Threading.Thread.CurrentPrincipal.Identity.IsAuthenticated ? null : System.Threading.Thread.CurrentPrincipal.Identity.Name;
if (string.IsNullOrWhiteSpace(currentUser))
{
currentUser = Environment.UserName;
}
在控制台应用程序中,Thread.CurrentPrincipal.Identity.IsAuthenticated在MSTest中始终为false howerver,它始终具有有效的经过身份验证的用户。
是否有将单元测试中Thread.CurrentPrincipal的值重置为unauthenticated以模仿Console应用程序?
答案 0 :(得分:12)
您需要做的就是:
Thread.CurrentPrincipal = new GenericPrincipal(new GenericIdentity(""), new string[0]);
答案 1 :(得分:0)
我宁愿创建一个用适当的接口实现所有CurrentPrincipal
管理的类,并在需要的地方注入该接口。
然后你可以在单元测试中模拟它,使它们变得更简单。