在尝试实施previous question的第二个答案时,我收到错误。
我已经按照帖子显示的方式实现了方法,前三个方法正常工作。第四个(HomeController_Delete_Action_Handler_Should_Redirect_If_Model_Successfully_Delete)给出了这个错误:在结果的Values集合中找不到名为'controller'的参数。
如果我将代码更改为:
actual
.AssertActionRedirect()
.ToAction("Index");
它工作正常,但我不喜欢那里的“魔术字符串”,而更喜欢使用另一张海报使用的lambda方法。
我的控制器方法如下所示:
[HttpPost]
public ActionResult Delete(State model)
{
try
{
if( model == null )
{
return View( model );
}
_stateService.Delete( model );
return RedirectToAction("Index");
}
catch
{
return View( model );
}
}
我做错了什么?
答案 0 :(得分:9)
MVCContrib.TestHelper
希望您在Delete
操作中重定向时指定控制器名称:
return RedirectToAction("Index", "Home");
然后你就可以使用强类型断言了:
actual
.AssertActionRedirect()
.ToAction<HomeController>(c => c.Index());
另一种方法是编写自己的ToActionCustom
扩展方法:
public static class TestHelperExtensions
{
public static RedirectToRouteResult ToActionCustom<TController>(
this RedirectToRouteResult result,
Expression<Action<TController>> action
) where TController : IController
{
var body = (MethodCallExpression)action.Body;
var name = body.Method.Name;
return result.ToAction(name);
}
}
允许您按原样保留重定向:
return RedirectToAction("Index");
并测试结果如下:
actual
.AssertActionRedirect()
.ToActionCustom<HomeController>(c => c.Index());