0

我正在为 IHttpActionresult 控制器编写测试方法。ActionResult 不是 NULL 并且包含所需的数据 (Customer.ID = 986574123)。然而,在第二行中,变量 CreatedResult 为空。我希望它将适当的数据返回给 CreatedResult。我也在使用 Moq 框架。不知道这是否重要。有什么想法吗?如果您需要来自 ActionResult 的更多数据,请在下面发表评论。谢谢。

测试方法代码:

        var CustomerRepository = new Mock<ICustomerRepository>();

        CustomerRepository.Setup(x => x.Add()).Returns(new Customer { ID = 986574123, Date = DateTime.Now});      

        var Controller = new CustomerController(CustomerRepository.Object, new Mock<IProductRepository>().Object);
        var config = new HttpConfiguration();
        var request = new HttpRequestMessage(HttpMethod.Post, "http://localhost:38306/api/CreateCustomer");
        var route = config.Routes.MapHttpRoute("DefaultApi", "api/{controller}");
        var routeData = new HttpRouteData(route, new HttpRouteValueDictionary { { "controller", "Customers" } });
        Controller.ControllerContext = new HttpControllerContext(config, routeData, request);
        Controller.Request = request;
        Controller.Request.Properties[HttpPropertyKeys.HttpConfigurationKey] = config;

        IHttpActionResult ActionResult = Controller.CreateCustomer();
        // Null occurs here
        var CreatedResult = ActionResult as CreatedAtRouteNegotiatedContentResult<Customer>;

CreateCustomer 添加方法:

         [Route("api/createcustomer")]
         [HttpPost]
         public IHttpActionResult CreateCustomer()
         {
             Customer NewCustomer = CustomerRepository.Add();

             return Created(Request.RequestUri + "/" + NewCustomer.ID.ToString(), new { customerID = NewCustomer.ID });
         }

动作结果数据:

-       Location    {http://localhost:38306/api/createcustomer/986574123}   System.Uri
        AbsolutePath    "/api/createcustomer/986574123" string
        AbsoluteUri "http://localhost:38306/api/createcustomer/986574123"   string
        Authority   "localhost:38306"   string
        DnsSafeHost "localhost" string
        Fragment    ""  string
        Host    "localhost" string
        HostNameType    Dns System.UriHostNameType
        IsAbsoluteUri   true    bool
        IsDefaultPort   false   bool
        IsFile  false   bool
        IsLoopback  true    bool
        IsUnc   false   bool
        LocalPath   "/api/createCustomer/986574123" string
        OriginalString  "http://localhost:38306/api/createcustomer/986574123"   string
        PathAndQuery    "/api/createCustomer/986574123" string
        Port    38306   int
        Query   ""  string
        Scheme  "http"  string
+       Segments    {string[4]} string[]
        UserEscaped false   bool
        UserInfo    ""  string
4

1 回答 1

0

使您的测试通过的最简单的更改是更改此行

return Created(Request.RequestUri + "/" + NewCustomer.ID.ToString(), new { customerID = NewCustomer.ID });

到以下

return Created(Request.RequestUri + "/" + NewCustomer.ID.ToString(), NewCustomer);

问题是您的 CreatedAtRouteNegotiatedContentResult 的类型参数不是您所期望的。您尝试将其强制result转换为 aCreatedAtRouteNegotiatedContentResult<Customer>而实际上它的类型是CreatedAtRouteNegotiatedContentResult<AnonymousType#1>,因此强制转换失败并返回null

原因是 ApiController 的Create(String, T)方法返回了一个 CreatedAtRouteNegotiatedContentResult ,它的类型参数Tcontent你传入的类型,而你传入的是一个匿名类型


您希望使用匿名类型仅返回模型中的某些字段,但您还希望在声明它的上下文之外(即在您的单元测试中)引用此类型。这是不可能的,请参阅上面关于匿名类型的链接 ( If you must store query results or pass them outside the method boundary, consider using an ordinary named struct or class instead of an anonymous type.)

因此,如果您只想返回某些字段,则需要为此创建一个特定的视图模型。

class CustomerDetails
{
     public int customerID { get; set; }
}

然后在您的操作方法中

return Created(Request.RequestUri + "/" + NewCustomer.ID.ToString(), new CustomerDetails { customerID = NewCustomer.ID });
于 2014-06-22T01:05:56.230 回答