1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
|
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
using System.Web.TestUtil;
using Microsoft.Web.UnitTestUtil;
using Xunit;
using Assert = Microsoft.TestCommon.AssertEx;
namespace System.Web.Mvc.Test
{
public class ModelBindingContextTest
{
[Fact]
public void CopyConstructor()
{
// Arrange
ModelBindingContext originalBindingContext = new ModelBindingContext()
{
FallbackToEmptyPrefix = true,
ModelMetadata = new EmptyModelMetadataProvider().GetMetadataForType(null, typeof(object)),
ModelName = "theName",
ModelState = new ModelStateDictionary(),
PropertyFilter = _ => false,
ValueProvider = new SimpleValueProvider()
};
// Act
ModelBindingContext newBindingContext = new ModelBindingContext(originalBindingContext);
// Assert
Assert.False(newBindingContext.FallbackToEmptyPrefix);
Assert.Null(newBindingContext.ModelMetadata);
Assert.Equal("", newBindingContext.ModelName);
Assert.Equal(originalBindingContext.ModelState, newBindingContext.ModelState);
Assert.True(newBindingContext.PropertyFilter("foo"));
Assert.Equal(originalBindingContext.ValueProvider, newBindingContext.ValueProvider);
}
[Fact]
public void ModelNameProperty()
{
// Arrange
ModelBindingContext bindingContext = new ModelBindingContext();
// Act & assert
MemberHelper.TestStringProperty(bindingContext, "ModelName", String.Empty);
}
[Fact]
public void ModelStateProperty()
{
// Arrange
ModelBindingContext bindingContext = new ModelBindingContext();
ModelStateDictionary modelState = new ModelStateDictionary();
// Act & assert
MemberHelper.TestPropertyWithDefaultInstance(bindingContext, "ModelState", modelState);
}
[Fact]
public void PropertyFilterPropertyDefaultInstanceReturnsTrueForAnyInput()
{
// Arrange
ModelBindingContext bindingContext = new ModelBindingContext();
// Act
Predicate<string> propertyFilter = bindingContext.PropertyFilter;
// Assert
// We can't test all inputs, but at least this gives us high confidence that we ignore the parameter by default
Assert.True(propertyFilter(null));
Assert.True(propertyFilter(String.Empty));
Assert.True(propertyFilter("Foo"));
}
[Fact]
public void PropertyFilterPropertyReturnsDefaultInstance()
{
// Arrange
ModelBindingContext bindingContext = new ModelBindingContext();
Predicate<string> propertyFilter = _ => true;
// Act & assert
MemberHelper.TestPropertyWithDefaultInstance(bindingContext, "PropertyFilter", propertyFilter);
}
[Fact]
public void ModelAndModelTypeAreFedFromModelMetadata()
{
// Act
ModelBindingContext bindingContext = new ModelBindingContext
{
ModelMetadata = ModelMetadataProviders.Current.GetMetadataForType(() => 42, typeof(int))
};
// Assert
Assert.Equal(42, bindingContext.Model);
Assert.Equal(typeof(int), bindingContext.ModelType);
}
[Fact]
public void ModelIsNotSettable()
{
// Arrange
ModelBindingContext bindingContext = new ModelBindingContext();
// Act & Assert
Assert.Throws<InvalidOperationException>(
() => bindingContext.Model = "foo",
"This property setter is obsolete, because its value is derived from ModelMetadata.Model now.");
}
[Fact]
public void ModelTypeIsNotSettable()
{
// Arrange
ModelBindingContext bindingContext = new ModelBindingContext();
// Act & Assert
Assert.Throws<InvalidOperationException>(
() => bindingContext.ModelType = typeof(string),
"This property setter is obsolete, because its value is derived from ModelMetadata.Model now.");
}
}
}
|