@@ -133,6 +133,7 @@ public async Task Endpoint_PassesThrough()
133
133
[ InlineData ( "" , @"./SubFolder" , "" , false ) ]
134
134
[ InlineData ( "" , @"./SubFolder" , "/你好" , false ) ]
135
135
[ InlineData ( "" , @"./SubFolder" , "/你好/世界" , false ) ]
136
+ [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/40642" ) ]
136
137
public async Task FoundDirectoryWithDefaultFile_PathModified_All ( string baseUrl , string baseDir , string requestUrl , bool appendTrailingSlash = true )
137
138
{
138
139
await FoundDirectoryWithDefaultFile_PathModified ( baseUrl , baseDir , requestUrl , appendTrailingSlash ) ;
@@ -153,6 +154,7 @@ public async Task FoundDirectoryWithDefaultFile_PathModified_All(string baseUrl,
153
154
[ InlineData ( "" , @".\subFolder" , "" , false ) ]
154
155
[ InlineData ( "" , @".\SubFolder" , "/你好" , false ) ]
155
156
[ InlineData ( "" , @".\SubFolder" , "/你好/世界" , false ) ]
157
+ [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/40642" ) ]
156
158
public async Task FoundDirectoryWithDefaultFile_PathModified_Windows ( string baseUrl , string baseDir , string requestUrl , bool appendTrailingSlash = true )
157
159
{
158
160
await FoundDirectoryWithDefaultFile_PathModified ( baseUrl , baseDir , requestUrl , appendTrailingSlash ) ;
@@ -188,6 +190,7 @@ private async Task FoundDirectoryWithDefaultFile_PathModified(string baseUrl, st
188
190
[ InlineData ( "" , @"./" , "/SubFolder" , "?a=b" ) ]
189
191
[ InlineData ( "" , @"./SubFolder" , "/你好" , "?a=b" ) ]
190
192
[ InlineData ( "" , @"./SubFolder" , "/你好/世界" , "?a=b" ) ]
193
+ [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/40642" ) ]
191
194
public async Task NearMatch_RedirectAddSlash_All ( string baseUrl , string baseDir , string requestUrl , string queryString )
192
195
{
193
196
await NearMatch_RedirectAddSlash ( baseUrl , baseDir , requestUrl , queryString ) ;
@@ -200,6 +203,7 @@ public async Task NearMatch_RedirectAddSlash_All(string baseUrl, string baseDir,
200
203
[ InlineData ( "" , @".\" , "/SubFolder" , "?a=b" ) ]
201
204
[ InlineData ( "" , @".\SubFolder" , "/你好" , "?a=b" ) ]
202
205
[ InlineData ( "" , @".\SubFolder" , "/你好/世界" , "?a=b" ) ]
206
+ [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/40642" ) ]
203
207
public async Task NearMatch_RedirectAddSlash_Windows ( string baseUrl , string baseDir , string requestUrl , string queryString )
204
208
{
205
209
await NearMatch_RedirectAddSlash ( baseUrl , baseDir , requestUrl , queryString ) ;
0 commit comments