File: RangeAttributeAdapterTest.cs
Web Access
Project: src\src\Mvc\Mvc.DataAnnotations\test\Microsoft.AspNetCore.Mvc.DataAnnotations.Test.csproj (Microsoft.AspNetCore.Mvc.DataAnnotations.Test)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System.ComponentModel.DataAnnotations;
using Microsoft.AspNetCore.Mvc.DataAnnotations;
using Microsoft.AspNetCore.InternalTesting;
using Microsoft.Extensions.Localization;
using Moq;
 
namespace Microsoft.AspNetCore.Mvc.ModelBinding.Validation;
 
public class RangeAttributeAdapterTest
{
    [Fact]
    [ReplaceCulture]
    public void AddValidation_WithoutLocalization()
    {
        // Arrange
        var provider = TestModelMetadataProvider.CreateDefaultProvider();
        var metadata = provider.GetMetadataForProperty(typeof(string), "Length");
 
        var attribute = new RangeAttribute(typeof(decimal), "0", "100");
        attribute.ErrorMessage = "The field Length must be between {1} and {2}.";
 
        var expectedMessage = "The field Length must be between 0 and 100.";
 
        var adapter = new RangeAttributeAdapter(attribute, stringLocalizer: null);
 
        var actionContext = new ActionContext();
        var context = new ClientModelValidationContext(actionContext, metadata, provider, new Dictionary<string, string>());
 
        // Act
        adapter.AddValidation(context);
 
        // Assert
        Assert.Collection(
            context.Attributes,
            kvp => { Assert.Equal("data-val", kvp.Key); Assert.Equal("true", kvp.Value); },
            kvp => { Assert.Equal("data-val-range", kvp.Key); Assert.Equal(expectedMessage, kvp.Value); },
            kvp => { Assert.Equal("data-val-range-max", kvp.Key); Assert.Equal("100", kvp.Value); },
            kvp => { Assert.Equal("data-val-range-min", kvp.Key); Assert.Equal("0", kvp.Value); });
    }
 
    [Fact]
    [ReplaceCulture]
    public void AddValidation_WithLocalization()
    {
        // Arrange
        var provider = TestModelMetadataProvider.CreateDefaultProvider();
        var metadata = provider.GetMetadataForProperty(typeof(string), "Length");
 
        var attribute = new RangeAttribute(typeof(decimal), "0", "100");
        attribute.ErrorMessage = "The field Length must be between {1} and {2}.";
 
        var expectedProperties = new object[] { "Length", 0m, 100m };
        var expectedMessage = "The field Length must be between 0 and 100.";
 
        var stringLocalizer = new Mock<IStringLocalizer>();
        stringLocalizer
            .Setup(s => s[attribute.ErrorMessage, expectedProperties])
            .Returns(new LocalizedString(attribute.ErrorMessage, expectedMessage));
 
        var adapter = new RangeAttributeAdapter(attribute, stringLocalizer: stringLocalizer.Object);
 
        var actionContext = new ActionContext();
        var context = new ClientModelValidationContext(actionContext, metadata, provider, new Dictionary<string, string>());
 
        // Act
        adapter.AddValidation(context);
 
        // Assert
        Assert.Collection(
            context.Attributes,
            kvp => { Assert.Equal("data-val", kvp.Key); Assert.Equal("true", kvp.Value); },
            kvp => { Assert.Equal("data-val-range", kvp.Key); Assert.Equal(expectedMessage, kvp.Value); },
            kvp => { Assert.Equal("data-val-range-max", kvp.Key); Assert.Equal("100", kvp.Value); },
            kvp => { Assert.Equal("data-val-range-min", kvp.Key); Assert.Equal("0", kvp.Value); });
    }
 
    [Fact]
    [ReplaceCulture]
    public void AddValidation_DoesNotTrounceExistingAttributes()
    {
        // Arrange
        var provider = TestModelMetadataProvider.CreateDefaultProvider();
        var metadata = provider.GetMetadataForProperty(typeof(string), "Length");
 
        var attribute = new RangeAttribute(typeof(decimal), "0", "100");
        attribute.ErrorMessage = "The field Length must be between {1} and {2}.";
 
        var adapter = new RangeAttributeAdapter(attribute, stringLocalizer: null);
 
        var actionContext = new ActionContext();
        var context = new ClientModelValidationContext(actionContext, metadata, provider, new Dictionary<string, string>());
 
        context.Attributes.Add("data-val", "original");
        context.Attributes.Add("data-val-range", "original");
        context.Attributes.Add("data-val-range-max", "original");
        context.Attributes.Add("data-val-range-min", "original");
 
        // Act
        adapter.AddValidation(context);
 
        // Assert
        Assert.Collection(
            context.Attributes,
            kvp => { Assert.Equal("data-val", kvp.Key); Assert.Equal("original", kvp.Value); },
            kvp => { Assert.Equal("data-val-range", kvp.Key); Assert.Equal("original", kvp.Value); },
            kvp => { Assert.Equal("data-val-range-max", kvp.Key); Assert.Equal("original", kvp.Value); },
            kvp => { Assert.Equal("data-val-range-min", kvp.Key); Assert.Equal("original", kvp.Value); });
    }
}