ASP.NET MVC - 模拟表单请求

时间:2009-03-16 10:56:32

标签: asp.net-mvc unit-testing

我正在学习ASP.NET MVC,我正在尝试为单元测试创​​建一个模拟表单请求。

我正在使用RhinoMocks。

我查看了以下网站但无法使用这些网站。

http://blog.maartenballiauw.be/post/2008/03/19/ASPNET-MVC-Testing-issues-Q-and-A.aspx

更新: 控制器代码:

    /// <summary>
    /// Creates a new entry
    /// </summary>
    /// <returns></returns>
    [AcceptVerbs(HttpVerbs.Post)]
    public ActionResult Create([Bind()]Person person) 
    {
        if (Request.Form["DateOfBirth"].ToString() == "")
        {
            TempData["message"] = "Please select a date of Birth";
            ViewData["DateOfBirth"] = Request.Form["DateOfBirth"].ToString();

            MvcValidationAdapter.TransferValidationMessagesTo(ViewData.ModelState, person.ValidationMessages);
            return View();
        }
        else
        { 

        if (person.IsValid())
        {
            person.DateOfBirth = Convert.ToDateTime(Request.Form["DateOfBirth"]);

            personRepository.SaveOrUpdate(person);
            TempData["message"] = person.Firstname + " was successfully added";
            return RedirectToAction("Create", "OrderDetails", new { id = person.ID });
        }
        else
        {

            ViewData["DateOfBirth"] = Request.Form["DateOfBirth"].ToString();

            MvcValidationAdapter.TransferValidationMessagesTo(ViewData.ModelState, person.ValidationMessages);
            return View();
        }

        }

    }

3 个答案:

答案 0 :(得分:2)

如果您更改操作方法以使FormCollection作为最终参数,则可以传入包含所有值的FormCollection实例。在实时运行时,MVC框架将自动传递该参数中表单的值。

public ActionResult MyMethod(FormCollection form)
{
    // in testing you will pass in a populated FormCollection object
    // at runtime the framework will populate the form parameter with
    // the contents of the posted form
}

Here是一个使用它的合理例子。

修改

你试过这个:

    /// <summary>
    /// Creates a new entry
    /// </summary>
    /// <returns></returns>
    [AcceptVerbs(HttpVerbs.Post)]
    public ActionResult Create([Bind()]Person person, FormCollection form) 
    {
        if (form["DateOfBirth"].ToString() == "")
        {
            TempData["message"] = "Please select a date of Birth";
            ViewData["DateOfBirth"] = form["DateOfBirth"].ToString();

            MvcValidationAdapter.TransferValidationMessagesTo(
                ViewData.ModelState, person.ValidationMessages);
            return View();
        }
        else
        { 

        if (person.IsValid())
        {
            person.DateOfBirth = Convert.ToDateTime(form["DateOfBirth"]);

            personRepository.SaveOrUpdate(person);
            TempData["message"] = 
                person.Firstname + " was successfully added";
            return RedirectToAction(
                "Create", "OrderDetails", new { id = person.ID });
        }
        else
        {

            ViewData["DateOfBirth"] = form["DateOfBirth"].ToString();

            MvcValidationAdapter.TransferValidationMessagesTo(
                ViewData.ModelState, person.ValidationMessages);
            return View();
        }

        }

    }

答案 1 :(得分:2)

你也可以嘲笑表格,我建议你看一下http://mvccontrib.codeplex.com/

var form = new NameValueCollection(); form.Add(“publish”,“true”); _controller.Request.Stub(x =&gt; x.Form).IgnoreArguments()。Return(form);

答案 2 :(得分:1)

除非您正在测试MVC本身,否则您是否应该主要测试控制器的操作是否使用框架传递的参数做正确的事情?

您可以通过以下方式模拟更多间接表单访问:

controller.ActionInvoker.InvokeAction(ctx);

其中ctx是ControllerContext,其中包含表单数据等。Here's一个使用rhino提供上下文的示例(MoQ也显示)。