File: Constraints\CompositeRouteConstraintTests.cs
Web Access
Project: src\src\Http\Routing\test\UnitTests\Microsoft.AspNetCore.Routing.Tests.csproj (Microsoft.AspNetCore.Routing.Tests)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System.Linq.Expressions;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Routing.Constraints;
using Moq;
 
namespace Microsoft.AspNetCore.Routing.Tests;
 
public class CompositeRouteConstraintTests
{
    [Theory]
    [InlineData(true, true, true)]
    [InlineData(true, false, false)]
    [InlineData(false, true, false)]
    [InlineData(false, false, false)]
    public void CompositeRouteConstraint_Match_CallsMatchOnInnerConstraints(
        bool inner1Result,
        bool inner2Result,
        bool expected)
    {
        // Arrange
        var inner1 = MockConstraintWithResult(inner1Result);
        var inner2 = MockConstraintWithResult(inner2Result);
 
        // Act
        var constraint = new CompositeRouteConstraint(new[] { inner1.Object, inner2.Object });
        var actual = ConstraintsTestHelper.TestConstraint(constraint, null);
 
        // Assert
        Assert.Equal(expected, actual);
    }
 
    static readonly Expression<Func<IRouteConstraint, bool>> ConstraintMatchMethodExpression =
        c => c.Match(
            It.IsAny<HttpContext>(),
            It.IsAny<IRouter>(),
            It.IsAny<string>(),
            It.IsAny<RouteValueDictionary>(),
            It.IsAny<RouteDirection>());
 
    private static Mock<IRouteConstraint> MockConstraintWithResult(bool result)
    {
        var mock = new Mock<IRouteConstraint>();
        mock.Setup(ConstraintMatchMethodExpression)
            .Returns(result)
            .Verifiable();
        return mock;
    }
}