gpt4 book ai didi

asp.net-mvc - 获取 View 名称,其中 ViewResult.ViewName 为空字符串以进行单元测试

转载 作者:行者123 更新时间:2023-12-02 07:40:57 24 4
gpt4 key购买 nike

我在 ActionResult 上编写了一个扩展方法,用于单元测试,它将断言返回的 ViewName 是否是预期的。这是我到目前为止的代码:

public static void AssertViewWasReturned(this ActionResult result, string viewName)
{
string actualViewName;

if (result is ViewResult)
actualViewName = (result as ViewResult).ViewName;
else if (result is PartialViewResult)
actualViewName = (result as PartialViewResult).ViewName;
else
throw new InvalidOperationException("Results of type " + result.GetType() + " don't have a ViewName");

Assert.AreEqual(viewName, actualViewName, string.Format("Expected a View named{0}, got a View named {1}", viewName, actualViewName));
}

这工作正常,除非 Controller 返回一个 View 而不指定名称 - 在这种情况下,result.ViewName 是一个空字符串。

所以,我的问题是 - 有没有办法从 ViewResult 对象中知道 ViewName 是空字符串时 View 的名称是什么?

最佳答案

如果您的 Controller 方法不是通过 MVC 管道调用的,则附加信息不会添加到 Controller.ViewData 字典中(我认为它会以某种方式提供“action”键,但无法不确认)。但是,由于您在路由框架等的上下文“外部”使用 Controller ,因此它无法知道被调用的方法。

所以答案很简单:“不”。如果未指定 View 的名称,则无法从操作返回的 ViewResult 中确定它。至少不是以你的 Controller 测试的方式(顺便说一句,这完全没问题)。

关于asp.net-mvc - 获取 View 名称,其中 ViewResult.ViewName 为空字符串以进行单元测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8301797/

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