[Fixes #3043] Overflow exceptions converted to invalid value messages

This commit is contained in:
Ajay Bhargav Baaskaran 2015-09-27 15:55:18 -07:00
parent f162f70c1e
commit eefa58e617
3 changed files with 92 additions and 2 deletions

View File

@ -209,9 +209,9 @@ namespace Microsoft.AspNet.Mvc.ModelBinding
return false;
}
if (exception is FormatException)
if (exception is FormatException || exception is OverflowException)
{
// Convert FormatExceptions to Invalid value messages.
// Convert FormatExceptions and OverflowExceptions to Invalid value messages.
ModelState modelState;
TryGetValue(key, out modelState);

View File

@ -992,6 +992,94 @@ namespace Microsoft.AspNet.Mvc.IntegrationTests
Assert.True(modelState.IsValid);
}
private class User
{
public int Id { get; set; }
public uint Zip { get; set; }
}
[Fact]
public async Task Validation_FormatException_ShowsInvalidValueMessage_OnSimpleTypeProperty()
{
// Arrange
var argumentBinder = ModelBindingTestHelper.GetArgumentBinder();
var parameter = new ParameterDescriptor()
{
Name = "parameter",
ParameterType = typeof(User)
};
var operationContext = ModelBindingTestHelper.GetOperationBindingContext(request =>
{
request.QueryString = new QueryString("?Id=bill");
});
var modelState = new ModelStateDictionary();
// Act
var modelBindingResult = await argumentBinder.BindModelAsync(parameter, modelState, operationContext);
// Assert
Assert.True(modelBindingResult.IsModelSet);
var model = Assert.IsType<User>(modelBindingResult.Model);
Assert.Equal(0, model.Id);
Assert.Equal(1, modelState.ErrorCount);
Assert.False(modelState.IsValid);
var state = Assert.Single(modelState);
Assert.Equal("Id", state.Key);
var entry = state.Value;
Assert.Equal("bill", entry.AttemptedValue);
Assert.Equal("bill", entry.RawValue);
Assert.Single(entry.Errors);
var error = entry.Errors[0];
Assert.Equal("The value 'bill' is not valid for Id.", error.ErrorMessage);
}
[Fact]
public async Task Validation_OverflowException_ShowsInvalidValueMessage_OnSimpleTypeProperty()
{
// Arrange
var argumentBinder = ModelBindingTestHelper.GetArgumentBinder();
var parameter = new ParameterDescriptor()
{
Name = "parameter",
ParameterType = typeof(User)
};
var operationContext = ModelBindingTestHelper.GetOperationBindingContext(request =>
{
request.QueryString = new QueryString("?Zip=-123");
});
var modelState = new ModelStateDictionary();
// Act
var modelBindingResult = await argumentBinder.BindModelAsync(parameter, modelState, operationContext);
// Assert
Assert.True(modelBindingResult.IsModelSet);
var model = Assert.IsType<User>(modelBindingResult.Model);
Assert.Equal<uint>(0, model.Zip);
Assert.Equal(1, modelState.ErrorCount);
Assert.False(modelState.IsValid);
var state = Assert.Single(modelState);
Assert.Equal("Zip", state.Key);
var entry = state.Value;
Assert.Equal("-123", entry.AttemptedValue);
Assert.Equal("-123", entry.RawValue);
Assert.Single(entry.Errors);
var error = entry.Errors[0];
Assert.Equal("The value '-123' is not valid for Zip.", error.ErrorMessage);
}
private class Order11
{
public IEnumerable<Address> ShippingAddresses { get; set; }

View File

@ -115,6 +115,7 @@ namespace Microsoft.AspNet.Mvc.Rendering
"<li>HtmlEncode[[This is an error for Property3.]]</li>" + Environment.NewLine +
"<li>HtmlEncode[[This is an error for Property2.]]</li>" + Environment.NewLine +
"<li>HtmlEncode[[This is another error for Property2.]]</li>" + Environment.NewLine +
"<li>HtmlEncode[[The value '' is not valid for Property2.]]</li>" + Environment.NewLine +
"<li>HtmlEncode[[This is an error for the model root.]]</li>" + Environment.NewLine +
"<li>HtmlEncode[[This is another error for the model root.]]</li>" + Environment.NewLine +
"</ul></div>";
@ -346,6 +347,7 @@ namespace Microsoft.AspNet.Mvc.Rendering
modelState.AddModelError("Property2", "This is an error for Property2.");
modelState.AddModelError("Property2", "This is another error for Property2.");
modelState.AddModelError("Property2", new OverflowException("Produces invalid value message"));
modelState.AddModelError(string.Empty, "This is an error for the model root.");
modelState.AddModelError(string.Empty, "This is another error for the model root.");