我有一个控制器方法,它返回一个RedirectToActionResult
(成功!)或一个ViewResult
(失败的错误消息).
如果业务逻辑失败,我将错误消息添加到AddModelError
属性.
有什么方法可以在我的MS单元测试中测试这个吗?我也有Moq,如果这也有帮助.(我不相信这个场景需要Moq)..我没有使用Request
对象中的任何东西.
是的,想通了.
// Arrange. // .. whatever .. // Act. var viewResult = controller.Create(new Post()) as ViewResult; // Assert. Assert.IsNotNull(viewResult); Assert.IsNotNull(viewResult.ViewData.ModelState["subject"]); Assert.IsNotNull(viewResult.ViewData.ModelState["subject"].Errors); Assert.IsTrue(viewResult.ViewData.ModelState["subject"].Errors.Count == 1);
您也可以(也)直接测试Controller(不测试View),如下所示:
// Arrange. // .. // Act. controller.Create(new Post()); // missing UserName will invalidate Model with "Please specify your name" message // Assert Assert.IsTrue(! controller.ModelState.IsValid); Assert.IsTrue( controller.ModelState["UserName"].Errors.Any( modelError => modelError.ErrorMessage == "Please specify your name"));