Url.Link不工作的WebAPI [英] Url.Link not working in WebAPI

查看:108
本文介绍了Url.Link不工作的WebAPI的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

使用下面的单元测试..荫想测试我的WebAPI。

Using the unit test below .. Iam trying to test my webapi.

[Test]
public void CheckControllerForCreate()
{
    var config = new HttpConfiguration();
    config.IncludeErrorDetailPolicy = IncludeErrorDetailPolicy.Always;
    var request = new HttpRequestMessage(HttpMethod.Post, "http://localhost/api/product");
    var route = config.Routes.MapHttpRoute("Foo", "api/{controller}/{id}");
    var routeData = new HttpRouteData(route, new HttpRouteValueDictionary { { "controller", "products" } });
    var controller = new ProductController
    {
        ControllerContext = new HttpControllerContext(config, routeData, request),
        Request = request,
        Url = new UrlHelper(request)
    };

    controller.Request.Properties[HttpPropertyKeys.HttpConfigurationKey] = config;

    var result = controller.Create(new Product {Id = 4, Name = "Tomato Soup", Category = "Groceries", Price = 1});
}

[HttpPost]
public HttpResponseMessage Create(Product product)
{
    var url = Url;
    if (product == null)
        throw new HttpResponseException(new HttpResponseMessage{StatusCode = HttpStatusCode.BadRequest,ReasonPhrase = "Product is not specified"});
    products.Add(product);
    var response = Request.CreateResponse(HttpStatusCode.Created, product);
    string uri = Url.Link("Foo", product.Id);
    response.Headers.Location = new Uri(uri);
    return response;
}

由于 URI 创建操作抛出异常。现在,网址助手正确地拿起RouteName,否则就不会有一个RouteName未发现异常。我假设somethign不对我的配置。

The Create Action throws an exception because uri is null. Now, the Url helper is correctly picking up the RouteName , otherwise there would be a RouteName not found exception. I am assuming that somethign is wrong with my configuration.

我提到 HTTP ://www.peterprovost.org/blog/2012/06/16/unit-testing-asp-dot-net-web-api 和其他几个职位进行单元测试控制器

I referred to http://www.peterprovost.org/blog/2012/06/16/unit-testing-asp-dot-net-web-api and several other posts for unit testing the controllers.

本的WebAPI的方法是在这里codePLEX

The WebAPI method is here on codeplex

<一个href=\"http://aspnetwebstack.$c$cplex.com/SourceControl/changeset/view/1acb241299a8#src/System.Web.Http/Routing/UrlHelper.cs\" rel=\"nofollow\">http://aspnetwebstack.$c$cplex.com/SourceControl/changeset/view/1acb241299a8#src/System.Web.Http/Routing/UrlHelper.cs

修改

我已经把范围缩小到VPD是在(UrlHelper)

I have narrowed it down to vpd being null in ( UrlHelper)

IHttpVirtualPathData vpd = configuration.Routes.GetVirtualPath(
                request: request,
                name: routeName,
                values: routeValues);

似乎无法弄清楚,为什么?

Can't seem to figure out why ?

推荐答案

您需要将设置的RouteData到请求,你的配置做了同样的方式:

You need to set the routeData into the request, the same way you did with the configuration:

controller.Request.Properties[HttpPropertyKeys.HttpRouteDataKey] = routeData;

另外你没有正确使用 Url.Link 帮手。您还没有指定控制器,也不在标明编号。

Also you are incorrectly using the Url.Link helper. You haven't specified a controller nor you have indicated the id.

在您的控制器code应该是这样的:

The code in your controller should look like this:

string uri = Url.Link("Foo", new { id = product.Id, controller = "product" });


更新:

下面是一个完整的例子。

Here's a full example.

控制器:

public class ProductController : ApiController
{
    public HttpResponseMessage Create(int id)
    {
        var uri = Url.Link("Foo", new { id = id, controller = "product" });
        return Request.CreateResponse(HttpStatusCode.OK, uri);
    }
}

测试:

// arrange
var config = new HttpConfiguration();
config.IncludeErrorDetailPolicy = IncludeErrorDetailPolicy.Always;
var request = new HttpRequestMessage(HttpMethod.Post, "http://localhost/api/product");
var route = config.Routes.MapHttpRoute("Foo", "api/{controller}/{id}");
var routeData = new HttpRouteData(route, new HttpRouteValueDictionary(new { controller = "product" }));
var controller = new ProductController
{
    ControllerContext = new HttpControllerContext(config, routeData, request),
    Request = request,
    Url = new UrlHelper(request)
};
controller.Request.Properties[HttpPropertyKeys.HttpConfigurationKey] = config;
controller.Request.Properties[HttpPropertyKeys.HttpRouteDataKey] = routeData;

// act
var result = controller.Create(4);

// assert
...

这篇关于Url.Link不工作的WebAPI的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆