昨天我重构了以下方法以返回完整视图或部分视图。
public ActionResult List(int page)
{
var viewModel = GetListViewModel(page);
if(Request.IsAjaxRequest())
{
return PartialView("_list", viewModel);
}
return View("PartsList", viewModel);
}
但是现在我的测试已经失败了,他们在if
声明上失败了。我做了一个谷歌,发现你可以用类似的东西模拟/存根 HTTP 请求,
HttpContextBase mockedContext = MockRepository.GeneratePartialMock<HttpRequestBase>();
HttpRequestBase mockedContext = MockRepository.GeneratePartialMock<HttpContextBase>();
mockedContext.Stub(x => x.Request).Return(mockedRequest);
mockedRequest.Stub(r => r["X-Requested-With"]).Return("");
subject.ControllerContext = new ControllerContext { HttpContext = mockedContext };
我在测试中实现了上述内容,但仍然失败。
测试
public class when_asked_for_the_parts_list_view : context_for_part_controller
{
static ActionResult _result;
static IPagination<Part> _parts;
static PartListPageViewModel _partListPageViewModel;
Establish context = () =>
{
mockedContext.Stub(x => x.Request).Return(mockedRequest);
mockedRequest.Stub(r => r["X-Requested-With"]).Return("XMLHttpRequest");
subject.ControllerContext = new ControllerContext { HttpContext = mockedContext };
_parts = new List<Part>().AsPagination(1);
_partListPageViewModel = new PartListPageViewModel();
_partTasks.Stub(x => x.GetParts(1)).Return(_parts);
_listMapper.Stub(x => x.MapFrom(_parts)).Return(_partListPageViewModel);
};
Because of = () =>
{
_result = subject.List(1);
};
It should_retreve_the_parts =
() => _partTasks.AssertWasCalled(x=>x.GetParts(1));
It should_map_the_parts_to_a_viewModel =
() => _listMapper.AssertWasCalled(x => x.MapFrom(_parts));
It should_return_the_list_as_a_partialview =
() => _result.ShouldBeAPartialView().ViewData.Model.ShouldEqual(_partListPageViewModel);
}
错误
should map the parts to a viewModel : Failed
The method or operation is not implemented.
System.NotImplementedException: The method or operation is not implemented.
at System.Web.HttpRequestBase.get_Headers()
at HttpRequestBaseProxy5a253d42dd57477f936e24736e848cbb.get_Headers_callback_47()
at HttpRequestBaseProxy5a253d42dd57477f936e24736e848cbb.Invocationget_Headers_66.InvokeMethodOnTarget()
at Castle.DynamicProxy.AbstractInvocation.Proceed()
at Rhino.Mocks.Impl.ReplayPartialMockState.DoMethodCall(IInvocation invocation, MethodInfo method, Object[] args)
at Rhino.Mocks.Impl.ReplayMockState.MethodCall(IInvocation invocation, MethodInfo method, Object[] args)
at Rhino.Mocks.MockRepository.MethodCall(IInvocation invocation, Object proxy, MethodInfo method, Object[] args)
at Rhino.Mocks.Impl.RhinoInterceptor.Intercept(IInvocation invocation)
at Castle.DynamicProxy.AbstractInvocation.Proceed()
at HttpRequestBaseProxy5a253d42dd57477f936e24736e848cbb.get_Headers()
at System.Web.Mvc.AjaxRequestExtensions.IsAjaxRequest(HttpRequestBase request)
at Catalogue.Web.Controllers.Part.PartController.List(Int32 page) in PartController.cs: line 143
at Catalogue.MSpecTests.UI.Parts.when_asked_for_the_parts_list_view.<.ctor>b__6() in PartControllerTests.cs: line 214
如何Request.IsAjaxRequest()
在我的控制器中获取请求以作为 ajax 请求传递???
致富
编辑- 找到这篇文章,我的 ajax 测试现在通过了,但我的非 ajax 仍然失败。