且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

路由数据的单元测试不适用于 ASP.NET MVC 5 Web API

更新时间:2023-02-16 22:58:05

看起来在 MVC 5 中 Url 属性是以不同的方式创建的.我在测试中引入了这一行,现在 Url 属性恢复正常

It looks like in MVC 5 the Url property is created in a different way. I have introduced this line in my tests and now the Url property is back to normal

private static void SetupControllerForTests(ApiController controller)
{
    var config = new HttpConfiguration();
    var request = new HttpRequestMessage(HttpMethod.Post, "http://api.clientele-itsm.com/api/organization");
    var route = config.Routes.MapHttpRoute("DefaultApi", "api/{controller}/{id}");
    var routeData = new HttpRouteData(route, new HttpRouteValueDictionary
    {
        {"id", Guid.Empty},
        {"controller", "organization"}
    });
    controller.ControllerContext = new HttpControllerContext(config, routeData, request);
    UrlHelper urlHelper = new UrlHelper(request);
    controller.Request = request;
    controller.Request.Properties[HttpPropertyKeys.HttpConfigurationKey] = config;
    controller.Request.Properties[HttpPropertyKeys.HttpRouteDataKey] = routeData;
    /// inject a fake helper
    controller.Url = urlHelper;
}