我有以下WebApi控制器
[Route("api/[controller]")]
public class FunctionController : ControllerBase
{
private readonly ILogger<FunctionController> _logger;
private readonly IServiceAccessor<IFunctionManagementService> _functionManagementService;
public FunctionController(
IServiceAccessor<IFunctionManagementService> FunctionManagementService,
ILogger<FunctionController> logger)
{
_functionManagementService = FunctionManagementService;
_logger = logger;
}
[HttpPost]
[SwaggerOperation(nameof(RegisterFunction))]
[SwaggerResponse(StatusCodes.Status200OK, "OK", typeof(FunctionRegisteredResponseDto))]
[SwaggerResponse(StatusCodes.Status400BadRequest, "Bad Request")]
public async Task<IActionResult> RegisterFunction(RegisterFunctionDto rsd)
{
var registeredResponse = await _functionManagementService.Service.RegisterFunctionAsync(rsd);
if (registeredResponse.Id > -1)
return Ok(registeredResponse);
return BadRequest(registeredResponse);
}
[HttpDelete("{id}")]
[SwaggerOperation(nameof(UnregisterFunction))]
[SwaggerResponse(StatusCodes.Status200OK, "OK")]
[SwaggerResponse(StatusCodes.Status404NotFound, "Not Found")]
[SwaggerResponse(StatusCodes.Status400BadRequest, "Bad Request")]
public async Task<IActionResult> UnregisterFunction(string sid)
{
if (!long.TryParse(sid, out long id))
return new BadRequestObjectResult(new { message = "400 Bad Request", UnknownId = sid });
if (!await _functionManagementService.Service.UnregisterFunctionAsync(id))
return new NotFoundObjectResult(new { message = "404 Not Found", UnknownId = sid });
return new OkObjectResult(new { Message = "200 OK", Id = id, Unregistered = true });
}
}
我正在尝试使用MSTest测试对此服务的请求。首先,我只想向服务发送请求,我尝试通过
来执行此操作(使用this example)[TestMethod]
public async Task BuildObjectFromValidResponse()
{
RegisterFunctionDto rsd = Utils.GetRegisterFunctionDtoObject();
string serializedDto = JsonConvert.SerializeObject(rsd);
var inputMessage = new HttpRequestMessage()
{
Content = new StringContent(serializedDto, Encoding.UTF8, "application/json")
};
inputMessage.Headers.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
HttpResponseMessage response = await client.PostAsync("api/Function", inputMessage.Content);
// Also tried this.
//HttpResponseMessage response = await client.PostAsJsonAsync("api/Function", JsonConvert.SerializeObject(rsd));
}
public class RegisterFunctionDto
{
public string Name { get; set; }
public decimal Movement { get; set; }
public int Quantity { get; set; }
}
public static class Utils
{
private static Random random = new Random();
public static string GetName(int length = 5)
{
StringBuilder resultStringBuilder = new StringBuilder();
string dictionaryString = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
for (int i = 0; i < length; i++)
resultStringBuilder.Append(dictionaryString[random.Next(dictionaryString.Length)]);
return resultStringBuilder.ToString();
}
public static RegisterFunctionDto GetRegisterFunctionDtoObject()
{
return new RegisterFunctionDto()
{
Name = GetName(),
Instruction = random.Next() % 2 == 0 ? BuySell.Buy : BuySell.Sell,
PriceMovement = Convert.ToDecimal(random.NextDouble()),
Quantity = 100
};
}
}
但是当我将其发布到服务时,接收到的对象是默认对象,这是具有所有默认值的对象。因此,在RegisterFunction
中,我收到
rsd { Name = "", Movement = 0.0, Quantity = 0 }
问。如何使用Newtonsoft.Json正确序列化对象并将其发布给我服务?
答案 0 :(得分:3)
如果使用HttpRequestMessage
,则无需创建HttpClient.PostAsync
。只需构造内容并发送。
RegisterFunctionDto rsd = Utils.GetRegisterFunctionDtoObject();
string serializedDto = JsonConvert.SerializeObject(rsd);
var content = new StringContent(serializedDto, Encoding.UTF8, "application/json");
HttpResponseMessage response = await client.PostAsync("api/Function", content);
您还可以明确告诉操作绑定到请求正文中的数据
//...
public async Task<IActionResult> RegisterFunction([FromBody]RegisterFunctionDto rsd) {
//...
}