也来这里寻找解决方案。这似乎有效,但不确定是否有更好的方法。
控制器需要最少CreateEntity
并GetKey
覆盖:
public class MyController : EntitySetController<MyEntity, int>
{
protected override MyEntity CreateEntity(MyEntity entity)
{
return entity;
}
protected override int GetKey(MyEntity entity)
{
return entity.Id;
}
}
MyEntity 非常简单的地方:
public class MyEntity
{
public int Id { get; set; }
public string Name { get; set; }
}
看起来您至少需要: + 带有 URI 的请求 + 请求标头中的 3 个键MS_HttpConfiguration
,MS_ODataPath
和MS_ODataRouteName
+ 带有路由的 HTTP 配置
[TestMethod]
public void CanPostToODataController()
{
var controller = new MyController();
var config = new HttpConfiguration();
var request = new HttpRequestMessage();
config.Routes.Add("mynameisbob", new MockRoute());
request.RequestUri = new Uri("http://www.thisisannoying.com/MyEntity");
request.Properties.Add("MS_HttpConfiguration", config);
request.Properties.Add("MS_ODataPath", new ODataPath(new EntitySetPathSegment("MyEntity")));
request.Properties.Add("MS_ODataRouteName", "mynameisbob");
controller.Request = request;
var response = controller.Post(new MyEntity());
Assert.IsNotNull(response);
Assert.IsTrue(response.IsSuccessStatusCode);
Assert.AreEqual(HttpStatusCode.Created, response.StatusCode);
}
我不太确定IHttpRoute
, 在 aspnet 源代码中(我必须链接到这个才能弄清楚这一切)测试使用这个接口的模拟。所以对于这个测试,我只是创建一个模拟并实现RouteTemplate
属性和GetVirtualPath
方法。测试过程中没有使用接口上的所有其他内容。
public class MockRoute : IHttpRoute
{
public string RouteTemplate
{
get { return ""; }
}
public IHttpVirtualPathData GetVirtualPath(HttpRequestMessage request, IDictionary<string, object> values)
{
return new HttpVirtualPathData(this, "www.thisisannoying.com");
}
// implement the other methods but they are not needed for the test above
}
这对我有用,但是我真的不太确定ODataPath
以及IHttpRoute
如何正确设置它。