/
githubmirror
/
aspnetcore
Обзор
Документация
Войти
/
githubmirror
/
aspnetcore
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Http/Routing/test/FunctionalTests/HostMatchingTests.cs
115 строк
4 KB
Shreyas Jejurkar
chore : Remove unwanted `using` statement (#39176)
02 янв 2022, 17:39
Не верифицирован
02 янв 2022, 17:39
c85baf8
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Net; using System.Net.Http; using RoutingWebSite; namespace Microsoft.AspNetCore.Routing.FunctionalTests; public class HostMatchingTests : IClassFixture<RoutingTestFixture<UseEndpointRoutingStartup>> { private readonly RoutingTestFixture<UseEndpointRoutingStartup> _fixture; public HostMatchingTests(RoutingTestFixture<UseEndpointRoutingStartup> fixture) { _fixture = fixture; } private HttpClient CreateClient(string baseAddress) { var client = _fixture.CreateClient(baseAddress); return client; } [Theory] [InlineData("http://localhost")] [InlineData("http://localhost:5001")] public async Task Get_CatchAll(string baseAddress) { // Arrange var request = new HttpRequestMessage(HttpMethod.Get, "api/DomainWildcard"); // Act var client = CreateClient(baseAddress); var response = await client.SendAsync(request); var responseContent = await response.Content.ReadAsStringAsync(); // Assert Assert.Equal(HttpStatusCode.OK, response.StatusCode); Assert.Equal("*:*", responseContent); } [Theory] [InlineData("http://9000.0.0.1")] [InlineData("http://9000.0.0.1:8888")] public async Task Get_MatchWildcardDomain(string baseAddress) { // Arrange var request = new HttpRequestMessage(HttpMethod.Get, "api/DomainWildcard"); // Act var client = CreateClient(baseAddress); var response = await client.SendAsync(request); var responseContent = await response.Content.ReadAsStringAsync(); // Assert Assert.Equal(HttpStatusCode.OK, response.StatusCode); Assert.Equal("*.0.0.1:*", responseContent); } [Theory] [InlineData("http://127.0.0.1")] [InlineData("http://127.0.0.1:8888")] public async Task Get_MatchDomain(string baseAddress) { // Arrange var request = new HttpRequestMessage(HttpMethod.Get, "api/DomainWildcard"); // Act var client = CreateClient(baseAddress); var response = await client.SendAsync(request); var responseContent = await response.Content.ReadAsStringAsync(); // Assert Assert.Equal(HttpStatusCode.OK, response.StatusCode); Assert.Equal("127.0.0.1:*", responseContent); } [Theory] [InlineData("http://9000.0.0.1:5000")] [InlineData("http://9000.0.0.1:5001")] public async Task Get_MatchWildcardDomainAndPort(string baseAddress) { // Arrange var request = new HttpRequestMessage(HttpMethod.Get, "api/DomainWildcard"); // Act var client = CreateClient(baseAddress); var response = await client.SendAsync(request); var responseContent = await response.Content.ReadAsStringAsync(); // Assert Assert.Equal(HttpStatusCode.OK, response.StatusCode); Assert.Equal("*.0.0.1:5000,*.0.0.1:5001", responseContent); } [Theory] [InlineData("http://www.contoso.com")] [InlineData("http://contoso.com")] public async Task Get_MatchWildcardDomainAndSubdomain(string baseAddress) { // Arrange var request = new HttpRequestMessage(HttpMethod.Get, "api/DomainWildcard"); // Act var client = CreateClient(baseAddress); var response = await client.SendAsync(request); var responseContent = await response.Content.ReadAsStringAsync(); // Assert Assert.Equal(HttpStatusCode.OK, response.StatusCode); Assert.Equal("contoso.com:*,*.contoso.com:*", responseContent); } }