107 lines
3.6 KiB
C#
107 lines
3.6 KiB
C#
|
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
|
|||
|
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Web.Http.Metadata.Providers;
|
|||
|
using System.Web.Http.Util;
|
|||
|
using Xunit;
|
|||
|
|
|||
|
namespace System.Web.Http.ModelBinding.Binders
|
|||
|
{
|
|||
|
public class KeyValuePairModelBinderProviderTest
|
|||
|
{
|
|||
|
[Fact]
|
|||
|
public void GetBinder_CorrectModelTypeAndValueProviderEntries_ReturnsBinder()
|
|||
|
{
|
|||
|
// Arrange
|
|||
|
ModelBindingContext bindingContext = new ModelBindingContext
|
|||
|
{
|
|||
|
ModelMetadata = new EmptyModelMetadataProvider().GetMetadataForType(null, typeof(KeyValuePair<int, string>)),
|
|||
|
ModelName = "foo",
|
|||
|
ValueProvider = new SimpleHttpValueProvider
|
|||
|
{
|
|||
|
{ "foo.key", 42 },
|
|||
|
{ "foo.value", "someValue" }
|
|||
|
}
|
|||
|
};
|
|||
|
|
|||
|
KeyValuePairModelBinderProvider binderProvider = new KeyValuePairModelBinderProvider();
|
|||
|
|
|||
|
// Act
|
|||
|
IModelBinder binder = binderProvider.GetBinder(null, bindingContext);
|
|||
|
|
|||
|
// Assert
|
|||
|
Assert.IsType<KeyValuePairModelBinder<int, string>>(binder);
|
|||
|
}
|
|||
|
|
|||
|
[Fact]
|
|||
|
public void GetBinder_ModelTypeIsIncorrect_ReturnsNull()
|
|||
|
{
|
|||
|
// Arrange
|
|||
|
ModelBindingContext bindingContext = new ModelBindingContext
|
|||
|
{
|
|||
|
ModelMetadata = new EmptyModelMetadataProvider().GetMetadataForType(null, typeof(List<int>)),
|
|||
|
ModelName = "foo",
|
|||
|
ValueProvider = new SimpleHttpValueProvider
|
|||
|
{
|
|||
|
{ "foo.key", 42 },
|
|||
|
{ "foo.value", "someValue" }
|
|||
|
}
|
|||
|
};
|
|||
|
|
|||
|
KeyValuePairModelBinderProvider binderProvider = new KeyValuePairModelBinderProvider();
|
|||
|
|
|||
|
// Act
|
|||
|
IModelBinder binder = binderProvider.GetBinder(null, bindingContext);
|
|||
|
|
|||
|
// Assert
|
|||
|
Assert.Null(binder);
|
|||
|
}
|
|||
|
|
|||
|
[Fact]
|
|||
|
public void GetBinder_ValueProviderDoesNotContainKeyProperty_ReturnsNull()
|
|||
|
{
|
|||
|
// Arrange
|
|||
|
ModelBindingContext bindingContext = new ModelBindingContext
|
|||
|
{
|
|||
|
ModelMetadata = new EmptyModelMetadataProvider().GetMetadataForType(null, typeof(KeyValuePair<int, string>)),
|
|||
|
ModelName = "foo",
|
|||
|
ValueProvider = new SimpleHttpValueProvider
|
|||
|
{
|
|||
|
{ "foo.value", "someValue" }
|
|||
|
}
|
|||
|
};
|
|||
|
|
|||
|
KeyValuePairModelBinderProvider binderProvider = new KeyValuePairModelBinderProvider();
|
|||
|
|
|||
|
// Act
|
|||
|
IModelBinder binder = binderProvider.GetBinder(null, bindingContext);
|
|||
|
|
|||
|
// Assert
|
|||
|
Assert.Null(binder);
|
|||
|
}
|
|||
|
|
|||
|
[Fact]
|
|||
|
public void GetBinder_ValueProviderDoesNotContainValueProperty_ReturnsNull()
|
|||
|
{
|
|||
|
// Arrange
|
|||
|
ModelBindingContext bindingContext = new ModelBindingContext
|
|||
|
{
|
|||
|
ModelMetadata = new EmptyModelMetadataProvider().GetMetadataForType(null, typeof(KeyValuePair<int, string>)),
|
|||
|
ModelName = "foo",
|
|||
|
ValueProvider = new SimpleHttpValueProvider
|
|||
|
{
|
|||
|
{ "foo.key", 42 }
|
|||
|
}
|
|||
|
};
|
|||
|
|
|||
|
KeyValuePairModelBinderProvider binderProvider = new KeyValuePairModelBinderProvider();
|
|||
|
|
|||
|
// Act
|
|||
|
IModelBinder binder = binderProvider.GetBinder(null, bindingContext);
|
|||
|
|
|||
|
// Assert
|
|||
|
Assert.Null(binder);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|