HttpContextBase는 ControllerContext에서 상속되고 HttpContext는 기본 클래스 라이브러리에서 상속되므로 Init 메서드에서 HttpContext.Current를 모의하면 상속 충돌이 발생합니다.
HttpContext를 사용하는 대안
다행히도 HttpContext를 직접 모의할 수 있으며 이는 IPrincipal(사용자) 및 IIdentity를 작동하기에 충분합니다.
<code class="language-csharp">HttpContext.Current = new HttpContext( new HttpRequest("", "http://tempuri.org", ""), new HttpResponse(new StringWriter()) ); // 用户已登录 HttpContext.Current.User = new GenericPrincipal( new GenericIdentity("username"), new string[0] ); // 用户已注销 HttpContext.Current.User = new GenericPrincipal( new GenericIdentity(String.Empty), new string[0] );</code>
이 코드는 컨트롤러와 Init 메서드에서 호출된 모든 라이브러리에서 HttpContext가 모의되도록 합니다.
위 내용은 테스트 초기화 메서드에서 HttpContext.Current를 모의하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!