c# – 如何在单元测试中将Thread.CurrentPrincipal重置为unauthenticated

前端之家收集整理的这篇文章主要介绍了c# – 如何在单元测试中将Thread.CurrentPrincipal重置为unauthenticated前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有可以从多种客户端类型调用的库代码,例如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应用程序?

解决方法

你需要做的就是:
Thread.CurrentPrincipal = new GenericPrincipal(new GenericIdentity(""),new string[0]);
原文链接:https://www.f2er.com/csharp/243278.html

猜你在找的C#相关文章