c# – 单元测试asp.net mvc restful routing FormatResult

c# – 单元测试asp.net mvc restful routing FormatResult,第1张

概述我正在使用 restful routing module for asp.net mvc并且非常满意.但我不能得到一件事.例如,我有一个像这样的控制器动作: public ActionResult Index(){ if (Request.IsAjaxRequest()) return PartialView(); return View();} 编写这样的规 我正在使用 restful routing module for asp.net mvc并且非常满意.但我不能得到一件事.例如,我有一个像这样的控制器动作:

public ActionResult Index(){    if (Request.IsAJAXRequest())         return PartialVIEw();    return VIEw();}

编写这样的规范没问题:

[Subject(typeof(LotsController))]public class When_Index_called{    static LotsController controller;    static ActionResult actionResult;    Establish context = () => {        controller = mocker.Create<LotsController>();        controller.ControllerContext = Contexts.Controller.Default;    };    Because of = () => actionResult = controller.Index();    It should_render_vIEw = () => actionResult.AssertVIEWrendered().ForVIEwWithDefaultname();

但是使用休息时,我希望有一个像这样的Index方法:

public ActionResult Index(){    return RespondTo(format => {        format.HTML = () => {            if (Request.IsAJAXRequest())                 return PartialVIEw();            return VIEw();        };        format.Json = () => Json(new { });    });}

确定以前的规范失败了,因为动作结果不是VIEwResult类型,它的类型是FormatResult. FormatResult本身会覆盖返回voID的ExecuteResult方法.如果我想在FormatResult中验证 *** 作结果类型和数据,我该如何对这种情况进行单元测试?

解决方法 在将来版本的restful routing中,这样的代码是可能的:

var formatResult = actionResult as FormatResult;ActionResult result = formatResult.ExposeResult().HTML();result.ShouldBeOfType<VIEwResult>();
总结

以上是内存溢出为你收集整理的c# – 单元测试asp.net mvc restful routing FormatResult全部内容,希望文章能够帮你解决c# – 单元测试asp.net mvc restful routing FormatResult所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1228554.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-05
下一篇 2022-06-05

发表评论

登录后才能评论

评论列表(0条)

保存