如何启动并从我的mvc应用程序的某些操作中获取ActionResult仅使用Linqpad或控制台应用程序?
我知道我可以创建MvcApplication类instanse:
var mvcApplication = new Web.MvcApplication();
然后创建控制器:
var homeController = new Web.Controllers.HomeController();
甚至运行控制器的动作
homeController.Index()
但它什么也没有返回。什么是mvc应用程序的生命周期?我应该使用哪些方法来模拟来自用户的Web请求?
修改
这里有一些关于ASP.NET MVC生命周期的好帖子,但不幸的是我无法解决我的问题
http://blog.stevensanderson.com/2007/11/20/aspnet-mvc-pipeline-lifecycle/
答案 0 :(得分:2)
我知道这是一个老问题,可能会在别处回答,但在我正在研究的项目中,我们可以使用Linqpad调试Controller Actions并获取返回值。
简而言之,您需要告诉Linqpad返回一些内容:
var result = homeController.Index();
result.Dump();
您可能还需要模拟您的上下文并将visual studio作为调试器附加。
完整的代码段:
void Main()
{
using(var svc = new CrmOrganizationServiceContext(new CrmConnection("Xrm")))
{
DummyIdentity User = new DummyIdentity();
using (var context = new XrmDataContext(svc))
{
// Attach the Visual Studio debugger
System.Diagnostics.Debugger.Launch();
// Instantiate the Controller to be tested
var controller = new HomeController(svc);
// Instantiate the Context, this is needed for IPrincipal User
var controllerContext = new ControllerContext();
controllerContext.HttpContext = new DummyHttpContext();
controller.ControllerContext = controllerContext;
// Test the action
var result = controller.Index();
result.Dump();
}
}
}
// Below is the Mocking classes used to sub in Context, User, etc.
public class DummyHttpContext:HttpContextBase {
public override IPrincipal User {get {return new DummyPrincipal();}}
}
public class DummyPrincipal : IPrincipal
{
public bool IsInRole(string role) {return role == "User";}
public IIdentity Identity {get {return new DummyIdentity();}}
}
public class DummyIdentity : IIdentity
{
public string AuthenticationType { get {return "?";} }
public bool IsAuthenticated { get {return true;}}
public string Name { get {return "sampleuser@email.com";} }
}
应该提示您选择调试器,选择构建了应用程序的Visual Studio实例。
我们为MVC-CRM设置了一个特定的设置,所以这可能不适用于所有人,但希望这会帮助其他人。