Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

79 lines
2.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 DictionaryModelBinderProviderTest
{
[Fact]
public void GetBinder_CorrectModelTypeAndValueProviderEntries_ReturnsBinder()
{
// Arrange
ModelBindingContext bindingContext = new ModelBindingContext
{
ModelMetadata = new EmptyModelMetadataProvider().GetMetadataForType(null, typeof(IDictionary<int, string>)),
ModelName = "foo",
ValueProvider = new SimpleHttpValueProvider
{
{ "foo[0]", "42" },
}
};
DictionaryModelBinderProvider binderProvider = new DictionaryModelBinderProvider();
// Act
IModelBinder binder = binderProvider.GetBinder(null, bindingContext);
// Assert
Assert.IsType<DictionaryModelBinder<int, string>>(binder);
}
[Fact]
public void GetBinder_ModelTypeIsIncorrect_ReturnsNull()
{
// Arrange
ModelBindingContext bindingContext = new ModelBindingContext
{
ModelMetadata = new EmptyModelMetadataProvider().GetMetadataForType(null, typeof(int)),
ModelName = "foo",
ValueProvider = new SimpleHttpValueProvider
{
{ "foo[0]", "42" },
}
};
DictionaryModelBinderProvider binderProvider = new DictionaryModelBinderProvider();
// Act
IModelBinder binder = binderProvider.GetBinder(null, bindingContext);
// Assert
Assert.Null(binder);
}
[Fact]
public void GetBinder_ValueProviderDoesNotContainPrefix_ReturnsNull()
{
// Arrange
ModelBindingContext bindingContext = new ModelBindingContext
{
ModelMetadata = new EmptyModelMetadataProvider().GetMetadataForType(null, typeof(IDictionary<int, string>)),
ModelName = "foo",
ValueProvider = new SimpleHttpValueProvider()
};
DictionaryModelBinderProvider binderProvider = new DictionaryModelBinderProvider();
// Act
IModelBinder binder = binderProvider.GetBinder(null, bindingContext);
// Assert
Assert.Null(binder);
}
}
}