【发布时间】:2014-06-22 00:29:14
【问题描述】:
我正在为 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
【问题讨论】:
-
既然我们知道
CreatedResult的类型不是CreatedAtRouteNegotiatedContentResult<Customer>,那么它的类型是是什么? -
类型为匿名
-
如何修复代码,同时确保返回的 JSON 与以下 { customerID = NewCustomer.ID } 相同?
标签: c# unit-testing moq asp.net-web-api2 actionmethod