Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TestMatcher.cs « TestObjects « UnitTests « test « Routing « Http « src - github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8c234537a3b7f9842b0ef585dff6961d88a9239a (plain)
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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

using System.Threading.Tasks;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Http.Features;
using Microsoft.AspNetCore.Routing.Matching;

namespace Microsoft.AspNetCore.Routing.TestObjects;

internal class TestMatcher : Matcher
{
    private readonly bool _isHandled;

    public TestMatcher(bool isHandled)
    {
        _isHandled = isHandled;
    }

    public override Task MatchAsync(HttpContext httpContext)
    {
        if (_isHandled)
        {
            httpContext.Request.RouteValues = new RouteValueDictionary(new { controller = "Home", action = "Index" });
            httpContext.SetEndpoint(new Endpoint(TestConstants.EmptyRequestDelegate, EndpointMetadataCollection.Empty, "Test endpoint"));
        }

        return Task.CompletedTask;
    }
}