gpt4 book ai didi

c# - 如何在单元测试中使用 Moq 和 DbFunctions 来防止 NotSupportedException?

转载 作者:太空宇宙 更新时间:2023-11-03 15:33:31 28 4
gpt4 key购买 nike

我目前正在尝试对通过 Entity Framework 运行的查询运行一些单元测试。查询本身在实时版本上运行没有任何问题,但单元测试总是失败。

我已将此范围缩小到我对 DbFunctions.TruncateTime 的使用,但我不知道有什么方法可以让单元测试反射(reflect)实时服务器上发生的情况。

这是我正在使用的方法:

    public System.Data.DataTable GetLinkedUsers(int parentUserId)
{
var today = DateTime.Now.Date;

var query = from up in DB.par_UserPlacement
where up.MentorId == mentorUserId
&& DbFunctions.TruncateTime(today) >= DbFunctions.TruncateTime(up.StartDate)
&& DbFunctions.TruncateTime(today) <= DbFunctions.TruncateTime(up.EndDate)
select new
{
up.UserPlacementId,
up.Users.UserId,
up.Users.FirstName,
up.Users.LastName,
up.Placements.PlacementId,
up.Placements.PlacementName,
up.StartDate,
up.EndDate,
};

query = query.OrderBy(up => up.EndDate);

return this.RunQueryToDataTable(query);
}

如果我注释掉包含 DbFunctions 的行,所有测试都会通过(检查是否仅运行给定日期的有效结果的测试除外)。

有没有一种方法可以提供 DbFunctions.TruncateTime 的模拟版本以用于这些测试?本质上它应该只返回 Datetime.Date,但这在 EF 查询中不可用。

编辑:这是使用日期检查失败的测试:

    [TestMethod]
public void CanOnlyGetCurrentLinkedUsers()
{
var up = new List<par_UserPlacement>
{
this.UserPlacementFactory(1, 2, 1), // Create a user placement that is current
this.UserPlacementFactory(1, 3, 2, false) // Create a user placement that is not current
}.AsQueryable();

var set = DLTestHelper.GetMockSet<par_UserPlacement>(up);

var context = DLTestHelper.Context;
context.Setup(c => c.par_UserPlacement).Returns(set.Object);

var getter = DLTestHelper.New<LinqUserGetLinkedUsersForParentUser>(context.Object);

var output = getter.GetLinkedUsers(1);

var users = new List<User>();
output.ProcessDataTable((DataRow row) => students.Add(new UserStudent(row)));

Assert.AreEqual(1, users.Count);
Assert.AreEqual(2, users[0].UserId);
}

编辑 2:这是相关测试的消息和调试跟踪:

Test Result: Failed

Message: Assert.AreEqual failed. Expected:<1>. Actual:<0>

Debug Trace: This function can only be invoked from LINQ to Entities

从我读到的内容来看,这是因为没有 LINQ to Entities 实现此方法可以在这个地方用于单元测试,尽管在实时版本上有(因为它正在查询 SQL服务器)。

最佳答案

我知道我来晚了,但一个非常简单的解决方法是编写您自己的使用 DbFunction 属性的方法。然后使用该函数代替 DbFunctions.TruncateTime。

[DbFunction("Edm", "TruncateTime")]
public static DateTime? TruncateTime(DateTime? dateValue)
{
return dateValue?.Date;
}

使用此函数将在 Linq to Entities 使用时执行 EDM TruncateTime 方法,否则将运行提供的代码。

关于c# - 如何在单元测试中使用 Moq 和 DbFunctions 来防止 NotSupportedException?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32782128/

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