如何正确地对OData v6.0控制器进行单元测试?

7
我正在尝试对OData控制器进行单元测试,但是API已更改,之前推荐的方法不起作用 - 当我尝试实例化ODataQueryOptions以传递给控制器的Get方法时,我得到了“没有注册非OData HTTP路由”的错误消息。我的当前代码(基于像这个答案):
       [TestMethod()]
    public void RankingTest()
    {
        var serviceMock = new Mock<IVendorService>();
        serviceMock.SetReturnsDefault<IEnumerable<Vendor>>(new List<Vendor>()
        {
           new Vendor() { id = "1" }
        });

        HttpRequestMessage request = new HttpRequestMessage(HttpMethod.Get, "http://localhost/odata/Vendor");

        ODataModelBuilder builder = new ODataConventionModelBuilder();
        builder.EntitySet<Vendor>("Vendor");
        var model = builder.GetEdmModel();

        HttpRouteCollection routes = new HttpRouteCollection();
        HttpConfiguration config = new HttpConfiguration(routes) { IncludeErrorDetailPolicy = IncludeErrorDetailPolicy.Always };

        // attempting to register at least some non-OData HTTP route doesn't seem to help
        routes.MapHttpRoute("Default", "{controller}/{action}/{id}",
            new
            {
                controller = "Home",
                action = "Index",
                id = UrlParameter.Optional
            }
            );
        config.MapODataServiceRoute("odata", "odata", model);
        config.Count().Filter().OrderBy().Expand().Select().MaxTop(null);
        config.EnsureInitialized();

        request.SetConfiguration(config);
        ODataQueryContext context = new ODataQueryContext(
            model,
            typeof(Vendor),
            new ODataPath(
                new Microsoft.OData.UriParser.EntitySetSegment(
                    model.EntityContainer.FindEntitySet("Vendor"))
            )
        );


        var controller = new VendorController(serviceMock.Object);
        controller.Request = request;

        // InvalidOperationException in System.Web.OData on next line:
        // No non-OData HTTP route registered
        var options = new ODataQueryOptions<Vendor>(context, request);

        var response = controller.Get(options) as ViewResult;

    }

感谢任何想法或指针!
1个回答

13

System.Web.OData.Extensions.HttpConfigurationExtensions类中添加对EnableDependencyInjection方法的调用:

HttpConfiguration config = new HttpConfiguration();

//1        
config.EnableDependencyInjection();

//2 
config.EnsureInitialized();

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接