我有一个操作,依靠User.Identity.Name获取当前用户的用户名,以获得他的订单列表:
public ActionResult XLineas() { ViewData["Filtre"] = _options.Filtre; ViewData["NomesPendents"] = _options.NomesPendents; return View(_repository.ObteLiniesPedido(User.Identity.Name,_options.Filtre,_options.NomesPendents)); }
现在我正试图为这个单元测试,但我困在如何提供一个Mock for User.Identity.Name。如果我运行我的测试,因为我有它(没有嘲笑为User …),我得到一个Null ..异常。
解决方法
一个更好的方法是传递一个字符串参数userName(或者一个IPrincipal参数用户,如果你需要更多的信息,而不仅仅是名称)到ActionMethod,你在一个正常的请求使用ActionFilterAttribute“注入”。当你测试它,你只是提供自己的模拟对象,因为操作过滤器的代码不会运行(在大多数情况下 – 有办法,如果你特别想要…)
Kazi Manzur Rashid在excellent blog post的第7点详细描述了这一点。