>백엔드 개발 >C++ >테스트 초기화 메서드에서 HttpContext.Current를 모의하는 방법은 무엇입니까?

테스트 초기화 메서드에서 HttpContext.Current를 모의하는 방법은 무엇입니까?

Barbara Streisand
Barbara Streisand원래의
2025-01-17 02:51:09773검색

How to Mock HttpContext.Current in a Test Init Method?

테스트 초기화 방법에서 HttpContext.Current 모의

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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.