29
29
30
30
namespace Microsoft . AspNetCore . Server . Kestrel . FunctionalTests
31
31
{
32
- [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/33204" ) ]
33
32
public class AddressRegistrationTests : TestApplicationErrorLoggerLoggedTest
34
33
{
35
34
private const int MaxRetries = 10 ;
@@ -104,7 +103,6 @@ public async Task RegisterIPEndPoint_IPv6StaticPort_Success()
104
103
[ ConditionalTheory ]
105
104
[ MemberData ( nameof ( IPEndPointRegistrationDataDynamicPort ) ) ]
106
105
[ IPv6SupportedCondition ]
107
- [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/26626" ) ]
108
106
public async Task RegisterIPEndPoint_DynamicPort_Success ( IPEndPoint endPoint , string testUrl )
109
107
{
110
108
await RegisterIPEndPoint_Success ( endPoint , testUrl ) ;
@@ -113,7 +111,6 @@ public async Task RegisterIPEndPoint_DynamicPort_Success(IPEndPoint endPoint, st
113
111
[ ConditionalTheory ]
114
112
[ MemberData ( nameof ( IPEndPointRegistrationDataPort443 ) ) ]
115
113
[ IPv6SupportedCondition ]
116
- [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/27401" ) ]
117
114
public async Task RegisterIPEndPoint_Port443_Success ( IPEndPoint endpoint , string testUrl )
118
115
{
119
116
if ( ! CanBindToEndpoint ( endpoint . Address , 443 ) )
@@ -127,7 +124,6 @@ public async Task RegisterIPEndPoint_Port443_Success(IPEndPoint endpoint, string
127
124
[ ConditionalTheory ]
128
125
[ MemberData ( nameof ( AddressRegistrationDataIPv6 ) ) ]
129
126
[ IPv6SupportedCondition ]
130
- [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/25403" ) ]
131
127
public async Task RegisterAddresses_IPv6_Success ( string addressInput , string [ ] testUrls )
132
128
{
133
129
await RegisterAddresses_Success ( addressInput , testUrls ) ;
@@ -136,7 +132,6 @@ public async Task RegisterAddresses_IPv6_Success(string addressInput, string[] t
136
132
[ ConditionalTheory ]
137
133
[ MemberData ( nameof ( AddressRegistrationDataIPv6Port5000And5001Default ) ) ]
138
134
[ IPv6SupportedCondition ]
139
- [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/27401" ) ]
140
135
public async Task RegisterAddresses_IPv6Port5000And5001Default_Success ( string addressInput , string [ ] testUrls )
141
136
{
142
137
if ( ( ! CanBindToEndpoint ( IPAddress . Loopback , 5000 ) || ! CanBindToEndpoint ( IPAddress . IPv6Loopback , 5000 ) ) &&
@@ -151,7 +146,6 @@ public async Task RegisterAddresses_IPv6Port5000And5001Default_Success(string ad
151
146
[ ConditionalTheory ]
152
147
[ MemberData ( nameof ( AddressRegistrationDataIPv6Port80 ) ) ]
153
148
[ IPv6SupportedCondition ]
154
- [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/27401" ) ]
155
149
public async Task RegisterAddresses_IPv6Port80_Success ( string addressInput , string [ ] testUrls )
156
150
{
157
151
if ( ! CanBindToEndpoint ( IPAddress . Loopback , 80 ) || ! CanBindToEndpoint ( IPAddress . IPv6Loopback , 80 ) )
@@ -163,7 +157,6 @@ public async Task RegisterAddresses_IPv6Port80_Success(string addressInput, stri
163
157
}
164
158
165
159
[ ConditionalTheory ]
166
- [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/27401" ) ]
167
160
[ MemberData ( nameof ( AddressRegistrationDataIPv6ScopeId ) ) ]
168
161
[ IPv6SupportedCondition ]
169
162
[ IPv6ScopeIdPresentCondition ]
@@ -743,7 +736,6 @@ public async Task DoesNotOverrideDirectConfigurationWithIServerAddressesFeature_
743
736
}
744
737
745
738
[ Fact ]
746
- [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/33185" ) ]
747
739
public void ThrowsWhenBindingLocalhostToIPv4AddressInUse ( )
748
740
{
749
741
ThrowsWhenBindingLocalhostToAddressInUse ( AddressFamily . InterNetwork ) ;
0 commit comments