当对 ASP.NET 控制器进行单元测试时,您在哪里模拟 httprequestbase?

发布于 2024-08-15 18:59:40 字数 392 浏览 1 评论 0原文

当对 ASP.NET 控制器进行单元测试时,您不需要以某种方式模拟 httpcontextbase 吗?

我的所有控制器都继承自我编写的自定义控制器类(它只是向原始控制器类添加了一些通用属性)。 就像这样:

public class MyController : Controller
{
    protected override void OnActionExecuting(System.Web.Mvc.ActionExecutingContext context)
    {
         // look for a specific cookie
    }

}

真的很想开始对我的控制器进行单元测试,只是不确定如何模拟控制器类和随之而来的 httpcontext。

when unit testing a asp.net controller, don't you have to somehow mock the httpcontextbase?

All my controllers inherit from a custom controller class that I wrote (it just adds some common properties to the original controller class).
So its like:

public class MyController : Controller
{
    protected override void OnActionExecuting(System.Web.Mvc.ActionExecutingContext context)
    {
         // look for a specific cookie
    }

}

so really want to start unit testing my controllers, just unsure how I go about mocking the controller classes and the httpcontext that goes with it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

北城孤痞 2024-08-22 18:59:40

下面是如何使用 Moq 设置 Mock HttpContextBase 的示例:

var httpCtxStub = new Mock<HttpContextBase>();

var controllerCtx = new ControllerContext();
controllerCtx.HttpContext = httpCtxStub.Object;

sut.ControllerContext = controllerCtx;

// Exercise and verify the sut

其中 sut 代表被测系统 (SUT),即您希望测试的控制器。

Here's an example of how you can use Moq to set up a Mock HttpContextBase:

var httpCtxStub = new Mock<HttpContextBase>();

var controllerCtx = new ControllerContext();
controllerCtx.HttpContext = httpCtxStub.Object;

sut.ControllerContext = controllerCtx;

// Exercise and verify the sut

where sut represents the System Under Test (SUT), i.e. the Controller you wish to test.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文