gpt4 book ai didi

c# - 使用 Moq 和 EF6 进行单元测试

转载 作者:太空宇宙 更新时间:2023-11-03 21:24:26 25 4
gpt4 key购买 nike

我已经为我的服务层构建了单元测试。我没有使用 Mock,因为我认为既然你正在添加/删除/查询数据库,为什么要查询 mock 因为结果可能不同,但这不是我要问的。

现在我正在使用 Moq 来测试我的 web api 层。我认为这很好,就好像我所有的测试都在服务层上通过一样,模拟服务来测试 web api 就可以了。

我已经设法为我的 GetAsync 方法编写了一个测试,它工作正常,就像这样

这是 Controller :

public async Task<IHttpActionResult> GetAsync(long id)
{
Content content = await _service.GetAsync(id);
ContentModel model = Mapper.Map<ContentModel>(content);

return Ok(model);
}

这是测试:

[TestMethod]
public void Content_GetAsync()
{
// arrange
var mockService = new Mock<IContentService>();
mockService.Setup(x => x.GetAsync(4))
.ReturnsAsync(new Content
{
Id = 4
});

// setup automapper
AutoMapperConfig.RegisterMappings();

// act
var controller = new ContentController(mockService.Object);
var actionResult = controller.GetAsync(4).Result;
var contentResult = actionResult as OkNegotiatedContentResult<ContentModel>;

// assert
Assert.IsNotNull(contentResult);
Assert.IsNotNull(contentResult.Content);
Assert.AreEqual(4, contentResult.Content.Id);
}

我相信我写的是正确的,而且它似乎有效。现在我想测试我的 PostAsync 方法来添加一个项目。 Controller 看起来像这样:

public async Task<IHttpActionResult> PostAsync(ContentModel model)
{
Content content = Mapper.Map<Content>(model);

await _service.AddAsync(content);

return Created<ContentModel>(Request.RequestUri, Mapper.Map<ContentModel>(content));
}

这是测试:

[TestMethod]
public void Content_PostAsync()
{
var mockService = new Mock<IContentService>();
mockService.Setup(e => e.AddAsync(new Content()))
.ReturnsAsync(1);

// setup automapper
AutoMapperConfig.RegisterMappings();

// act
var controller = new ContentController(mockService.Object);
var actionResult = controller.PostAsync(new ContentModel {
Heading = "New Heading"
}).Result;
var contentResult = actionResult as CreatedAtRouteNegotiatedContentResult<ContentModel>;

// assert
Assert.IsNotNull(contentResult);
Assert.IsNotNull(contentResult.Content);
Assert.AreEqual("New Heading", contentResult.Content.Heading);
}

现在当我运行它时,我得到一个错误:

null reference exception.  "Request" from the Request.RequestUri is null.

所以我更改了我的 Controller 并对此进行了测试,以尝试模拟它。

测试代码:

public Task<IHttpActionResult> PostAsync(ContentModel model)
{
return PostAsync(model, Request);
}

/// Unit testable version of above. Cannot be accessed by users
[NonAction]
public async Task<IHttpActionResult> PostAsync(ContentModel model, System.Net.Http.HttpRequestMessage request)
{
Content content = Mapper.Map<Content>(model);

await _service.AddAsync(content);

return Created<ContentModel>(request.RequestUri, Mapper.Map<ContentModel>(content));
}

Controller 代码:

[TestMethod]
public void Content_PostAsync()
{
// arrange
var mockRequest = new Mock<System.Net.Http.HttpRequestMessage>();
mockRequest.Setup(e => e.RequestUri)
.Returns(new Uri("http://localhost/"));

var mockService = new Mock<IContentService>();
mockService.Setup(e => e.AddAsync(new Content()))
.ReturnsAsync(1);

// setup automapper
AutoMapperConfig.RegisterMappings();

// act
var controller = new ContentController(mockService.Object);
var actionResult = controller.PostAsync(new ContentModel {
Heading = "New Heading"
}, mockRequest.Object).Result;
var contentResult = actionResult as CreatedAtRouteNegotiatedContentResult<ContentModel>;

// assert
Assert.IsNotNull(contentResult);
Assert.IsNotNull(contentResult.Content);
Assert.AreEqual("New Heading", contentResult.Content.Heading);
}

现在我收到一条错误消息:

Invalid setup on a non-virtual (overridable in VB) member: e => e.RequestUri

有人可以帮我解决这个问题吗?我确定我在所有测试中都正确使用了 Mock,但单元测试对我来说是新的,所以也许我只是没有做正确的事情。

最佳答案

使用 Moq 你只能模拟 virtual/absrtact 成员。 RequestUri 不是 HttpRequestMessage 的虚拟成员,因此出现错误消息。

您应该能够直接新建一个 HttpRequestMessage 而无需模拟它并将其传入。

var request = System.Net.Http.HttpRequestMessage>();
request.RequestUri = new Uri("http://localhost/");

// act
var controller = new ContentController(mockService.Object);
var actionResult = controller.PostAsync(new ContentModel {
Heading = "New Heading"
}, request).Result;

关于c# - 使用 Moq 和 EF6 进行单元测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28108296/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com